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 cb7946f7..cb58206f 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -460,7 +460,8 @@ class OptionsUtil {              {async: true,  update: this._updateVersion8.bind(this)},              {async: false, update: this._updateVersion9.bind(this)},              {async: true,  update: this._updateVersion10.bind(this)}, -            {async: true,  update: this._updateVersion11.bind(this)} +            {async: false, update: this._updateVersion11.bind(this)}, +            {async: false, update: this._updateVersion12.bind(this)}          ];      } @@ -811,4 +812,15 @@ class OptionsUtil {          }          return options;      } + +    _updateVersion12(options) { +        // Version 12 changes: +        //  Changed sentenceParsing.enableTerminationCharacters to sentenceParsing.terminationCharacterMode. +        for (const profile of options.profiles) { +            const {sentenceParsing} = profile.options; +            sentenceParsing.terminationCharacterMode = sentenceParsing.enableTerminationCharacters ? 'custom' : 'newlines'; +            delete sentenceParsing.enableTerminationCharacters; +        } +        return options; +    }  }  |