├── .editorconfig ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.dev.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ ├── erb-logo.png │ └── palette-sponsor-banner.svg ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-Bug_report.md │ ├── 2-Question.md │ └── 3-Feature_request.md ├── config.yml ├── stale.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── assets ├── assets.d.ts ├── entitlements.mac.plist ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg └── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── config ├── setting.json └── toolkit-app.json ├── package.json ├── plugins └── cache │ └── package.json ├── release └── app │ ├── package-lock.json │ └── package.json ├── screen ├── screen-dashboard.png └── screen-main.png ├── src ├── __tests__ │ └── App.test.tsx ├── main │ ├── api.ts │ ├── app_updater.ts │ ├── dashboard.ts │ ├── db │ │ └── index.ts │ ├── file_api.ts │ ├── init_check.ts │ ├── main.ts │ ├── menu.ts │ ├── plugin.ts │ ├── preload.ts │ ├── setting.ts │ ├── tray.ts │ ├── util.ts │ └── webContainer.ts ├── renderer │ ├── App.css │ ├── App.tsx │ ├── Dashboard │ │ ├── baiduAnalytics.ts │ │ ├── components │ │ │ └── UpdateProgress.tsx │ │ ├── index.ejs │ │ └── index.tsx │ ├── Search │ │ ├── index.css │ │ └── index.jsx │ ├── index.ejs │ └── index.tsx └── types │ ├── global.d.ts │ └── plugin.d.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.main.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/ISSUE_TEMPLATE/1-Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/ISSUE_TEMPLATE/2-Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/ISSUE_TEMPLATE/3-Feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /config/setting.json: -------------------------------------------------------------------------------- 1 | {"sort":true,"language":"china"} -------------------------------------------------------------------------------- /config/toolkit-app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/config/toolkit-app.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/package.json -------------------------------------------------------------------------------- /plugins/cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/plugins/cache/package.json -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/release/app/package.json -------------------------------------------------------------------------------- /screen/screen-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/screen/screen-dashboard.png -------------------------------------------------------------------------------- /screen/screen-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/screen/screen-main.png -------------------------------------------------------------------------------- /src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /src/main/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/api.ts -------------------------------------------------------------------------------- /src/main/app_updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/app_updater.ts -------------------------------------------------------------------------------- /src/main/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/dashboard.ts -------------------------------------------------------------------------------- /src/main/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/db/index.ts -------------------------------------------------------------------------------- /src/main/file_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/file_api.ts -------------------------------------------------------------------------------- /src/main/init_check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/init_check.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/plugin.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/setting.ts -------------------------------------------------------------------------------- /src/main/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/tray.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/main/webContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/main/webContainer.ts -------------------------------------------------------------------------------- /src/renderer/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | width: fit-content; 3 | } 4 | -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/Dashboard/baiduAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Dashboard/baiduAnalytics.ts -------------------------------------------------------------------------------- /src/renderer/Dashboard/components/UpdateProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Dashboard/components/UpdateProgress.tsx -------------------------------------------------------------------------------- /src/renderer/Dashboard/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Dashboard/index.ejs -------------------------------------------------------------------------------- /src/renderer/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Dashboard/index.tsx -------------------------------------------------------------------------------- /src/renderer/Search/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Search/index.css -------------------------------------------------------------------------------- /src/renderer/Search/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/Search/index.jsx -------------------------------------------------------------------------------- /src/renderer/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/index.ejs -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/src/types/plugin.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrumanDu/toolkit/HEAD/tsconfig.json --------------------------------------------------------------------------------