-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
94 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"changelog": [ | ||
{ | ||
"date": "25.03.2023", | ||
"note": "Release" | ||
}, | ||
{ | ||
"date": "06.05.2023", | ||
"note": "Warning for browsers with slow scanrate" | ||
}, | ||
{ | ||
"date": "26.06.2023", | ||
"note": "Controller Support, new FAQ entries" | ||
}, | ||
{ | ||
"date": "14.08.2023", | ||
"note": "New FAQ entries" | ||
}, | ||
{ | ||
"date": "09.11.2023", | ||
"note": "Revised text and added more info all over the site. Especially in the FAQ and helpful tips. New button linking to Mokeys big Superglide-Guide. Hid analytics when first opening the site, automatically expands when starting the training" | ||
}, | ||
{ | ||
"date": "15.11.2023", | ||
"note": "Holding shift no longer prevents other inputs" | ||
}, | ||
{ | ||
"date": "16.11.2023", | ||
"note": "Fixed ctrl and shift binds" | ||
}, | ||
{ | ||
"date": "24.11.2023", | ||
"note": "Fixed scrollwheel binds" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<script> | ||
import { changelogModalActive } from "$lib/stores"; | ||
import { toggleChgangelogModal } from "$lib/util"; | ||
import { changelog } from "../changelog.json"; | ||
</script> | ||
|
||
<div class:is-active={$changelogModalActive} class="modal"> | ||
<!-- svelte-ignore a11y-click-events-have-key-events --> | ||
<!-- svelte-ignore a11y-no-static-element-interactions --> | ||
<div class="modal-background" on:click={toggleChgangelogModal} /> | ||
<div class="modal-content"> | ||
<div class="box"> | ||
<p class="title has-text-centered">Changelog</p> | ||
<div class="content"> | ||
<table class="table is-narrow"> | ||
<tbody> | ||
{#each changelog as log} | ||
<tr> | ||
<th> | ||
<div class="icon-text is-flex-wrap-nowrap"> | ||
<span class="icon has-text-info"> | ||
<i class="far fa-calendar-alt" /> | ||
</span> | ||
<span>{log.date}</span> | ||
</div> | ||
</th> | ||
<td>{log.note}</td> | ||
</tr> | ||
{/each} | ||
</tbody> | ||
</table> | ||
</div> | ||
<footer> | ||
<button class="button" on:click={toggleChgangelogModal}>Close</button> | ||
</footer> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters