diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bg/js/backend.js | 2 | ||||
-rw-r--r-- | ext/data/audio/button.mp3 (renamed from ext/mixed/mp3/button.mp3) | bin | 17735 -> 17735 bytes | |||
-rw-r--r-- | ext/data/deinflect.json (renamed from ext/bg/lang/deinflect.json) | 0 | ||||
-rw-r--r-- | ext/data/fonts/kanji-stroke-orders.ttf (renamed from ext/mixed/ttf/kanji-stroke-orders.ttf) | bin | 17999116 -> 17999116 bytes | |||
-rw-r--r-- | ext/mixed/css/display.css | 2 | ||||
-rw-r--r-- | ext/mixed/js/audio-system.js | 2 |
6 files changed, 3 insertions, 3 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 3970fe2d..a1f5e6d1 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -207,7 +207,7 @@ class Backend { yomichan.logError(e); } - const deinflectionReasions = await this._fetchAsset('/bg/lang/deinflect.json', true); + const deinflectionReasions = await this._fetchAsset('/data/deinflect.json', true); this._translator.prepare(deinflectionReasions); await this._optionsUtil.prepare(); diff --git a/ext/mixed/mp3/button.mp3 b/ext/data/audio/button.mp3 Binary files differindex 7a9728d1..7a9728d1 100644 --- a/ext/mixed/mp3/button.mp3 +++ b/ext/data/audio/button.mp3 diff --git a/ext/bg/lang/deinflect.json b/ext/data/deinflect.json index a1ec6eb0..a1ec6eb0 100644 --- a/ext/bg/lang/deinflect.json +++ b/ext/data/deinflect.json diff --git a/ext/mixed/ttf/kanji-stroke-orders.ttf b/ext/data/fonts/kanji-stroke-orders.ttf Binary files differindex 154fa473..154fa473 100644 --- a/ext/mixed/ttf/kanji-stroke-orders.ttf +++ b/ext/data/fonts/kanji-stroke-orders.ttf diff --git a/ext/mixed/css/display.css b/ext/mixed/css/display.css index 476b2c35..bd381c6d 100644 --- a/ext/mixed/css/display.css +++ b/ext/mixed/css/display.css @@ -208,7 +208,7 @@ /* Fonts */ @font-face { font-family: kanji-stroke-orders; - src: url('/mixed/ttf/kanji-stroke-orders.ttf'); + src: url('/data/fonts/kanji-stroke-orders.ttf'); } diff --git a/ext/mixed/js/audio-system.js b/ext/mixed/js/audio-system.js index 0933d90e..cf63511f 100644 --- a/ext/mixed/js/audio-system.js +++ b/ext/mixed/js/audio-system.js @@ -35,7 +35,7 @@ class AudioSystem { getFallbackAudio() { if (this._fallbackAudio === null) { - this._fallbackAudio = new Audio('/mixed/mp3/button.mp3'); + this._fallbackAudio = new Audio('/data/audio/button.mp3'); } return this._fallbackAudio; } |