fix options versioning for real, bump version

This commit is contained in:
Alex Yatskov 2017-01-28 18:03:24 -08:00
parent 0f69843202
commit 2398b990af
2 changed files with 3 additions and 3 deletions

View File

@ -104,9 +104,9 @@ function optionsVersion(options) {
'{glossary-list}': '{glossary}'
};
for (let i = 0; i < fields.length; ++i) {
for (const name in fields) {
for (const fixup in fixups) {
fields[i] = value.replace(fields[i], fixups[fixup]);
fields[name] = fields[name].replace(fixup, fixups[fixup]);
}
}
};

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Yomichan",
"version": "1.0.5",
"version": "1.0.6",
"description": "Japanese dictionary with Anki integration",
"icons": {"16": "img/icon16.png", "48": "img/icon48.png", "128": "img/icon128.png"},