Skip to content

Commit

Permalink
Updated to krill-ui v0.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ximon18 authored and Tim Bruijnzeels committed Dec 6, 2023
1 parent 1e5348c commit 6de97a3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ or the server is rebooted in the middle of writing. This issue was introduced
in release 0.14.0, and we recommend that all users upgrade to this version
to avoid issues.

This release also includes:
- Updated German UI translations krill-ui/#51

## 0.14.2 'Extra, Extra, Extra!'

This release fixes an additional corner case in the migration code that affects
Expand Down
8 changes: 4 additions & 4 deletions src/daemon/http/statics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ pub async fn statics(req: Request) -> RoutingResult {

"/assets/favicon-f84116cb.ico" => Ok(HttpResponse::fav(FAVICON)),

"/assets/index-0659e542.js" => Ok(HttpResponse::js(JS_INDEX)),
"/assets/index-16c05fa1.js" => Ok(HttpResponse::js(JS_INDEX)),

"/assets/en-d3d88bc8.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_ENGLISH)),
"/assets/de-aaa0f1e4.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_GERMAN)),
"/assets/de-faf2935a.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_GERMAN)),
"/assets/es-52cbfc21.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_SPANISH)),
"/assets/fr-ac1aafd8.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_FRENCH)),
"/assets/gr-5a66c94a.js" => Ok(HttpResponse::js(JS_TRANSLATIONS_GREEK)),
Expand Down Expand Up @@ -70,9 +70,9 @@ pub static INDEX: &[u8] = include_bytes!("../../../ui/index.html");

static FAVICON: &[u8] = include_bytes!("../../../ui/assets/favicon-f84116cb.ico");

static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-0659e542.js");
static JS_INDEX: &[u8] = include_bytes!("../../../ui/assets/index-16c05fa1.js");

static JS_TRANSLATIONS_GERMAN: &[u8] = include_bytes!("../../../ui/assets/de-aaa0f1e4.js");
static JS_TRANSLATIONS_GERMAN: &[u8] = include_bytes!("../../../ui/assets/de-faf2935a.js");
static JS_TRANSLATIONS_ENGLISH: &[u8] = include_bytes!("../../../ui/assets/en-d3d88bc8.js");
static JS_TRANSLATIONS_SPANISH: &[u8] = include_bytes!("../../../ui/assets/es-52cbfc21.js");
static JS_TRANSLATIONS_FRENCH: &[u8] = include_bytes!("../../../ui/assets/fr-ac1aafd8.js");
Expand Down
1 change: 0 additions & 1 deletion ui/assets/de-aaa0f1e4.js

This file was deleted.

Loading

0 comments on commit 6de97a3

Please sign in to comment.