Compare commits

..

9 Commits

Author SHA1 Message Date
Lea Anthony
ea377ed2c3 Add contributors 2020-01-02 08:36:12 +11:00
Lea Anthony
6c1baac7f4 Merge branch 'develop' into vuetify2-support 2020-01-02 07:24:53 +10:00
Travis McLane
b8bfe24340 fix: babel -> core-js, regenerator-runtime 2020-01-01 15:08:11 -06:00
Travis McLane
7352e9d6a2 fix: codacy corrections 2020-01-01 15:01:43 -06:00
Michael Hipp
245f678aa1 Remove babel-polyfill, add mdi/font 2019-12-31 09:01:11 -06:00
Michael Hipp
ef99dc592b Update App.vue, HelloWorld.vue for Vuetify v2 2019-12-31 09:01:11 -06:00
Michael Hipp
e93103ed6b Get vuetify2 template installing vuetify v2.0 (but with styling probs) 2019-12-31 09:01:11 -06:00
Michael Hipp
46c1e81a20 Change template descr of vuetify-basic to say Vuetify 1.5 2019-12-31 09:01:11 -06:00
Michael Hipp
702b475a3b Initial create of vuetify2-basic folder 2019-12-31 09:01:10 -06:00
7 changed files with 10 additions and 7 deletions

View File

@@ -22,4 +22,4 @@ Wails is what it is because of the time and effort given by these great people.
* [Kris Raney](https://github.com/kraney)
* [Jack Mordaunt](https://github.com/JackMordaunt)
* [Michael Hipp](https://github.com/MichaelHipp)
* [Travis McLane](https://github.com/tmclane)
* [Travis McLane](https://github.com/tmclane)

View File

@@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "npx ng",
"start": "npx ng serve --poll=2000 --host=0.0.0.0",
"start": "npx ng serve --poll=2000",
"build": "npx ng build --single-bundle true --output-hashing none --prod --bundle-styles false",
"test": "npx ng test",
"lint": "npx ng lint",

View File

@@ -37,6 +37,7 @@ module.exports = {
}
},
devServer: {
disableHostCheck: true
disableHostCheck: true,
host: "localhost"
}
};

View File

@@ -37,6 +37,7 @@ module.exports = {
}
},
devServer: {
disableHostCheck: true
disableHostCheck: true,
host: "localhost"
}
};

View File

@@ -37,6 +37,7 @@ module.exports = {
}
},
devServer: {
disableHostCheck: true
disableHostCheck: true,
host: 'localhost'
}
};

View File

@@ -1,4 +1,4 @@
package cmd
// Version - Wails version
const Version = "v1.0.2-pre2"
const Version = "v1.0.1"

View File

@@ -14,7 +14,7 @@ function init() {
window.wailsbridge = {
reconnectOverlay: null,
reconnectTimer: 300,
wsURL: 'ws://' + window.location.hostname + ':34115/bridge',
wsURL: 'ws://localhost:34115/bridge',
connectionState: null,
config: {},
websocket: null,