Remove genicon and Update files
2
.github/workflows/build.yml
vendored
@@ -23,5 +23,5 @@ jobs:
|
||||
run: |
|
||||
export GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
||||
yarn install
|
||||
yarn dist
|
||||
yarn dist -c.snap.publish=github
|
||||
shell: bash
|
||||
|
||||
3
.gitignore
vendored
@@ -2,4 +2,5 @@
|
||||
/.idea/
|
||||
/release/
|
||||
.DS_Store
|
||||
/assets/generated
|
||||
flatpak-node-generator.py
|
||||
generated-sources.json
|
||||
10
README.md
@@ -160,17 +160,15 @@ yarn install
|
||||
```bash
|
||||
$ yarn run
|
||||
yarn run v1.22.18
|
||||
info Commands available from binary scripts: asar, dircompare, ejs, electron, electron-builder, electron-icon-maker, electron-osx-flat, electron-osx-sign, extract-zip, icon-gen, install-app-deps, is-ci, jake, js-yaml, json5, mime, mkdirp, phantomjs, pixelmatch, rc, resolve, rimraf, semver, sshpk-conv, sshpk-sign, sshpk-verify, svg2png, uuid, which
|
||||
info Commands available from binary scripts: asar, dircompare, ejs, electron, electron-builder, electron-osx-flat, electron-osx-sign, extract-zip, install-app-deps, is-ci, jake, js-yaml, json5, mime, mkdirp, node-which, rc, rimraf, semver
|
||||
info Project commands
|
||||
- dist
|
||||
yarn genicon && electron-builder
|
||||
- genicon
|
||||
rm -rf ./assets/generated && electron-icon-maker --input=assets/icon.png --output=assets/generated
|
||||
electron-builder
|
||||
- pack
|
||||
yarn genicon && electron-builder --dir
|
||||
electron-builder --dir
|
||||
- start
|
||||
electron .
|
||||
question Which command would you like to run?:
|
||||
question Which command would you like to run?:
|
||||
```
|
||||
|
||||
To start the app, run `yarn start`<br>
|
||||
|
||||
BIN
assets/generated/icons/mac/icon.icns
Normal file
BIN
assets/generated/icons/png/1024x1024.png
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
assets/generated/icons/png/128x128.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
assets/generated/icons/png/16x16.png
Normal file
|
After Width: | Height: | Size: 642 B |
BIN
assets/generated/icons/png/24x24.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/generated/icons/png/256x256.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
assets/generated/icons/png/32x32.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/generated/icons/png/48x48.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
assets/generated/icons/png/512x512.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
assets/generated/icons/png/64x64.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
assets/generated/icons/win/icon.ico
Normal file
|
After Width: | Height: | Size: 353 KiB |
@@ -59,9 +59,8 @@
|
||||
},
|
||||
"scripts": {
|
||||
"start": "electron .",
|
||||
"genicon": "rm -rf ./assets/generated && electron-icon-maker --input=assets/icon.png --output=assets/generated",
|
||||
"pack": "yarn genicon && electron-builder --dir -c.snap.publish=github",
|
||||
"dist": "yarn genicon && electron-builder -c.snap.publish=github"
|
||||
"pack": "electron-builder --dir",
|
||||
"dist": "electron-builder"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
@@ -74,7 +73,6 @@
|
||||
"discord-rpc": "^4.0.1",
|
||||
"electron-context-menu": "^3.1.1",
|
||||
"electron-dl": "^3.3.1",
|
||||
"electron-icon-maker": "0.0.5",
|
||||
"electron-log": "^4.4.7",
|
||||
"electron-store": "^8.0.1",
|
||||
"electron-updater": "^5.0.1",
|
||||
|
||||