mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2025-12-11 13:26:16 +00:00
fix: key text showing focus outline
fix: layout selectable
This commit is contained in:
@@ -8,6 +8,9 @@ const de = {
|
||||
REDO: "Wiederholen",
|
||||
SAVE: "Speichern",
|
||||
},
|
||||
update: {
|
||||
TITLE: "Gerät aktualisieren",
|
||||
},
|
||||
sync: {
|
||||
TITLE_READ: "Neueste Änderungen werden abgerufen",
|
||||
TITLE_WRITE: "Änderungen werden gespeichert",
|
||||
|
||||
@@ -8,6 +8,9 @@ const en = {
|
||||
REDO: "Redo",
|
||||
SAVE: "Save",
|
||||
},
|
||||
update: {
|
||||
TITLE: "Update your device",
|
||||
},
|
||||
backup: {
|
||||
TITLE: "Store History",
|
||||
INDIVIDUAL: "Individual backups",
|
||||
|
||||
@@ -56,6 +56,7 @@
|
||||
|
||||
text {
|
||||
will-change: translate, scale;
|
||||
user-select: none;
|
||||
transform-origin: center;
|
||||
transform-box: fill-box;
|
||||
transition:
|
||||
@@ -64,4 +65,8 @@
|
||||
translate #{$transition} ease,
|
||||
scale #{$transition} ease;
|
||||
}
|
||||
|
||||
text:focus-within {
|
||||
outline: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
6
src/routes/api/firmware/+page.json
Normal file
6
src/routes/api/firmware/+page.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"CHARACHORDER ONE M0": {
|
||||
"latest": "1.1.3",
|
||||
"next": null
|
||||
}
|
||||
}
|
||||
7
src/routes/update-guide/+page.svelte
Normal file
7
src/routes/update-guide/+page.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script lang="ts">
|
||||
import {LL} from "../../i18n/i18n-svelte"
|
||||
</script>
|
||||
|
||||
<h1>{$LL.update.TITLE()}</h1>
|
||||
|
||||
<a href="https://github.com/CharaChorder/CCOS-firmware/blob/main/CHANGELOG.md" target="_blank">Changelog</a>
|
||||
Reference in New Issue
Block a user