diff options
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/data/options-util.js | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 7a725005..e2e4d739 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -465,7 +465,8 @@ class OptionsUtil { {async: true, update: this._updateVersion13.bind(this)}, {async: false, update: this._updateVersion14.bind(this)}, {async: false, update: this._updateVersion15.bind(this)}, - {async: false, update: this._updateVersion16.bind(this)} + {async: false, update: this._updateVersion16.bind(this)}, + {async: false, update: this._updateVersion17.bind(this)} ]; if (typeof targetVersion === 'number' && targetVersion < result.length) { result.splice(targetVersion); @@ -898,4 +899,29 @@ class OptionsUtil { } return options; } + + _updateVersion17(options) { + // Version 17 changes: + // Added vertical sentence punctuation to terminationCharacters. + const additions = ['︒', '︕', '︖', '︙']; + for (const profile of options.profiles) { + const {terminationCharacters} = profile.options.sentenceParsing; + const newAdditions = []; + for (const character of additions) { + if (terminationCharacters.findIndex((value) => (value.character1 === character && value.character2 === null)) < 0) { + newAdditions.push(character); + } + } + for (const character of newAdditions) { + terminationCharacters.push({ + enabled: true, + character1: character, + character2: null, + includeCharacterAtStart: false, + includeCharacterAtEnd: true + }); + } + } + return options; + } } |