From 8c23154775ff0e173e541491b422d693d7a73a07 Mon Sep 17 00:00:00 2001 From: "kbuffington@gmail.com" Date: Sat, 22 May 2021 12:02:22 -0500 Subject: [PATCH] 2.0.3 release --- georgia-theme.js | 2 +- js/georgia-main.js | 4 ++-- js/settings.js | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/georgia-theme.js b/georgia-theme.js index c0828788..1c04f076 100644 --- a/georgia-theme.js +++ b/georgia-theme.js @@ -1,4 +1,4 @@ -const panelVersion = window.GetProperty('_theme_version (do not hand edit!)', '2.0.2'); +const panelVersion = window.GetProperty('_theme_version (do not hand edit!)', '2.0.3'); window.DefineScript('Georgia', {author: 'Mordred', version: panelVersion, features: {drag_n_drop: true} }); const basePath = fb.ProfilePath + 'georgia\\'; diff --git a/js/georgia-main.js b/js/georgia-main.js index 1f762996..f089cd68 100644 --- a/js/georgia-main.js +++ b/js/georgia-main.js @@ -2,9 +2,9 @@ // // Description a fullscreen theme for foo_spider_monkey_panel // Author Mordred -// Version 2.0.2 +// Version 2.0.3 // Dev. Started 2017-12-22 -// Last change 2021-03-26 +// Last change 2021-05-22 // -------------------------------------------------------------------------------------- // CONFIGURATION ////////////////////////////////////// diff --git a/js/settings.js b/js/settings.js index 241b20f2..68d65915 100644 --- a/js/settings.js +++ b/js/settings.js @@ -9,7 +9,7 @@ let transport = {}; /** @type {MetadataGridEntry[]} */ let metadataGrid; -const currentVersion = '2.0.3-dev'; +const currentVersion = '2.0.3'; let configVersion = currentVersion; // will be overwritten when loaded from config file let updateAvailable = false; let updateHyperlink; @@ -243,9 +243,9 @@ function migrateCheck(version, storedVersion) { case '2.0.2': case '2.0.3-dev': - window.setProperty('ADV.Limit Menu Expand: 10-6000', undefined); - window.setProperty('SYSTEM: Filter By', undefined); - window.setProperty('SYSTEM: View By', undefined); + window.SetProperty('ADV.Limit Menu Expand: 10-6000', undefined); + window.SetProperty('SYSTEM: Filter By', undefined); + window.SetProperty('SYSTEM: View By', undefined); // this block should appear after all previous versions have fallen through console.log('> Upgrading Georgia Theme settings from', storedVersion);