├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── feature.yml ├── actions │ ├── build-for-linux │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ └── build.sh └── workflows │ └── package.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc.json ├── .scripts ├── popclip │ ├── Config.plist │ ├── Pot.png │ ├── Pot.sh │ └── build.sh └── snipdo │ ├── build.sh │ ├── pot.json │ ├── pot.png │ └── pot.ps1 ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── CHANGELOG ├── LICENSE ├── README.md ├── README_EN.md ├── README_KR.md ├── asset ├── 1.png ├── 2.png ├── 3.png ├── eg1.gif ├── eg2.gif ├── eg3.gif ├── eg4.gif ├── eg5.gif ├── eg6.gif └── header.png ├── com.pot_app.pot.metainfo.xml ├── daemon.html ├── index.html ├── package.json ├── patches └── hyprland.patch ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── icon.png ├── icon.svg ├── logo │ ├── Darwin.svg │ ├── Linux.svg │ ├── Windows_NT.svg │ ├── alibaba.svg │ ├── anki.svg │ ├── baidu.svg │ ├── bing.svg │ ├── caiyun.svg │ ├── cambridge_dict.svg │ ├── chatglm.png │ ├── deepl.svg │ ├── ecdict.svg │ ├── eudic.png │ ├── geminipro.webp │ ├── google.svg │ ├── iflytek.png │ ├── lingva.svg │ ├── niutrans.svg │ ├── ollama.png │ ├── openai.svg │ ├── paddle.png │ ├── qrcode.svg │ ├── simple_latex.png │ ├── tencent.svg │ ├── tencent_cloud.png │ ├── tesseract.png │ ├── transmart.svg │ ├── volcengine.svg │ ├── yandex.svg │ └── youdao.svg ├── tesseract-core-simd-lstm.wasm.js └── worker.min.js ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── icon_mac.ico ├── icons_mac │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── tray.ico ├── resources │ ├── ocr-aarch64-apple-darwin │ └── ocr-x86_64-apple-darwin ├── src │ ├── backup.rs │ ├── clipboard.rs │ ├── cmd.rs │ ├── config.rs │ ├── error.rs │ ├── hotkey.rs │ ├── lang_detect.rs │ ├── main.rs │ ├── screenshot.rs │ ├── server.rs │ ├── system_ocr.rs │ ├── tray.rs │ ├── updater.rs │ └── window.rs ├── tauri.conf.json ├── tauri.linux.conf.json ├── tauri.macos.conf.json ├── tauri.windows.conf.json ├── webview.arm64.json ├── webview.x64.json └── webview.x86.json ├── src ├── App.jsx ├── components │ └── WindowControl │ │ ├── index.jsx │ │ └── style.css ├── hooks │ ├── index.jsx │ ├── useConfig.jsx │ ├── useGetState.jsx │ ├── useSyncAtom.jsx │ ├── useToastStyle.jsx │ └── useVoice.jsx ├── i18n │ ├── index.jsx │ └── locales │ │ ├── ar_AE.json │ │ ├── de_DE.json │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fa_IR.json │ │ ├── fr_FR.json │ │ ├── he_IL.json │ │ ├── it_IT.json │ │ ├── ja_JP.json │ │ ├── ko_KR.json │ │ ├── nb_NO.json │ │ ├── nn_NO.json │ │ ├── pt_BR.json │ │ ├── pt_PT.json │ │ ├── ru_RU.json │ │ ├── ta_IN.json │ │ ├── tk_TM.json │ │ ├── tr_TR.json │ │ ├── uk_UA.json │ │ ├── zh_CN.json │ │ └── zh_TW.json ├── main.jsx ├── services │ ├── collection │ │ ├── anki │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── eudic │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ └── index.jsx │ ├── recognize │ │ ├── baidu │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── baidu_accurate │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── baidu_img │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── iflytek │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── iflytek_intsig │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── iflytek_latex │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── index.jsx │ │ ├── qrcode │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── simple_latex │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── system │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── tencent │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── tencent_accurate │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── tencent_img │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── tesseract │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── volcengine │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ └── volcengine_multi_lang │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ ├── translate │ │ ├── alibaba │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── baidu │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── baidu_field │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── bing │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── bing_dict │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── caiyun │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── cambridge_dict │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── chatglm │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── deepl │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── ecdict │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── geminipro │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── google │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── index.jsx │ │ ├── lingva │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── niutrans │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── ollama │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── openai │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── tencent │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── transmart │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── volcengine │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ ├── yandex │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ │ └── youdao │ │ │ ├── Config.jsx │ │ │ ├── index.jsx │ │ │ └── info.ts │ └── tts │ │ ├── index.jsx │ │ └── lingva │ │ ├── Config.jsx │ │ ├── index.jsx │ │ └── info.ts ├── style.css ├── utils │ ├── env.js │ ├── index.js │ ├── invoke_plugin.js │ ├── lang_detect.js │ ├── language.ts │ ├── service_instance.ts │ └── store.js └── window │ ├── Config │ ├── components │ │ └── SideBar │ │ │ └── index.jsx │ ├── index.jsx │ ├── pages │ │ ├── About │ │ │ └── index.jsx │ │ ├── Backup │ │ │ ├── AliyunModal │ │ │ │ └── index.jsx │ │ │ ├── WebDavModal │ │ │ │ └── index.jsx │ │ │ ├── index.jsx │ │ │ └── utils │ │ │ │ ├── aliyun.jsx │ │ │ │ ├── local.jsx │ │ │ │ └── webdav.jsx │ │ ├── General │ │ │ └── index.jsx │ │ ├── History │ │ │ └── index.jsx │ │ ├── Hotkey │ │ │ └── index.jsx │ │ ├── Recognize │ │ │ └── index.jsx │ │ ├── Service │ │ │ ├── Collection │ │ │ │ ├── ConfigModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── SelectModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── ServiceItem │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── PluginConfig │ │ │ │ └── index.jsx │ │ │ ├── Recognize │ │ │ │ ├── ConfigModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── SelectModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── ServiceItem │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── SelectPluginModal │ │ │ │ └── index.jsx │ │ │ ├── Translate │ │ │ │ ├── ConfigModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── SelectModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── ServiceItem │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── Tts │ │ │ │ ├── ConfigModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── SelectModal │ │ │ │ │ └── index.jsx │ │ │ │ ├── ServiceItem │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ └── Translate │ │ │ └── index.jsx │ ├── routes │ │ └── index.jsx │ └── style.css │ ├── Recognize │ ├── ControlArea │ │ └── index.jsx │ ├── ImageArea │ │ └── index.jsx │ ├── TextArea │ │ └── index.jsx │ └── index.jsx │ ├── Screenshot │ └── index.jsx │ ├── Translate │ ├── components │ │ ├── LanguageArea │ │ │ └── index.jsx │ │ ├── SourceArea │ │ │ └── index.jsx │ │ └── TargetArea │ │ │ └── index.jsx │ └── index.jsx │ └── Updater │ └── index.jsx ├── tailwind.config.cjs ├── updater ├── updater-for-fix-runtime.mjs └── updater.mjs └── vite.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/actions/build-for-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/actions/build-for-linux/Dockerfile -------------------------------------------------------------------------------- /.github/actions/build-for-linux/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/actions/build-for-linux/action.yml -------------------------------------------------------------------------------- /.github/actions/build-for-linux/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/actions/build-for-linux/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/actions/build.sh -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 21 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | asset 2 | dist 3 | node_modules 4 | public 5 | target 6 | *-lock* 7 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.scripts/popclip/Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/popclip/Config.plist -------------------------------------------------------------------------------- /.scripts/popclip/Pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/popclip/Pot.png -------------------------------------------------------------------------------- /.scripts/popclip/Pot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/popclip/Pot.sh -------------------------------------------------------------------------------- /.scripts/popclip/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/popclip/build.sh -------------------------------------------------------------------------------- /.scripts/snipdo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/snipdo/build.sh -------------------------------------------------------------------------------- /.scripts/snipdo/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/snipdo/pot.json -------------------------------------------------------------------------------- /.scripts/snipdo/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/snipdo/pot.png -------------------------------------------------------------------------------- /.scripts/snipdo/pot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.scripts/snipdo/pot.ps1 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/README_EN.md -------------------------------------------------------------------------------- /README_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/README_KR.md -------------------------------------------------------------------------------- /asset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/1.png -------------------------------------------------------------------------------- /asset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/2.png -------------------------------------------------------------------------------- /asset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/3.png -------------------------------------------------------------------------------- /asset/eg1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg1.gif -------------------------------------------------------------------------------- /asset/eg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg2.gif -------------------------------------------------------------------------------- /asset/eg3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg3.gif -------------------------------------------------------------------------------- /asset/eg4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg4.gif -------------------------------------------------------------------------------- /asset/eg5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg5.gif -------------------------------------------------------------------------------- /asset/eg6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/eg6.gif -------------------------------------------------------------------------------- /asset/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/asset/header.png -------------------------------------------------------------------------------- /com.pot_app.pot.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/com.pot_app.pot.metainfo.xml -------------------------------------------------------------------------------- /daemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/daemon.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/package.json -------------------------------------------------------------------------------- /patches/hyprland.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/patches/hyprland.patch -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/logo/Darwin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/Darwin.svg -------------------------------------------------------------------------------- /public/logo/Linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/Linux.svg -------------------------------------------------------------------------------- /public/logo/Windows_NT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/Windows_NT.svg -------------------------------------------------------------------------------- /public/logo/alibaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/alibaba.svg -------------------------------------------------------------------------------- /public/logo/anki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/anki.svg -------------------------------------------------------------------------------- /public/logo/baidu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/baidu.svg -------------------------------------------------------------------------------- /public/logo/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/bing.svg -------------------------------------------------------------------------------- /public/logo/caiyun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/caiyun.svg -------------------------------------------------------------------------------- /public/logo/cambridge_dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/cambridge_dict.svg -------------------------------------------------------------------------------- /public/logo/chatglm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/chatglm.png -------------------------------------------------------------------------------- /public/logo/deepl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/deepl.svg -------------------------------------------------------------------------------- /public/logo/ecdict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/ecdict.svg -------------------------------------------------------------------------------- /public/logo/eudic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/eudic.png -------------------------------------------------------------------------------- /public/logo/geminipro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/geminipro.webp -------------------------------------------------------------------------------- /public/logo/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/google.svg -------------------------------------------------------------------------------- /public/logo/iflytek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/iflytek.png -------------------------------------------------------------------------------- /public/logo/lingva.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/lingva.svg -------------------------------------------------------------------------------- /public/logo/niutrans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/niutrans.svg -------------------------------------------------------------------------------- /public/logo/ollama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/ollama.png -------------------------------------------------------------------------------- /public/logo/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/openai.svg -------------------------------------------------------------------------------- /public/logo/paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/paddle.png -------------------------------------------------------------------------------- /public/logo/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/qrcode.svg -------------------------------------------------------------------------------- /public/logo/simple_latex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/simple_latex.png -------------------------------------------------------------------------------- /public/logo/tencent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/tencent.svg -------------------------------------------------------------------------------- /public/logo/tencent_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/tencent_cloud.png -------------------------------------------------------------------------------- /public/logo/tesseract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/tesseract.png -------------------------------------------------------------------------------- /public/logo/transmart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/transmart.svg -------------------------------------------------------------------------------- /public/logo/volcengine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/volcengine.svg -------------------------------------------------------------------------------- /public/logo/yandex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/yandex.svg -------------------------------------------------------------------------------- /public/logo/youdao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/logo/youdao.svg -------------------------------------------------------------------------------- /public/tesseract-core-simd-lstm.wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/tesseract-core-simd-lstm.wasm.js -------------------------------------------------------------------------------- /public/worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/public/worker.min.js -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/icon_mac.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons/icon_mac.ico -------------------------------------------------------------------------------- /src-tauri/icons_mac/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons_mac/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons_mac/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/icon.png -------------------------------------------------------------------------------- /src-tauri/icons_mac/tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/icons_mac/tray.ico -------------------------------------------------------------------------------- /src-tauri/resources/ocr-aarch64-apple-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/resources/ocr-aarch64-apple-darwin -------------------------------------------------------------------------------- /src-tauri/resources/ocr-x86_64-apple-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/resources/ocr-x86_64-apple-darwin -------------------------------------------------------------------------------- /src-tauri/src/backup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/backup.rs -------------------------------------------------------------------------------- /src-tauri/src/clipboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/clipboard.rs -------------------------------------------------------------------------------- /src-tauri/src/cmd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/cmd.rs -------------------------------------------------------------------------------- /src-tauri/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/config.rs -------------------------------------------------------------------------------- /src-tauri/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/error.rs -------------------------------------------------------------------------------- /src-tauri/src/hotkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/hotkey.rs -------------------------------------------------------------------------------- /src-tauri/src/lang_detect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/lang_detect.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/screenshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/screenshot.rs -------------------------------------------------------------------------------- /src-tauri/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/server.rs -------------------------------------------------------------------------------- /src-tauri/src/system_ocr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/system_ocr.rs -------------------------------------------------------------------------------- /src-tauri/src/tray.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/tray.rs -------------------------------------------------------------------------------- /src-tauri/src/updater.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/updater.rs -------------------------------------------------------------------------------- /src-tauri/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/src/window.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src-tauri/tauri.linux.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/tauri.linux.conf.json -------------------------------------------------------------------------------- /src-tauri/tauri.macos.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/tauri.macos.conf.json -------------------------------------------------------------------------------- /src-tauri/tauri.windows.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/tauri.windows.conf.json -------------------------------------------------------------------------------- /src-tauri/webview.arm64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/webview.arm64.json -------------------------------------------------------------------------------- /src-tauri/webview.x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/webview.x64.json -------------------------------------------------------------------------------- /src-tauri/webview.x86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src-tauri/webview.x86.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/WindowControl/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/components/WindowControl/index.jsx -------------------------------------------------------------------------------- /src/components/WindowControl/style.css: -------------------------------------------------------------------------------- 1 | .close-button:hover { 2 | background-color: #c42b1c !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/hooks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/index.jsx -------------------------------------------------------------------------------- /src/hooks/useConfig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/useConfig.jsx -------------------------------------------------------------------------------- /src/hooks/useGetState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/useGetState.jsx -------------------------------------------------------------------------------- /src/hooks/useSyncAtom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/useSyncAtom.jsx -------------------------------------------------------------------------------- /src/hooks/useToastStyle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/useToastStyle.jsx -------------------------------------------------------------------------------- /src/hooks/useVoice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/hooks/useVoice.jsx -------------------------------------------------------------------------------- /src/i18n/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/index.jsx -------------------------------------------------------------------------------- /src/i18n/locales/ar_AE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/ar_AE.json -------------------------------------------------------------------------------- /src/i18n/locales/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/de_DE.json -------------------------------------------------------------------------------- /src/i18n/locales/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/en_US.json -------------------------------------------------------------------------------- /src/i18n/locales/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/es_ES.json -------------------------------------------------------------------------------- /src/i18n/locales/fa_IR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/fa_IR.json -------------------------------------------------------------------------------- /src/i18n/locales/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/fr_FR.json -------------------------------------------------------------------------------- /src/i18n/locales/he_IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/he_IL.json -------------------------------------------------------------------------------- /src/i18n/locales/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/it_IT.json -------------------------------------------------------------------------------- /src/i18n/locales/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/ja_JP.json -------------------------------------------------------------------------------- /src/i18n/locales/ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/ko_KR.json -------------------------------------------------------------------------------- /src/i18n/locales/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/nb_NO.json -------------------------------------------------------------------------------- /src/i18n/locales/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/nn_NO.json -------------------------------------------------------------------------------- /src/i18n/locales/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/pt_BR.json -------------------------------------------------------------------------------- /src/i18n/locales/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/pt_PT.json -------------------------------------------------------------------------------- /src/i18n/locales/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/ru_RU.json -------------------------------------------------------------------------------- /src/i18n/locales/ta_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/ta_IN.json -------------------------------------------------------------------------------- /src/i18n/locales/tk_TM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/tk_TM.json -------------------------------------------------------------------------------- /src/i18n/locales/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/tr_TR.json -------------------------------------------------------------------------------- /src/i18n/locales/uk_UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/uk_UA.json -------------------------------------------------------------------------------- /src/i18n/locales/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/zh_CN.json -------------------------------------------------------------------------------- /src/i18n/locales/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/i18n/locales/zh_TW.json -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/services/collection/anki/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/anki/Config.jsx -------------------------------------------------------------------------------- /src/services/collection/anki/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/anki/index.jsx -------------------------------------------------------------------------------- /src/services/collection/anki/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/anki/info.ts -------------------------------------------------------------------------------- /src/services/collection/eudic/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/eudic/Config.jsx -------------------------------------------------------------------------------- /src/services/collection/eudic/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/eudic/index.jsx -------------------------------------------------------------------------------- /src/services/collection/eudic/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/eudic/info.ts -------------------------------------------------------------------------------- /src/services/collection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/collection/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu/info.ts -------------------------------------------------------------------------------- /src/services/recognize/baidu_accurate/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_accurate/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu_accurate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_accurate/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu_accurate/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_accurate/info.ts -------------------------------------------------------------------------------- /src/services/recognize/baidu_img/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_img/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu_img/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_img/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/baidu_img/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/baidu_img/info.ts -------------------------------------------------------------------------------- /src/services/recognize/iflytek/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek/info.ts -------------------------------------------------------------------------------- /src/services/recognize/iflytek_intsig/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_intsig/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek_intsig/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_intsig/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek_intsig/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_intsig/info.ts -------------------------------------------------------------------------------- /src/services/recognize/iflytek_latex/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_latex/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek_latex/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_latex/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/iflytek_latex/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/iflytek_latex/info.ts -------------------------------------------------------------------------------- /src/services/recognize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/qrcode/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/qrcode/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/qrcode/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/qrcode/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/qrcode/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/qrcode/info.ts -------------------------------------------------------------------------------- /src/services/recognize/simple_latex/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/simple_latex/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/simple_latex/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/simple_latex/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/simple_latex/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/simple_latex/info.ts -------------------------------------------------------------------------------- /src/services/recognize/system/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/system/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/system/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/system/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/system/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/system/info.ts -------------------------------------------------------------------------------- /src/services/recognize/tencent/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent/info.ts -------------------------------------------------------------------------------- /src/services/recognize/tencent_accurate/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_accurate/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent_accurate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_accurate/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent_accurate/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_accurate/info.ts -------------------------------------------------------------------------------- /src/services/recognize/tencent_img/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_img/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent_img/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_img/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/tencent_img/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tencent_img/info.ts -------------------------------------------------------------------------------- /src/services/recognize/tesseract/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tesseract/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/tesseract/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tesseract/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/tesseract/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/tesseract/info.ts -------------------------------------------------------------------------------- /src/services/recognize/volcengine/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/volcengine/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/volcengine/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine/info.ts -------------------------------------------------------------------------------- /src/services/recognize/volcengine_multi_lang/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine_multi_lang/Config.jsx -------------------------------------------------------------------------------- /src/services/recognize/volcengine_multi_lang/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine_multi_lang/index.jsx -------------------------------------------------------------------------------- /src/services/recognize/volcengine_multi_lang/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/recognize/volcengine_multi_lang/info.ts -------------------------------------------------------------------------------- /src/services/translate/alibaba/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/alibaba/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/alibaba/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/alibaba/index.jsx -------------------------------------------------------------------------------- /src/services/translate/alibaba/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/alibaba/info.ts -------------------------------------------------------------------------------- /src/services/translate/baidu/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/baidu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu/index.jsx -------------------------------------------------------------------------------- /src/services/translate/baidu/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu/info.ts -------------------------------------------------------------------------------- /src/services/translate/baidu_field/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu_field/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/baidu_field/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu_field/index.jsx -------------------------------------------------------------------------------- /src/services/translate/baidu_field/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/baidu_field/info.ts -------------------------------------------------------------------------------- /src/services/translate/bing/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/bing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing/index.jsx -------------------------------------------------------------------------------- /src/services/translate/bing/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing/info.ts -------------------------------------------------------------------------------- /src/services/translate/bing_dict/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing_dict/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/bing_dict/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing_dict/index.jsx -------------------------------------------------------------------------------- /src/services/translate/bing_dict/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/bing_dict/info.ts -------------------------------------------------------------------------------- /src/services/translate/caiyun/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/caiyun/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/caiyun/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/caiyun/index.jsx -------------------------------------------------------------------------------- /src/services/translate/caiyun/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/caiyun/info.ts -------------------------------------------------------------------------------- /src/services/translate/cambridge_dict/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/cambridge_dict/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/cambridge_dict/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/cambridge_dict/index.jsx -------------------------------------------------------------------------------- /src/services/translate/cambridge_dict/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/cambridge_dict/info.ts -------------------------------------------------------------------------------- /src/services/translate/chatglm/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/chatglm/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/chatglm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/chatglm/index.jsx -------------------------------------------------------------------------------- /src/services/translate/chatglm/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/chatglm/info.ts -------------------------------------------------------------------------------- /src/services/translate/deepl/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/deepl/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/deepl/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/deepl/index.jsx -------------------------------------------------------------------------------- /src/services/translate/deepl/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/deepl/info.ts -------------------------------------------------------------------------------- /src/services/translate/ecdict/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ecdict/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/ecdict/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ecdict/index.jsx -------------------------------------------------------------------------------- /src/services/translate/ecdict/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ecdict/info.ts -------------------------------------------------------------------------------- /src/services/translate/geminipro/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/geminipro/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/geminipro/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/geminipro/index.jsx -------------------------------------------------------------------------------- /src/services/translate/geminipro/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/geminipro/info.ts -------------------------------------------------------------------------------- /src/services/translate/google/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/google/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/google/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/google/index.jsx -------------------------------------------------------------------------------- /src/services/translate/google/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/google/info.ts -------------------------------------------------------------------------------- /src/services/translate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/index.jsx -------------------------------------------------------------------------------- /src/services/translate/lingva/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/lingva/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/lingva/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/lingva/index.jsx -------------------------------------------------------------------------------- /src/services/translate/lingva/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/lingva/info.ts -------------------------------------------------------------------------------- /src/services/translate/niutrans/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/niutrans/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/niutrans/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/niutrans/index.jsx -------------------------------------------------------------------------------- /src/services/translate/niutrans/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/niutrans/info.ts -------------------------------------------------------------------------------- /src/services/translate/ollama/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ollama/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/ollama/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ollama/index.jsx -------------------------------------------------------------------------------- /src/services/translate/ollama/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/ollama/info.ts -------------------------------------------------------------------------------- /src/services/translate/openai/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/openai/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/openai/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/openai/index.jsx -------------------------------------------------------------------------------- /src/services/translate/openai/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/openai/info.ts -------------------------------------------------------------------------------- /src/services/translate/tencent/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/tencent/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/tencent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/tencent/index.jsx -------------------------------------------------------------------------------- /src/services/translate/tencent/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/tencent/info.ts -------------------------------------------------------------------------------- /src/services/translate/transmart/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/transmart/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/transmart/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/transmart/index.jsx -------------------------------------------------------------------------------- /src/services/translate/transmart/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/transmart/info.ts -------------------------------------------------------------------------------- /src/services/translate/volcengine/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/volcengine/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/volcengine/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/volcengine/index.jsx -------------------------------------------------------------------------------- /src/services/translate/volcengine/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/volcengine/info.ts -------------------------------------------------------------------------------- /src/services/translate/yandex/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/yandex/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/yandex/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/yandex/index.jsx -------------------------------------------------------------------------------- /src/services/translate/yandex/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/yandex/info.ts -------------------------------------------------------------------------------- /src/services/translate/youdao/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/youdao/Config.jsx -------------------------------------------------------------------------------- /src/services/translate/youdao/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/youdao/index.jsx -------------------------------------------------------------------------------- /src/services/translate/youdao/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/translate/youdao/info.ts -------------------------------------------------------------------------------- /src/services/tts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/tts/index.jsx -------------------------------------------------------------------------------- /src/services/tts/lingva/Config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/tts/lingva/Config.jsx -------------------------------------------------------------------------------- /src/services/tts/lingva/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/tts/lingva/index.jsx -------------------------------------------------------------------------------- /src/services/tts/lingva/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/services/tts/lingva/info.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/env.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/invoke_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/invoke_plugin.js -------------------------------------------------------------------------------- /src/utils/lang_detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/lang_detect.js -------------------------------------------------------------------------------- /src/utils/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/language.ts -------------------------------------------------------------------------------- /src/utils/service_instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/service_instance.ts -------------------------------------------------------------------------------- /src/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/utils/store.js -------------------------------------------------------------------------------- /src/window/Config/components/SideBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/components/SideBar/index.jsx -------------------------------------------------------------------------------- /src/window/Config/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/About/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/About/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/AliyunModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/AliyunModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/WebDavModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/WebDavModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/utils/aliyun.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/utils/aliyun.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/utils/local.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/utils/local.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Backup/utils/webdav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Backup/utils/webdav.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/General/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/General/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/History/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/History/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Hotkey/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Hotkey/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Recognize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Recognize/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Collection/ConfigModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Collection/ConfigModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Collection/SelectModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Collection/SelectModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Collection/ServiceItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Collection/ServiceItem/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Collection/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Collection/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/PluginConfig/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/PluginConfig/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Recognize/ConfigModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Recognize/ConfigModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Recognize/SelectModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Recognize/SelectModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Recognize/ServiceItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Recognize/ServiceItem/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Recognize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Recognize/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/SelectPluginModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/SelectPluginModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Translate/ConfigModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Translate/ConfigModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Translate/SelectModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Translate/SelectModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Translate/ServiceItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Translate/ServiceItem/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Translate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Translate/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Tts/ConfigModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Tts/ConfigModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Tts/SelectModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Tts/SelectModal/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Tts/ServiceItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Tts/ServiceItem/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/Tts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/Tts/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Service/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Service/index.jsx -------------------------------------------------------------------------------- /src/window/Config/pages/Translate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/pages/Translate/index.jsx -------------------------------------------------------------------------------- /src/window/Config/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/routes/index.jsx -------------------------------------------------------------------------------- /src/window/Config/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Config/style.css -------------------------------------------------------------------------------- /src/window/Recognize/ControlArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Recognize/ControlArea/index.jsx -------------------------------------------------------------------------------- /src/window/Recognize/ImageArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Recognize/ImageArea/index.jsx -------------------------------------------------------------------------------- /src/window/Recognize/TextArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Recognize/TextArea/index.jsx -------------------------------------------------------------------------------- /src/window/Recognize/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Recognize/index.jsx -------------------------------------------------------------------------------- /src/window/Screenshot/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Screenshot/index.jsx -------------------------------------------------------------------------------- /src/window/Translate/components/LanguageArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Translate/components/LanguageArea/index.jsx -------------------------------------------------------------------------------- /src/window/Translate/components/SourceArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Translate/components/SourceArea/index.jsx -------------------------------------------------------------------------------- /src/window/Translate/components/TargetArea/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Translate/components/TargetArea/index.jsx -------------------------------------------------------------------------------- /src/window/Translate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Translate/index.jsx -------------------------------------------------------------------------------- /src/window/Updater/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/src/window/Updater/index.jsx -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /updater/updater-for-fix-runtime.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/updater/updater-for-fix-runtime.mjs -------------------------------------------------------------------------------- /updater/updater.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/updater/updater.mjs -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pot-app/pot-desktop/HEAD/vite.config.js --------------------------------------------------------------------------------