├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── electron-builder-linux.yml ├── electron-builder.yml ├── electron.vite.config.ts ├── package.json ├── resources └── icons │ └── icon.png ├── src ├── common │ ├── ipcEvents.ts │ └── types.ts ├── main │ ├── fs.ts │ ├── history.ts │ ├── index.ts │ ├── ipc.ts │ ├── store.ts │ └── utils.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── App.vue │ ├── assets │ ├── css │ │ ├── player.css │ │ └── styles.less │ └── font │ │ ├── codicon.less │ │ └── codicon.ttf │ ├── components │ ├── Player.vue │ ├── Playlist.vue │ └── TitleBar.vue │ ├── env.d.ts │ ├── hook │ └── useIpcRendererOn.ts │ ├── main.ts │ └── utils │ ├── keyboard.ts │ └── video.ts ├── tsconfig.json ├── tsconfig.node.json └── tsconfig.web.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .gitignore 5 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | *.log* 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/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/alex8088/EvPlayer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/README.md -------------------------------------------------------------------------------- /electron-builder-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/electron-builder-linux.yml -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/package.json -------------------------------------------------------------------------------- /resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/resources/icons/icon.png -------------------------------------------------------------------------------- /src/common/ipcEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/common/ipcEvents.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/main/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/fs.ts -------------------------------------------------------------------------------- /src/main/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/history.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/ipc.ts -------------------------------------------------------------------------------- /src/main/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/store.ts -------------------------------------------------------------------------------- /src/main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/main/utils.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/App.vue -------------------------------------------------------------------------------- /src/renderer/src/assets/css/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/assets/css/player.css -------------------------------------------------------------------------------- /src/renderer/src/assets/css/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/assets/css/styles.less -------------------------------------------------------------------------------- /src/renderer/src/assets/font/codicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/assets/font/codicon.less -------------------------------------------------------------------------------- /src/renderer/src/assets/font/codicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/assets/font/codicon.ttf -------------------------------------------------------------------------------- /src/renderer/src/components/Player.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/components/Player.vue -------------------------------------------------------------------------------- /src/renderer/src/components/Playlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/components/Playlist.vue -------------------------------------------------------------------------------- /src/renderer/src/components/TitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/components/TitleBar.vue -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /src/renderer/src/hook/useIpcRendererOn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/hook/useIpcRendererOn.ts -------------------------------------------------------------------------------- /src/renderer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/main.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/utils/keyboard.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/src/renderer/src/utils/video.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex8088/EvPlayer/HEAD/tsconfig.web.json --------------------------------------------------------------------------------