From 87e38bcafcdbf864cfb738b94c674c38b869de95 Mon Sep 17 00:00:00 2001 From: Andrew Fyfe Date: Sat, 28 Mar 2015 12:24:13 +0000 Subject: [PATCH 1/3] writers needs converted back to an array before saving fixes #130 --- resources/js/app/common/xbmc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/js/app/common/xbmc.js b/resources/js/app/common/xbmc.js index 5f31663..dbf257a 100644 --- a/resources/js/app/common/xbmc.js +++ b/resources/js/app/common/xbmc.js @@ -93,6 +93,7 @@ function updateKodiTables(form, recordType, recordId) { case 'country': case 'studio': case 'director': + case 'writer': case 'genre': case 'tag': case 'theme': From 7a3924d74ef85a06e94f9481e4452a44c7e58ad6 Mon Sep 17 00:00:00 2001 From: Andrew Fyfe Date: Sat, 28 Mar 2015 12:25:48 +0000 Subject: [PATCH 2/3] if a delimiter isn't specified ExtJS dumps the record object into the variable instead :( --- resources/js/app/common/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/app/common/util.js b/resources/js/app/common/util.js index 92c8314..09a8b18 100644 --- a/resources/js/app/common/util.js +++ b/resources/js/app/common/util.js @@ -43,7 +43,7 @@ WIMM.util.convertArrayToList = function(value, delim) { return ''; } else { - if (delim === undefined) { + if (delim === undefined || typeof(delim) === 'object') { delim = ' / '; } From 33c7ca49beaa085222dbc966591b0fdcb4352bd7 Mon Sep 17 00:00:00 2001 From: Andrew Fyfe Date: Sat, 28 Mar 2015 12:27:48 +0000 Subject: [PATCH 3/3] version bump --- addon.xml | 2 +- changelog.txt | 10 +++++++--- resources/js/app/common/global.js | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/addon.xml b/addon.xml index 4e5d95e..1fbf634 100644 --- a/addon.xml +++ b/addon.xml @@ -1,7 +1,7 @@ diff --git a/changelog.txt b/changelog.txt index 17b1d6b..afc8ca6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,13 +1,17 @@ # WIMM Changelog +4.1.18 + - Writers needs converted back to an array before saving (Issue #130) + - If a delimiter isn't specified ExtJS dumps the record object into the variable instead :( + 4.1.17 - Remove version number from addon folder (Issue #129) 4.1.16 - - Add missing graphic flags - + - Add missing graphic flags + 4.1.15 - - Fix genre rules operator + - Fix genre rules operator 4.1.14 - Fix music genre field not being split correctly (Issue #120) diff --git a/resources/js/app/common/global.js b/resources/js/app/common/global.js index 709a91f..f819f22 100644 --- a/resources/js/app/common/global.js +++ b/resources/js/app/common/global.js @@ -22,7 +22,7 @@ * along with WIMM. If not, see . */ -var myVersion = '4.1.17'; +var myVersion = '4.1.18'; /** * Protect window.console method calls, e.g. console is not defined on IE