├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── config ├── DownloadStore.json └── config.json ├── electron-builder.yml ├── electron.vite.config.ts ├── eslint.config.mjs ├── ffmpeg ├── ffmpeg-core.js └── ffmpeg.exe ├── package.json ├── resources ├── Xlogo2.png ├── a1.png ├── a2.png ├── d1.png ├── d2.png ├── d3.png ├── icon.png ├── l1.png ├── l2.png ├── x1.ico └── x1.png ├── slVerifyfalse ├── src ├── main │ ├── index.ts │ └── trackerlist.json ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── App.vue │ ├── assets │ ├── Xlogo2.png │ ├── animation.less │ ├── base.css │ ├── electron.svg │ ├── logo.png │ ├── main.css │ ├── variables.less │ ├── vars.less │ └── wavy-lines.svg │ ├── components │ ├── EnhancedPlayer.vue │ ├── VideoPlayer.vue │ └── iniInfo.vue │ ├── env.d.ts │ ├── hooks │ ├── useFile.ts │ └── useTorrent.ts │ ├── http │ └── index.ts │ ├── main.ts │ ├── router │ └── index.ts │ ├── store │ ├── config.ts │ ├── navigation.ts │ └── torrent.ts │ └── views │ ├── Download.vue │ ├── HomeView.vue │ ├── Versions.vue │ ├── detail.vue │ └── option.vue ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.json ├── types └── index.ts └── 环境.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | semi: false 3 | printWidth: 100 4 | trailingComma: none 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/README.md -------------------------------------------------------------------------------- /config/DownloadStore.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/config/config.json -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /ffmpeg/ffmpeg-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/ffmpeg/ffmpeg-core.js -------------------------------------------------------------------------------- /ffmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/ffmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/package.json -------------------------------------------------------------------------------- /resources/Xlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/Xlogo2.png -------------------------------------------------------------------------------- /resources/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/a1.png -------------------------------------------------------------------------------- /resources/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/a2.png -------------------------------------------------------------------------------- /resources/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/d1.png -------------------------------------------------------------------------------- /resources/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/d2.png -------------------------------------------------------------------------------- /resources/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/d3.png -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/l1.png -------------------------------------------------------------------------------- /resources/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/l2.png -------------------------------------------------------------------------------- /resources/x1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/x1.ico -------------------------------------------------------------------------------- /resources/x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/resources/x1.png -------------------------------------------------------------------------------- /slVerifyfalse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/slVerifyfalse -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/trackerlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/main/trackerlist.json -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/App.vue -------------------------------------------------------------------------------- /src/renderer/src/assets/Xlogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/Xlogo2.png -------------------------------------------------------------------------------- /src/renderer/src/assets/animation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/animation.less -------------------------------------------------------------------------------- /src/renderer/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/base.css -------------------------------------------------------------------------------- /src/renderer/src/assets/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/electron.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/main.css -------------------------------------------------------------------------------- /src/renderer/src/assets/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/variables.less -------------------------------------------------------------------------------- /src/renderer/src/assets/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/vars.less -------------------------------------------------------------------------------- /src/renderer/src/assets/wavy-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/assets/wavy-lines.svg -------------------------------------------------------------------------------- /src/renderer/src/components/EnhancedPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/components/EnhancedPlayer.vue -------------------------------------------------------------------------------- /src/renderer/src/components/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/components/VideoPlayer.vue -------------------------------------------------------------------------------- /src/renderer/src/components/iniInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/components/iniInfo.vue -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/hooks/useFile.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useTorrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/hooks/useTorrent.ts -------------------------------------------------------------------------------- /src/renderer/src/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/http/index.ts -------------------------------------------------------------------------------- /src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/main.ts -------------------------------------------------------------------------------- /src/renderer/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/router/index.ts -------------------------------------------------------------------------------- /src/renderer/src/store/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/store/config.ts -------------------------------------------------------------------------------- /src/renderer/src/store/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/store/navigation.ts -------------------------------------------------------------------------------- /src/renderer/src/store/torrent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/store/torrent.ts -------------------------------------------------------------------------------- /src/renderer/src/views/Download.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/views/Download.vue -------------------------------------------------------------------------------- /src/renderer/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/views/HomeView.vue -------------------------------------------------------------------------------- /src/renderer/src/views/Versions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/views/Versions.vue -------------------------------------------------------------------------------- /src/renderer/src/views/detail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/views/detail.vue -------------------------------------------------------------------------------- /src/renderer/src/views/option.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/src/renderer/src/views/option.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/tsconfig.web.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinneRELLa/ROTORE/HEAD/types/index.ts -------------------------------------------------------------------------------- /环境.txt: -------------------------------------------------------------------------------- 1 | 运行和打包需要python环境 2 | 可能需要安装VS BUILD TOOLS 3 | 作者node版本22.14.0 --------------------------------------------------------------------------------