Skip to content

Commit

Permalink
v1.1.9 release - Bug fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffington committed Jul 11, 2020
1 parent de94b6f commit 25c5a4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions js/globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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':
Expand Down

0 comments on commit 25c5a4a

Please sign in to comment.