├── .babelrc ├── .electron-vue ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── Extension.md ├── README.md ├── appveyor.yml ├── config.json ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ejs ├── main │ ├── block │ │ ├── index.js │ │ ├── tray.js │ │ └── update.js │ ├── extension │ │ ├── context.js │ │ └── index.js │ ├── index.dev.js │ ├── index.js │ ├── lib │ │ ├── hotkeys.js │ │ ├── utils.js │ │ └── window.js │ └── windows │ │ ├── autocomplete.js │ │ ├── card.js │ │ ├── img.js │ │ ├── index.js │ │ ├── main.js │ │ ├── page.js │ │ └── redpacket.js └── renderer │ ├── App.vue │ ├── assets │ ├── .gitkeep │ ├── Gesture.png │ ├── Paper.png │ ├── Rock.png │ ├── Scissors.png │ ├── christmas.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── SegoeUIEmoji.svg │ │ ├── SegoeUIEmoji.ttf │ │ ├── SegoeUIEmoji.woff │ │ ├── SegoeUIEmoji.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── icon.png │ ├── play.png │ ├── via │ │ ├── dart.svg │ │ ├── edge.svg │ │ ├── elves.svg │ │ ├── extension.svg │ │ ├── golang.svg │ │ ├── icenet.svg │ │ ├── idea.svg │ │ ├── mobile.svg │ │ ├── other.svg │ │ ├── pc.svg │ │ ├── python.svg │ │ ├── vscode.svg │ │ └── web.svg │ ├── weather │ │ ├── CLEAR_DAY.svg │ │ ├── CLEAR_NIGHT.svg │ │ ├── CLOUDY.svg │ │ ├── DUST.svg │ │ ├── FOG.svg │ │ ├── HEAVY_HAZE.svg │ │ ├── HEAVY_RAIN.svg │ │ ├── HEAVY_SNOW.svg │ │ ├── LIGHT_HAZE.svg │ │ ├── LIGHT_RAIN.svg │ │ ├── LIGHT_SNOW.svg │ │ ├── MODERATE_HAZE.svg │ │ ├── MODERATE_RAIN.svg │ │ ├── MODERATE_SNOW.svg │ │ ├── PARTLY_CLOUDY_DAY.svg │ │ ├── PARTLY_CLOUDY_NIGHT.svg │ │ ├── SAND.svg │ │ ├── STORM_RAIN.svg │ │ ├── STORM_SNOW.svg │ │ └── WIND.svg │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ ├── components │ ├── .gitkeep │ ├── chat-item.vue │ ├── chatroom-item.vue │ ├── comments.vue │ ├── custom-msg.vue │ ├── emoji.vue │ ├── header.vue │ ├── hotkey.vue │ ├── liveness.vue │ ├── messagebox.vue │ ├── music-card.vue │ ├── music.vue │ ├── player.vue │ ├── scrollbar.vue │ ├── via.vue │ └── weather-card.vue │ ├── extension.js │ ├── ipc.js │ ├── main.js │ ├── notice.js │ ├── router.js │ ├── setting.js │ ├── store │ ├── index.js │ └── modules │ │ └── index.js │ ├── theme │ ├── font-awesome.css │ ├── font-awesome │ │ ├── all.min.css │ │ ├── brands.min.css │ │ ├── fontawesome.min.css │ │ ├── regular.min.css │ │ ├── solid.min.css │ │ ├── svg-with-js.min.css │ │ ├── v4-font-face.min.css │ │ ├── v4-shims.min.css │ │ └── v5-font-face.min.css │ ├── highlight.css │ ├── index.css │ ├── theme.css │ └── vditor.css │ └── view │ ├── article.vue │ ├── articles.vue │ ├── autocomplete.vue │ ├── breezemoons.vue │ ├── card.vue │ ├── chat.vue │ ├── chatroom.vue │ ├── chats.vue │ ├── context.vue │ ├── extension.vue │ ├── home.vue │ ├── img.vue │ ├── index.vue │ ├── login.vue │ ├── redpacket.vue │ └── setting.vue └── static ├── .gitkeep ├── css ├── font-awesome.css └── font-awesome.min.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── icon ├── icon.icns ├── icon.ico ├── icon.png ├── icon@2x.png └── icon@3x.png ├── images ├── plyr.svg ├── preview.png └── weather │ ├── CLEAR_DAY.svg │ ├── CLEAR_NIGHT.svg │ ├── CLOUDY.svg │ ├── DUST.svg │ ├── FOG.svg │ ├── HEAVY_HAZE.svg │ ├── HEAVY_RAIN.svg │ ├── HEAVY_SNOW.svg │ ├── LIGHT_HAZE.svg │ ├── LIGHT_RAIN.svg │ ├── LIGHT_SNOW.svg │ ├── MODERATE_HAZE.svg │ ├── MODERATE_RAIN.svg │ ├── MODERATE_SNOW.svg │ ├── PARTLY_CLOUDY_DAY.svg │ ├── PARTLY_CLOUDY_NIGHT.svg │ ├── SAND.svg │ ├── STORM_RAIN.svg │ ├── STORM_SNOW.svg │ └── WIND.svg ├── shake.wav └── webview.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.babelrc -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/* -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.autoSave": "off" 3 | } -------------------------------------------------------------------------------- /Extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/Extension.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "domain": "fishpi.cn" 3 | } -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/block/index.js -------------------------------------------------------------------------------- /src/main/block/tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/block/tray.js -------------------------------------------------------------------------------- /src/main/block/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/block/update.js -------------------------------------------------------------------------------- /src/main/extension/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/extension/context.js -------------------------------------------------------------------------------- /src/main/extension/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/extension/index.js -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/lib/hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/lib/hotkeys.js -------------------------------------------------------------------------------- /src/main/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/lib/utils.js -------------------------------------------------------------------------------- /src/main/lib/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/lib/window.js -------------------------------------------------------------------------------- /src/main/windows/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/autocomplete.js -------------------------------------------------------------------------------- /src/main/windows/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/card.js -------------------------------------------------------------------------------- /src/main/windows/img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/img.js -------------------------------------------------------------------------------- /src/main/windows/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/index.js -------------------------------------------------------------------------------- /src/main/windows/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/main.js -------------------------------------------------------------------------------- /src/main/windows/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/page.js -------------------------------------------------------------------------------- /src/main/windows/redpacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/main/windows/redpacket.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/Gesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/Gesture.png -------------------------------------------------------------------------------- /src/renderer/assets/Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/Paper.png -------------------------------------------------------------------------------- /src/renderer/assets/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/Rock.png -------------------------------------------------------------------------------- /src/renderer/assets/Scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/Scissors.png -------------------------------------------------------------------------------- /src/renderer/assets/christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/christmas.png -------------------------------------------------------------------------------- /src/renderer/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/SegoeUIEmoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/SegoeUIEmoji.svg -------------------------------------------------------------------------------- /src/renderer/assets/fonts/SegoeUIEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/SegoeUIEmoji.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/SegoeUIEmoji.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/SegoeUIEmoji.woff -------------------------------------------------------------------------------- /src/renderer/assets/fonts/SegoeUIEmoji.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/SegoeUIEmoji.woff2 -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/renderer/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/renderer/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/icon.png -------------------------------------------------------------------------------- /src/renderer/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/play.png -------------------------------------------------------------------------------- /src/renderer/assets/via/dart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/dart.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/edge.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/elves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/elves.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/extension.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/golang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/golang.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/icenet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/icenet.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/idea.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/mobile.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/other.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/pc.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/python.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/vscode.svg -------------------------------------------------------------------------------- /src/renderer/assets/via/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/via/web.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/CLEAR_DAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/CLEAR_DAY.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/CLEAR_NIGHT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/CLEAR_NIGHT.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/CLOUDY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/CLOUDY.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/DUST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/DUST.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/FOG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/FOG.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/HEAVY_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/HEAVY_HAZE.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/HEAVY_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/HEAVY_RAIN.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/HEAVY_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/HEAVY_SNOW.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/LIGHT_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/LIGHT_HAZE.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/LIGHT_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/LIGHT_RAIN.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/LIGHT_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/LIGHT_SNOW.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/MODERATE_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/MODERATE_HAZE.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/MODERATE_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/MODERATE_RAIN.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/MODERATE_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/MODERATE_SNOW.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/PARTLY_CLOUDY_DAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/PARTLY_CLOUDY_DAY.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/PARTLY_CLOUDY_NIGHT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/PARTLY_CLOUDY_NIGHT.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/SAND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/SAND.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/STORM_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/STORM_RAIN.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/STORM_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/STORM_SNOW.svg -------------------------------------------------------------------------------- /src/renderer/assets/weather/WIND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/weather/WIND.svg -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /src/renderer/assets/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/assets/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /src/renderer/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/components/chat-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/chat-item.vue -------------------------------------------------------------------------------- /src/renderer/components/chatroom-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/chatroom-item.vue -------------------------------------------------------------------------------- /src/renderer/components/comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/comments.vue -------------------------------------------------------------------------------- /src/renderer/components/custom-msg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/custom-msg.vue -------------------------------------------------------------------------------- /src/renderer/components/emoji.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/emoji.vue -------------------------------------------------------------------------------- /src/renderer/components/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/header.vue -------------------------------------------------------------------------------- /src/renderer/components/hotkey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/hotkey.vue -------------------------------------------------------------------------------- /src/renderer/components/liveness.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/liveness.vue -------------------------------------------------------------------------------- /src/renderer/components/messagebox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/messagebox.vue -------------------------------------------------------------------------------- /src/renderer/components/music-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/music-card.vue -------------------------------------------------------------------------------- /src/renderer/components/music.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/music.vue -------------------------------------------------------------------------------- /src/renderer/components/player.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/player.vue -------------------------------------------------------------------------------- /src/renderer/components/scrollbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/scrollbar.vue -------------------------------------------------------------------------------- /src/renderer/components/via.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/via.vue -------------------------------------------------------------------------------- /src/renderer/components/weather-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/components/weather-card.vue -------------------------------------------------------------------------------- /src/renderer/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/extension.js -------------------------------------------------------------------------------- /src/renderer/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/ipc.js -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/notice.js -------------------------------------------------------------------------------- /src/renderer/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/router.js -------------------------------------------------------------------------------- /src/renderer/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/setting.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/all.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/brands.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/fontawesome.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/regular.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/solid.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/svg-with-js.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/v4-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/v4-font-face.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/v4-shims.min.css -------------------------------------------------------------------------------- /src/renderer/theme/font-awesome/v5-font-face.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/font-awesome/v5-font-face.min.css -------------------------------------------------------------------------------- /src/renderer/theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/highlight.css -------------------------------------------------------------------------------- /src/renderer/theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/index.css -------------------------------------------------------------------------------- /src/renderer/theme/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/theme.css -------------------------------------------------------------------------------- /src/renderer/theme/vditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/theme/vditor.css -------------------------------------------------------------------------------- /src/renderer/view/article.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/article.vue -------------------------------------------------------------------------------- /src/renderer/view/articles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/articles.vue -------------------------------------------------------------------------------- /src/renderer/view/autocomplete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/autocomplete.vue -------------------------------------------------------------------------------- /src/renderer/view/breezemoons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/breezemoons.vue -------------------------------------------------------------------------------- /src/renderer/view/card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/card.vue -------------------------------------------------------------------------------- /src/renderer/view/chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/chat.vue -------------------------------------------------------------------------------- /src/renderer/view/chatroom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/chatroom.vue -------------------------------------------------------------------------------- /src/renderer/view/chats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/chats.vue -------------------------------------------------------------------------------- /src/renderer/view/context.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/context.vue -------------------------------------------------------------------------------- /src/renderer/view/extension.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/extension.vue -------------------------------------------------------------------------------- /src/renderer/view/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/home.vue -------------------------------------------------------------------------------- /src/renderer/view/img.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/img.vue -------------------------------------------------------------------------------- /src/renderer/view/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/index.vue -------------------------------------------------------------------------------- /src/renderer/view/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/login.vue -------------------------------------------------------------------------------- /src/renderer/view/redpacket.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/redpacket.vue -------------------------------------------------------------------------------- /src/renderer/view/setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/src/renderer/view/setting.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/css/font-awesome.css -------------------------------------------------------------------------------- /static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/icon/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/icon/icon.icns -------------------------------------------------------------------------------- /static/icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/icon/icon.ico -------------------------------------------------------------------------------- /static/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/icon/icon.png -------------------------------------------------------------------------------- /static/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/icon/icon@2x.png -------------------------------------------------------------------------------- /static/icon/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/icon/icon@3x.png -------------------------------------------------------------------------------- /static/images/plyr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/plyr.svg -------------------------------------------------------------------------------- /static/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/preview.png -------------------------------------------------------------------------------- /static/images/weather/CLEAR_DAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/CLEAR_DAY.svg -------------------------------------------------------------------------------- /static/images/weather/CLEAR_NIGHT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/CLEAR_NIGHT.svg -------------------------------------------------------------------------------- /static/images/weather/CLOUDY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/CLOUDY.svg -------------------------------------------------------------------------------- /static/images/weather/DUST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/DUST.svg -------------------------------------------------------------------------------- /static/images/weather/FOG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/FOG.svg -------------------------------------------------------------------------------- /static/images/weather/HEAVY_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/HEAVY_HAZE.svg -------------------------------------------------------------------------------- /static/images/weather/HEAVY_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/HEAVY_RAIN.svg -------------------------------------------------------------------------------- /static/images/weather/HEAVY_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/HEAVY_SNOW.svg -------------------------------------------------------------------------------- /static/images/weather/LIGHT_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/LIGHT_HAZE.svg -------------------------------------------------------------------------------- /static/images/weather/LIGHT_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/LIGHT_RAIN.svg -------------------------------------------------------------------------------- /static/images/weather/LIGHT_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/LIGHT_SNOW.svg -------------------------------------------------------------------------------- /static/images/weather/MODERATE_HAZE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/MODERATE_HAZE.svg -------------------------------------------------------------------------------- /static/images/weather/MODERATE_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/MODERATE_RAIN.svg -------------------------------------------------------------------------------- /static/images/weather/MODERATE_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/MODERATE_SNOW.svg -------------------------------------------------------------------------------- /static/images/weather/PARTLY_CLOUDY_DAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/PARTLY_CLOUDY_DAY.svg -------------------------------------------------------------------------------- /static/images/weather/PARTLY_CLOUDY_NIGHT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/PARTLY_CLOUDY_NIGHT.svg -------------------------------------------------------------------------------- /static/images/weather/SAND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/SAND.svg -------------------------------------------------------------------------------- /static/images/weather/STORM_RAIN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/STORM_RAIN.svg -------------------------------------------------------------------------------- /static/images/weather/STORM_SNOW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/STORM_SNOW.svg -------------------------------------------------------------------------------- /static/images/weather/WIND.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/images/weather/WIND.svg -------------------------------------------------------------------------------- /static/shake.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/shake.wav -------------------------------------------------------------------------------- /static/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishPiOffical/fishpi-desktop/HEAD/static/webview.js --------------------------------------------------------------------------------