2
0
Fork 0
mirror of https://github.com/WebTools-NG/WebTools-NG synced 2025-02-03 05:33:23 +00:00

Windows icon now present

This commit is contained in:
ukdtom 2020-08-24 13:21:06 +02:00
parent a5aeb1d3dd
commit 31211c9470
4 changed files with 10 additions and 14 deletions

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "webtools-ng",
"version": "0.1.1",
"version": "0.1.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -3,6 +3,8 @@
"version": "0.1.2",
"description": "WebTools Next Generation 4 Plex",
"author": "dane22 & CPSO",
"license": "MPL-2.0",
"homepage": "https://github.com/WebTools-NG/WebTools-NG",
"private": true,
"scripts": {
"serve": "vue-cli-service electron:serve",

Binary file not shown.

Before

Width: 32px  |  Height: 32px  |  Size: 4.2 KiB

View file

@ -9,27 +9,21 @@ module.exports = {
enableInSFC: false
},
electronBuilder: {
builderOptions: {
builderOptions: {
appId: "com.webtools.webtools-ng",
"extraResources": [
{
"from": "./public/locales",
"to": "locales"
}
],
"linux": {
"category": "Utility"
linux: {
category: "Utility"
},
win: {
icon: 'src/assets/WebTools-512.png'
}
}
}
}
// ,
// chainWebpack: config => {
// config
// .plugin('html')
// .tap(args => {
// let v = JSON.stringify(require('./package.json').version)
// args[0]['process.env']['VERSION'] = v
// return args;
// })
// }
}