diff options
| author | Alex Yatskov <alex@foosoft.net> | 2016-09-27 22:01:08 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2016-09-27 22:01:08 -0700 | 
| commit | 071902cd057e4828afbc7082271dba1d3ccc1762 (patch) | |
| tree | 1d447437e2ece30912f895b677e40b12bd977df1 | |
| parent | e5aa5aa8d17d6d0e6d6bfd3228b7a91e9f1a2710 (diff) | |
Fixing bad dictionary data
| -rw-r--r-- | ext/bg/js/dictionary.js | 2 | ||||
| -rw-r--r-- | ext/manifest.json | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/ext/bg/js/dictionary.js b/ext/bg/js/dictionary.js index 4562c821..daab5ebd 100644 --- a/ext/bg/js/dictionary.js +++ b/ext/bg/js/dictionary.js @@ -20,7 +20,7 @@  class Dictionary {      constructor() {          this.db = null; -        this.dbVer = 1; +        this.dbVer = 2;          this.entities = null;      } diff --git a/ext/manifest.json b/ext/manifest.json index f8c55172..cd80c71c 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -1,7 +1,7 @@  {      "manifest_version": 2,      "name": "Yomichan", -    "version": "0.98", +    "version": "0.99",      "description": "Japanese dictionary with Anki integration",      "icons": {"16": "img/icon16.png", "48": "img/icon48.png", "128": "img/icon128.png"}, |