Hotfix buildout
This commit is contained in:
@ -1 +1 @@
|
||||
3.8.7
|
||||
3.8.8
|
||||
@ -13,7 +13,8 @@ from core import IrisCore
|
||||
from raven import Client
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
__version__ = '3.8.7'
|
||||
__version__ = '3.8.8
|
||||
'
|
||||
|
||||
##
|
||||
# Core extension class
|
||||
|
||||
@ -56438,8 +56438,11 @@ var App = function (_React$Component) {
|
||||
|
||||
// Check for url-parsed configuration values
|
||||
var url_vars = this.props.location.query;
|
||||
if (url_vars !== undefined) {
|
||||
this.props.mopidyActions.setConfig(url_vars);
|
||||
if (url_vars && url_vars.host && url_vars.port) {
|
||||
this.props.mopidyActions.setConfig({
|
||||
host: url_vars.host,
|
||||
port: url_vars.port
|
||||
});
|
||||
_reactRouter.hashHistory.push(global.baseURL);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
2
mopidy_iris/static/app.min.js
vendored
2
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -38,8 +38,8 @@
|
||||
|
||||
// Release details
|
||||
// These are automatically injected to built HTML
|
||||
var build = "1511896462";
|
||||
var version = "3.8.7";
|
||||
var build = "1511897635";
|
||||
var version = "3.8.8";
|
||||
|
||||
// Construct the script tag
|
||||
var js = document.createElement("script");
|
||||
@ -67,15 +67,6 @@
|
||||
} else {
|
||||
js.src = '/iris/app.min.js?v='+build;
|
||||
css.href = '/iris/app.min.css?v='+build;
|
||||
|
||||
// Initiate error tracking. This helps catch errors early so
|
||||
// patches can accurately and quickly fix issues.
|
||||
Raven.config(
|
||||
'https://023e3bf7721b48f29948545fc36a4621@sentry.io/219026',
|
||||
{
|
||||
release: version
|
||||
}
|
||||
).install();
|
||||
}
|
||||
|
||||
// And finally inject our CSS/JS tags
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mopidy-iris",
|
||||
"version": "3.8.7",
|
||||
"version": "3.8.8",
|
||||
"description": "Mopidy HTTP interface",
|
||||
"repository": "https://github.com/jaedb/iris",
|
||||
"author": "James Barnsley <james@barnsley.nz>",
|
||||
|
||||
@ -67,15 +67,6 @@
|
||||
} else {
|
||||
js.src = '/iris/app.min.js?v='+build;
|
||||
css.href = '/iris/app.min.css?v='+build;
|
||||
|
||||
// Initiate error tracking. This helps catch errors early so
|
||||
// patches can accurately and quickly fix issues.
|
||||
Raven.config(
|
||||
'https://023e3bf7721b48f29948545fc36a4621@sentry.io/219026',
|
||||
{
|
||||
release: version
|
||||
}
|
||||
).install();
|
||||
}
|
||||
|
||||
// And finally inject our CSS/JS tags
|
||||
|
||||
@ -66,8 +66,11 @@ class App extends React.Component{
|
||||
|
||||
// Check for url-parsed configuration values
|
||||
var url_vars = this.props.location.query;
|
||||
if (url_vars !== undefined){
|
||||
this.props.mopidyActions.setConfig(url_vars);
|
||||
if (url_vars && url_vars.host && url_vars.port){
|
||||
this.props.mopidyActions.setConfig({
|
||||
host: url_vars.host,
|
||||
port: url_vars.port
|
||||
});
|
||||
hashHistory.push(global.baseURL);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user