From 25c5a4a8777b8ee57e8c9f9352b794dea6dcf8be Mon Sep 17 00:00:00 2001 From: "kbuffington@gmail.com" Date: Fri, 10 Jul 2020 20:17:37 -0500 Subject: [PATCH] v1.1.9 release - Bug fix release --- changelog.md | 7 ++++++- js/globals.js | 5 ++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 93624ce1..52fc9ed0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,11 @@ -### v1.1.9 - 2020-??-?? +### v1.1.9 - 2020-07-10 - Fix library panel not showing tracks with foo_jscript_panel 2.4.x - Allow specifying a custom cdart filename + - No longer show "0000" for date + - Allow override of playlist row_h + - Fix issues related to font-sizes in playlist header + - Prevent labels in playlist header from being drawn over group info + - Handle hyperlinks searching for albums with editions listed ### v1.1.8 - 2020-05-09 - Random now actually randomizes playlist diff --git a/js/globals.js b/js/globals.js index d635fd0e..915a024b 100644 --- a/js/globals.js +++ b/js/globals.js @@ -2,7 +2,7 @@ var globals = PanelProperties.get_instance(); var pref = PanelProperties.get_instance(); // preferences var tf = PanelProperties.get_instance(); // titleformating strings -var currentVersion = '1.1.8'; +var currentVersion = '1.1.9'; var updateAvailable = false; var updateHyperlink; @@ -51,7 +51,7 @@ pref.add_properties({ menu_font_size: ['Menu font size', 12], freq_update: ['Frequent progress bar updates', true], // true: update progress bar multiple times a second. Smoother, but uses more CPU - hyperlinks_ctrl: ['Playlist: Hyperlinks require CTRL Key', false], // true: clicking on hyperlinks only works if CTRL key is held down + hyperlinks_ctrl: ['Playlist: Hyperlinks require CTRL Key', false], // true: clicking on hyperlinks only works if CTRL key is held down darkMode: ['Use Dark Theme', true], // true: use a darker background use_4k: ['Detect 4k', 'auto'], // auto: switch to 4k mode when window width wide enough, never: never use 4k mode, always: always use 4k mode checkForUpdates: ['Check for Updates', true], // true: check github repo to determine if updates exist @@ -238,7 +238,6 @@ function migrateCheck(version, storedVersion) { case '1.1.5': tf.date = null; tf.year = null; - pref.time_zone = null; case '1.1.6': case '1.1.7':