├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── assets ├── PSD │ ├── banner.psd │ └── icon.psd ├── banner.png ├── banner_transparent.png ├── github-mark │ ├── github-mark-white.png │ ├── github-mark-white.svg │ ├── github-mark.png │ └── github-mark.svg ├── icon-16x16.png ├── icon.icns ├── icon.ico └── icon.png ├── copy-native-dlls.js ├── dist └── index.css ├── forge.config.js ├── img ├── ChooseATheme.gif ├── ChooseFavorites.gif ├── DiscordSendSticker.gif ├── DownloadLinePacks.gif ├── Main.png └── ManageAndSort.gif ├── index.html ├── package.json ├── public ├── github-mark-white.svg ├── icon-16x16.png └── icon.ico ├── readme.md ├── src ├── electron-api.d.ts ├── index.scss ├── index.ts ├── preload.js ├── render │ ├── addStickerModal.ts │ ├── menuBar.ts │ ├── settingsModal.ts │ ├── stickerRenderer.ts │ └── updateModal.ts ├── renderer.ts ├── sticker.d.ts └── utils │ ├── checkUpdate.ts │ ├── lineDownloader.ts │ ├── sqlHandler.ts │ └── stickerHandler.ts ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /assets/PSD/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/PSD/banner.psd -------------------------------------------------------------------------------- /assets/PSD/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/PSD/icon.psd -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/banner_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/banner_transparent.png -------------------------------------------------------------------------------- /assets/github-mark/github-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/github-mark/github-mark-white.png -------------------------------------------------------------------------------- /assets/github-mark/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/github-mark/github-mark-white.svg -------------------------------------------------------------------------------- /assets/github-mark/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/github-mark/github-mark.png -------------------------------------------------------------------------------- /assets/github-mark/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/github-mark/github-mark.svg -------------------------------------------------------------------------------- /assets/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/icon-16x16.png -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/assets/icon.png -------------------------------------------------------------------------------- /copy-native-dlls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/copy-native-dlls.js -------------------------------------------------------------------------------- /dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/dist/index.css -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/forge.config.js -------------------------------------------------------------------------------- /img/ChooseATheme.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/ChooseATheme.gif -------------------------------------------------------------------------------- /img/ChooseFavorites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/ChooseFavorites.gif -------------------------------------------------------------------------------- /img/DiscordSendSticker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/DiscordSendSticker.gif -------------------------------------------------------------------------------- /img/DownloadLinePacks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/DownloadLinePacks.gif -------------------------------------------------------------------------------- /img/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/Main.png -------------------------------------------------------------------------------- /img/ManageAndSort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/img/ManageAndSort.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/package.json -------------------------------------------------------------------------------- /public/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/public/github-mark-white.svg -------------------------------------------------------------------------------- /public/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/public/icon-16x16.png -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/public/icon.ico -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/readme.md -------------------------------------------------------------------------------- /src/electron-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/electron-api.d.ts -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/preload.js -------------------------------------------------------------------------------- /src/render/addStickerModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/render/addStickerModal.ts -------------------------------------------------------------------------------- /src/render/menuBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/render/menuBar.ts -------------------------------------------------------------------------------- /src/render/settingsModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/render/settingsModal.ts -------------------------------------------------------------------------------- /src/render/stickerRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/render/stickerRenderer.ts -------------------------------------------------------------------------------- /src/render/updateModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/render/updateModal.ts -------------------------------------------------------------------------------- /src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/renderer.ts -------------------------------------------------------------------------------- /src/sticker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/sticker.d.ts -------------------------------------------------------------------------------- /src/utils/checkUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/utils/checkUpdate.ts -------------------------------------------------------------------------------- /src/utils/lineDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/utils/lineDownloader.ts -------------------------------------------------------------------------------- /src/utils/sqlHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/utils/sqlHandler.ts -------------------------------------------------------------------------------- /src/utils/stickerHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/src/utils/stickerHandler.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvNC/StampNyaa/HEAD/yarn.lock --------------------------------------------------------------------------------