diff options
Diffstat (limited to 'ext/js/data/options-util.js')
-rw-r--r-- | ext/js/data/options-util.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index e2fd2789..2dc23229 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -543,7 +543,8 @@ export class OptionsUtil { this._updateVersion33, this._updateVersion34, this._updateVersion35, - this._updateVersion36 + this._updateVersion36, + this._updateVersion37 ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1296,6 +1297,14 @@ export class OptionsUtil { } /** + * - Removed `No pitch accent data` return from pitch handlebars when no data is found + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion37(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v37.handlebars'); + } + + /** * @param {string} url * @returns {Promise<chrome.tabs.Tab>} */ |