Skip to content

Commit c5409de

Browse files
committed
refactor: rename application from Qino to Saga Reader
Update application name and references in configuration files, UI components, and translations to reflect the new branding. Changes include: - Updated main binary name in tauri config - Modified package description in Cargo.toml - Replaced Qino references with Copilot in UI and translations
1 parent 2af87aa commit c5409de

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "qino-feed-client"
33
version = "0.9.9"
4-
description = "Qino Feed"
4+
description = "Saga Reader"
55
authors = ["Sopaco"]
66
edition = "2021"
77

app/src-tauri/tauri.conf.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
}
5454
}
5555
},
56+
"mainBinaryName": "SagaReader",
5657
"plugins": {
5758
"tauri-plugin-feed-api": {
5859
"timeout": 30

app/src/lib/i18n/locales/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@
9797
"aisprite": {
9898
"label": "AI Companion Reading",
9999
"chat_me": "Me",
100-
"tip_wait_llm_response": "Please wait for Qino to finish thinking.",
100+
"tip_wait_llm_response": "Please wait for Copilot to finish thinking.",
101101
"tip_no_input": "Please enter the content",
102102
"tip_error_llm_error": "An exception occurred",
103-
"tip_placeholder_please_input": "Learn about something from Qino"
103+
"tip_placeholder_please_input": "Learn about something from Copilot"
104104
},
105105
"settings": {
106106
"label": "Settings",

app/src/lib/i18n/locales/zh.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@
9797
"aisprite": {
9898
"label": "麒睿AI伴读",
9999
"chat_me": "",
100-
"tip_wait_llm_response": "请等候Qino完成思考",
100+
"tip_wait_llm_response": "请等候Copilot完成思考",
101101
"tip_no_input": "请输入内容",
102102
"tip_error_llm_error": "大模型服务调用异常",
103-
"tip_placeholder_please_input": "向Qino了解..."
103+
"tip_placeholder_please_input": "向Copilot了解..."
104104
},
105105
"settings": {
106106
"label": "应用设置",

app/src/routes/main/widgets/AISpritePanel.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
class="card pt-4 pl-4 pr-4 pb-2 preset-tonal rounded-tl-none rounded-bl-none space-y-2"
9292
>
9393
<header class="flex justify-between items-center">
94-
<p class="font-bold">Qino</p>
94+
<p class="font-bold">Copilot</p>
9595
<small class="opacity-50">{toDateText(bubble.created_at).toLocaleString()}</small>
9696
</header>
9797
<Markdown value={bubble.payload} />

0 commit comments

Comments
 (0)