summaryrefslogtreecommitdiff
path: root/ext/js
diff options
context:
space:
mode:
authorKuuuube <61125188+Kuuuube@users.noreply.github.com>2024-05-21 13:08:27 -0400
committerGitHub <noreply@github.com>2024-05-21 17:08:27 +0000
commit6998ebeee2f68158428ee58de2e77fcf658e53ab (patch)
tree5ed1685c39d3b0c12cec7479098ab7d6095d45b5 /ext/js
parent1cdc1c943e54d1b1dbf7db71ac763044e3523616 (diff)
Remove No pitch accent data from pitch handlebars (#982)
* Remove No pitch accent data from pitch handlebars * Update tests * Fix newline
Diffstat (limited to 'ext/js')
-rw-r--r--ext/js/data/options-util.js11
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>}
*/