diff options
author | praschke <stel@comfy.monster> | 2023-10-17 21:21:30 +0100 |
---|---|---|
committer | praschke <stel@comfy.monster> | 2023-10-17 21:21:30 +0100 |
commit | 0506cfbee5443635ebd6ac79054b85f171775039 (patch) | |
tree | e81dad47651dc4f1c605b603a2f0de19547cad13 /ext | |
parent | c3be9af7b6f00dad7107fcdae60a8004cc81936a (diff) |
initial handlebars patch
Diffstat (limited to 'ext')
-rw-r--r-- | ext/data/templates/anki-field-templates-upgrade-v21.handlebars | 0 | ||||
-rw-r--r-- | ext/js/data/options-util.js | 8 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ext/data/templates/anki-field-templates-upgrade-v21.handlebars b/ext/data/templates/anki-field-templates-upgrade-v21.handlebars new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/ext/data/templates/anki-field-templates-upgrade-v21.handlebars diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 2674701f..7b050416 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -470,7 +470,8 @@ class OptionsUtil { {async: false, update: this._updateVersion17.bind(this)}, {async: false, update: this._updateVersion18.bind(this)}, {async: false, update: this._updateVersion19.bind(this)}, - {async: false, update: this._updateVersion20.bind(this)} + {async: false, update: this._updateVersion20.bind(this)}, + {async: true, update: this._updateVersion21.bind(this)} ]; if (typeof targetVersion === 'number' && targetVersion < result.length) { result.splice(targetVersion); @@ -997,4 +998,9 @@ class OptionsUtil { } return options; } + + async _updateVersion21(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v21.handlebars'); + return options; + } } |