Skip to content

Commit

Permalink
[gui] Release v2.0.0
Browse files Browse the repository at this point in the history
See docs/RELEASE.md for release notes
  • Loading branch information
chiragsakhuja committed Jan 9, 2021
1 parent 5063f1c commit cbe0c0b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
15 changes: 10 additions & 5 deletions src/gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"pack:renderer": "cross-env NODE_ENV=production webpack --progress --colors --config .electron-vue/webpack.renderer.config.js",
"postinstall": "electron-builder install-app-deps",
"lc3": "yarn add file:./local_modules/lc3interface",
"release": "build"
"release": "node .electron-vue/build.js && electron-builder --publish always"
},
"extraResources": "",
"buildResources": "static",
Expand Down Expand Up @@ -50,13 +50,18 @@
]
},
"mac": {
"icon": "static/icons/icon.icns"
"icon": "static/icons/icon.icns",
"category": "public.app-category.developer-tools",
"target": "dmg"
},
"win": {
"icon": "static/icons/icon.ico"
"icon": "static/icons/icon.ico",
"target": "nsis"
},
"linux": {
"icon": "static/icons"
"icon": "static/icons",
"category": "Development",
"target": "AppImage"
},
"publish": {
"provider": "github",
Expand Down Expand Up @@ -94,7 +99,7 @@
"css-loader": "^0.28.4",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^3.1.13",
"electron": "^4.2.12",
"electron-builder": "^21.2.0",
"electron-debug": "^1.5.0",
"electron-devtools-installer": "^2.2.4",
Expand Down
14 changes: 8 additions & 6 deletions src/gui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@
version "4.1.5"
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd"

"@types/node@^10.1.4":
"@types/node@^10.12.18":
version "10.17.50"
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.50.tgz#7a20902af591282aa9176baefc37d4372131c32d"
integrity sha512-vwX+/ija9xKc/z9VqMCdbf4WYcMTGsI0I/L/6shIF3qXURxZOhPQlPRHtjTpiNhAwn0paMJzlOQqw6mAGEQnTA==

"@types/semver@^7.3.1":
version "7.3.4"
Expand Down Expand Up @@ -2648,11 +2649,12 @@ electron-updater@^4.3.5:
lodash.isequal "^4.5.0"
semver "^7.3.2"

electron@^3.1.13:
version "3.1.13"
resolved "https://registry.yarnpkg.com/electron/-/electron-3.1.13.tgz#aeb276f4cf5e3785078b6495e982ee46d553a5d2"
electron@^4.2.12:
version "4.2.12"
resolved "https://registry.yarnpkg.com/electron/-/electron-4.2.12.tgz#8e8926a6a6654cde5eb0612952fed98a56941875"
integrity sha512-EES8eMztoW8gEP5E4GQLP8slrfS2jqTYtHbu36mlu3k1xYAaNPyQQr6mCILkYxqj4l3la4CT2Vcs89CUG62vcQ==
dependencies:
"@types/node" "^10.1.4"
"@types/node" "^10.12.18"
electron-download "^4.1.0"
extract-zip "^1.0.3"

Expand Down Expand Up @@ -4274,7 +4276,7 @@ lazy-val@^1.0.4:
resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.4.tgz#882636a7245c2cfe6e0a4e3ba6c5d68a137e5c65"

"lc3interface@file:./local_modules/lc3interface":
version "1.0.0"
version "2.0.0"
dependencies:
nan "^2.7.0"
prebuild "^7.4.0"
Expand Down

0 comments on commit cbe0c0b

Please sign in to comment.