From dd3e346313b709c8e2f06771c40964cb963f3713 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 16:35:14 +0200 Subject: [PATCH 1/4] fixed onStartup inconsistency --- src/background.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/background.js b/src/background.js index 8def5a0..d3d3c84 100644 --- a/src/background.js +++ b/src/background.js @@ -131,9 +131,6 @@ const sync = () => // Get user level level = user.data.level - // If the users level is somehow larger than their max allowed level, set the flag - - // if users level is larger than max allowed level, abort if(level > user.data.subscription.max_level_granted) { @@ -141,7 +138,7 @@ const sync = () => return reject("User account level exceeds account level limit") } - // If the wanikani level differs from the local leve, update the cache + // If the wanikani level differs from the local level, update the cache if(level !== data.level) updateCache(data.token, data.level, level) @@ -165,4 +162,6 @@ chrome.runtime.onMessage.addListener((data, sender, sendResponse) => { }) // At browser start, sync with wanikani -sync().then(value => console.log(value)).catch(reason => {}) \ No newline at end of file +chrome.runtime.onStartup.addListener(() => { + sync().then(value => console.log(value)).catch(reason => {}) +}) \ No newline at end of file From 676a6abe4e486b5e7e6b044d82468ceaf9b5092b Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 16:37:47 +0200 Subject: [PATCH 2/4] level number updates in realtime --- src/background.js | 2 +- src/popup.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/background.js b/src/background.js index d3d3c84..343f372 100644 --- a/src/background.js +++ b/src/background.js @@ -140,7 +140,7 @@ const sync = () => // If the wanikani level differs from the local level, update the cache if(level !== data.level) - updateCache(data.token, data.level, level) + await updateCache(data.token, data.level, level) chrome.storage.local.set({"validUserLevel": true}) resolve("Successfully synchronized data!") diff --git a/src/popup.js b/src/popup.js index 5fa342f..faf61a8 100644 --- a/src/popup.js +++ b/src/popup.js @@ -68,6 +68,12 @@ submitButton.addEventListener( "click", () => { { statusField.innerHTML = String.fromCodePoint(0x2705) errorField.innerHTML = "" + + // Update the users current WaniKani level + chrome.storage.local.get("level", (data) => { + const levelSpan = document.getElementById("level") + levelSpan.innerHTML = data.level + }) } else { From e00529f8174dcdcee63167c9177650bf2d2b6da8 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 16:51:37 +0200 Subject: [PATCH 3/4] kanji list now updates correctly --- src/background.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/background.js b/src/background.js index 343f372..10169f0 100644 --- a/src/background.js +++ b/src/background.js @@ -92,7 +92,6 @@ const updateCache = async (token, oldLevel, newLevel) => { // Extract Kanji as well var url = "https://api.wanikani.com/v2/subjects?types=kanji&levels=" + levelURLString - var kanji = new Set() do { From c994bc15921570b17a20eb82873034ef31ac7232 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Wed, 30 Mar 2022 16:53:35 +0200 Subject: [PATCH 4/4] v0.6.3 --- VERSIONS.md | 7 ++++++- manifest.json | 2 +- popup.html | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/VERSIONS.md b/VERSIONS.md index 50d2387..c133214 100644 --- a/VERSIONS.md +++ b/VERSIONS.md @@ -5,4 +5,9 @@ * Fixed error appearing right after installing extension ## v0.6.2 - * Added color transitions to buttons and links in the popup \ No newline at end of file + * Added color transitions to buttons and links in the popup + +## v0.6.3 + * Startup sync check is now more consistent + * Level number updates in realtime after sync + * Fixed bug where internal Kanji list would get reset on sync \ No newline at end of file diff --git a/manifest.json b/manifest.json index a7833d9..993cb8a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "FuriKani", "description": "Removes furigana on websites based on your WaniKani level", - "version": "0.6.2", + "version": "0.6.3", "icons": { "16": "res/icon16.png", "48": "res/icon48.png", diff --git a/popup.html b/popup.html index 15ffb65..e0b55f4 100644 --- a/popup.html +++ b/popup.html @@ -6,7 +6,7 @@

FuriKani

-

v0.6.2

+

v0.6.3