diff --git a/bin/README.md b/bin/README.md index 9ef5a7b..e69c5aa 100644 --- a/bin/README.md +++ b/bin/README.md @@ -284,8 +284,8 @@ The `DEFAULT_DEV_PAKE_OPTIONS` configuration in `bin/defaults.ts` can be modifie ```typescript export const DEFAULT_DEV_PAKE_OPTIONS: PakeCliOptions & { url: string } = { ...DEFAULT_PAKE_OPTIONS, - url: "https://weread.qq.com", - name: "Weread", + url: "https://weekly.tw93.fun/", + name: "Weekly", }; ``` diff --git a/bin/README_CN.md b/bin/README_CN.md index cca2b9d..80a502e 100644 --- a/bin/README_CN.md +++ b/bin/README_CN.md @@ -286,8 +286,8 @@ pake [url] [options] ```typescript export const DEFAULT_DEV_PAKE_OPTIONS: PakeCliOptions & { url: string } = { ...DEFAULT_PAKE_OPTIONS, - url: "https://weread.qq.com", - name: "Weread", + url: "https://weekly.tw93.fun/", + name: "Weekly", }; ``` diff --git a/bin/defaults.ts b/bin/defaults.ts index 06beb3a..87fc48d 100644 --- a/bin/defaults.ts +++ b/bin/defaults.ts @@ -28,7 +28,7 @@ export const DEFAULT_PAKE_OPTIONS: PakeCliOptions = { // Just for cli development export const DEFAULT_DEV_PAKE_OPTIONS: PakeCliOptions & { url: string } = { ...DEFAULT_PAKE_OPTIONS, - url: 'https://weread.qq.com', - name: 'WeRead', + url: 'https://weekly.tw93.fun/', + name: 'Weekly', hideTitleBar: true, }; diff --git a/src-tauri/assets/com-tw93-weread.desktop b/src-tauri/assets/com-tw93-weekly.desktop similarity index 53% rename from src-tauri/assets/com-tw93-weread.desktop rename to src-tauri/assets/com-tw93-weekly.desktop index 00bcc03..1006490 100644 --- a/src-tauri/assets/com-tw93-weread.desktop +++ b/src-tauri/assets/com-tw93-weekly.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Encoding=UTF-8 Categories=Office -Exec=com-pake-weread -Icon=com-pake-weread -Name=com-pake-weread -Name[zh_CN]=微信阅读 +Exec=com-pake-weekly +Icon=com-pake-weekly +Name=com-pake-weekly +Name[zh_CN]=潮流周刊 StartupNotify=true Terminal=false Type=Application diff --git a/src-tauri/icons/weekly.icns b/src-tauri/icons/weekly.icns new file mode 100644 index 0000000..b722c23 Binary files /dev/null and b/src-tauri/icons/weekly.icns differ diff --git a/src-tauri/pake.json b/src-tauri/pake.json index 0f65315..2ba7d9c 100644 --- a/src-tauri/pake.json +++ b/src-tauri/pake.json @@ -1,7 +1,7 @@ { "windows": [ { - "url": "https://weread.qq.com/", + "url": "https://weekly.tw93.fun/", "url_type": "web", "hide_title_bar": true, "fullscreen": false, diff --git a/src-tauri/png/deepseek_256.ico b/src-tauri/png/deepseek_256.ico index 9b23beb..de484e2 100644 Binary files a/src-tauri/png/deepseek_256.ico and b/src-tauri/png/deepseek_256.ico differ diff --git a/src-tauri/png/deepseek_32.ico b/src-tauri/png/deepseek_32.ico index 7539594..9fd6eba 100644 Binary files a/src-tauri/png/deepseek_32.ico and b/src-tauri/png/deepseek_32.ico differ diff --git a/src-tauri/png/deepseek_512.png b/src-tauri/png/deepseek_512.png index 477f11a..d7e4168 100644 Binary files a/src-tauri/png/deepseek_512.png and b/src-tauri/png/deepseek_512.png differ diff --git a/src-tauri/png/weekly_256.ico b/src-tauri/png/weekly_256.ico new file mode 100644 index 0000000..83f9801 Binary files /dev/null and b/src-tauri/png/weekly_256.ico differ diff --git a/src-tauri/png/weekly_32.ico b/src-tauri/png/weekly_32.ico new file mode 100644 index 0000000..baed73f Binary files /dev/null and b/src-tauri/png/weekly_32.ico differ diff --git a/src-tauri/png/weekly_512.png b/src-tauri/png/weekly_512.png new file mode 100644 index 0000000..00a695e Binary files /dev/null and b/src-tauri/png/weekly_512.png differ diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5697bcf..9fc2033 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,11 +1,11 @@ { - "productName": "WeRead", - "identifier": "com.pake.weread", + "productName": "Weekly", + "identifier": "com.pake.weekly", "version": "1.0.0", "app": { "withGlobalTauri": true, "trayIcon": { - "iconPath": "png/weread_512.png", + "iconPath": "png/weekly_512.png", "iconAsTemplate": false, "id": "pake-tray" } diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json index 3937c2e..9235965 100644 --- a/src-tauri/tauri.linux.conf.json +++ b/src-tauri/tauri.linux.conf.json @@ -1,13 +1,13 @@ { "productName": "we-read", "bundle": { - "icon": ["png/weread_512.png"], + "icon": ["png/weekly.png"], "active": true, "linux": { "deb": { "depends": ["curl", "wget"], "files": { - "/usr/share/applications/com-pake-weread.desktop": "assets/com-pake-weread.desktop" + "/usr/share/applications/com-pake-weekly.desktop": "assets/com-pake-weekly.desktop" } } }, diff --git a/src-tauri/tauri.macos.conf.json b/src-tauri/tauri.macos.conf.json index b5a372a..ffad19d 100644 --- a/src-tauri/tauri.macos.conf.json +++ b/src-tauri/tauri.macos.conf.json @@ -1,6 +1,6 @@ { "bundle": { - "icon": ["icons/weread.icns"], + "icon": ["icons/weekly.icns"], "active": true, "macOS": {}, "targets": ["dmg"] diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index 3e45bd6..ee10910 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -1,8 +1,8 @@ { "bundle": { - "icon": ["png/weread_256.ico", "png/weread_32.ico"], + "icon": ["png/weekly_256.ico", "png/weekly_32.ico"], "active": true, - "resources": ["png/weread_32.ico"], + "resources": ["png/weekly_32.ico"], "targets": ["msi"], "windows": { "digestAlgorithm": "sha256",