From 5f6d3e3d3d79a61fb06e7e7493592ecd764d1365 Mon Sep 17 00:00:00 2001 From: labuzm Date: Sun, 20 Jan 2019 01:13:22 +0100 Subject: [PATCH 1/2] Fix typo --- mopidy_iris/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_iris/system.py b/mopidy_iris/system.py index 0d9e0f20..0b07128b 100755 --- a/mopidy_iris/system.py +++ b/mopidy_iris/system.py @@ -57,6 +57,6 @@ class IrisSystemThread(Thread): # Some kind of failure, so we can't run any commands this way if exitCode > 0: - raise Exception("Password-less access to "+path+"/system.sh was refused. Check your /etc/sudoers file.") + raise Exception("Password-less access to "+self.path+"/system.sh was refused. Check your /etc/sudoers file.") else: return True From d2c04b7bc56d6fa0a6ba709991548e5f542ca3cb Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Tue, 19 Feb 2019 20:36:17 +1300 Subject: [PATCH 2/2] Releasing 3.32.5 --- mopidy_iris/__init__.py | 2 +- mopidy_iris/static/index.html | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mopidy_iris/__init__.py b/mopidy_iris/__init__.py index a05a0304..68f45e73 100755 --- a/mopidy_iris/__init__.py +++ b/mopidy_iris/__init__.py @@ -12,7 +12,7 @@ from handlers import WebsocketHandler, HttpHandler from core import IrisCore logger = logging.getLogger(__name__) -__version__ = '3.32.4' +__version__ = '3.32.5' ## # Core extension class diff --git a/mopidy_iris/static/index.html b/mopidy_iris/static/index.html index ca773869..e24556d3 100644 --- a/mopidy_iris/static/index.html +++ b/mopidy_iris/static/index.html @@ -98,8 +98,8 @@ // Release details // These are automatically injected to built HTML - var build = "1550561376"; - var version = "3.32.4"; + var build = "1550561713"; + var version = "3.32.5"; // Construct the script tag var js = document.createElement("script"); diff --git a/package.json b/package.json index 5c313385..fa06dc5e 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mopidy-iris", - "version": "3.32.4", + "version": "3.32.5", "description": "Mopidy HTTP interface", "repository": "https://github.com/jaedb/iris", "author": "James Barnsley ",