diff options
Diffstat (limited to 'ext/js/data')
| -rw-r--r-- | ext/js/data/options-util.js | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 30ffadb1..c8ab2d01 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -463,7 +463,8 @@ class OptionsUtil {              {async: false, update: this._updateVersion11.bind(this)},              {async: true,  update: this._updateVersion12.bind(this)},              {async: true,  update: this._updateVersion13.bind(this)}, -            {async: false, update: this._updateVersion14.bind(this)} +            {async: false, update: this._updateVersion14.bind(this)}, +            {async: false, update: this._updateVersion15.bind(this)}          ];          if (typeof targetVersion === 'number' && targetVersion < result.length) {              result.splice(targetVersion); @@ -876,4 +877,15 @@ class OptionsUtil {          }          return options;      } + +    _updateVersion15(options) { +        // Version 15 changes: +        //  Added general.sortFrequencyDictionary. +        //  Added general.sortFrequencyDictionaryOrder. +        for (const profile of options.profiles) { +            profile.options.general.sortFrequencyDictionary = null; +            profile.options.general.sortFrequencyDictionaryOrder = 'descending'; +        } +        return options; +    }  } |