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 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 = ' / '; } 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':