Hotfix buildout

This commit is contained in:
James Barnsley
2017-11-29 08:34:42 +13:00
parent 6405f19b8b
commit 709542bff7
10 changed files with 19 additions and 30 deletions

View File

@ -1 +1 @@
3.8.7
3.8.8

View File

@ -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

View File

@ -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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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

View File

@ -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>",

View File

@ -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

View File

@ -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);
}
}