Merge pull request #669 from chme/web

Update player webinterface (v0.4.2)
This commit is contained in:
Christian Meffert
2019-01-23 10:05:50 +01:00
committed by GitHub
10 changed files with 1298 additions and 720 deletions

View File

@@ -130,7 +130,13 @@ var app = new Vue({
console.log('Websocket disabled');
return;
}
var socket = new WebSocket('ws://' + document.domain + ':' + this.config.websocket_port, 'notify');
var protocol = 'ws://'
if (window.location.protocol === 'https:') {
protocol = 'wss://'
}
var socket = new WebSocket(protocol + document.domain + ':' + this.config.websocket_port, 'notify');
const vm = this;
socket.onopen = function() {
socket.send(JSON.stringify({ notify: ['update', 'pairing', 'spotify', 'lastfm', 'outputs']}));

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1949
web-src/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "forked-daapd-web",
"version": "0.4.1",
"version": "0.4.2",
"description": "forked-daapd web interface",
"author": "chme <christian.meffert@googlemail.com>",
"license": "GPL-2.0",
@@ -15,24 +15,24 @@
"axios": "^0.18.0",
"bulma": "^0.7.1",
"mdi": "^2.1.99",
"moment": "^2.23.0",
"moment": "^2.24.0",
"moment-duration-format": "^2.2.2",
"npm": "^6.5.0",
"npm": "^6.6.0",
"reconnectingwebsocket": "^1.0.0",
"spotify-web-api-js": "^1.1.1",
"vue": "^2.5.21",
"vue": "^2.5.22",
"vue-infinite-loading": "^2.4.3",
"vue-progressbar": "^0.7.4",
"vue-range-slider": "^0.6.0",
"vue-router": "^3.0.2",
"vuedraggable": "^2.17.0",
"vuex": "^3.0.1"
"vuex": "^3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.2",
"@vue/cli-plugin-eslint": "^3.2.2",
"@vue/cli-service": "^3.2.3",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.1",
"@vue/eslint-config-standard": "^3.0.5",
"vue-template-compiler": "^2.5.21"
"vue-template-compiler": "^2.5.22"
}
}

View File

@@ -86,8 +86,13 @@ export default {
const vm = this
var protocol = 'ws://'
if (window.location.protocol === 'https:') {
protocol = 'wss://'
}
var socket = new ReconnectingWebSocket(
'ws://' + window.location.hostname + ':' + vm.$store.state.config.websocket_port,
protocol + window.location.hostname + ':' + vm.$store.state.config.websocket_port,
'notify',
{ reconnectInterval: 3000 }
)