diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-11-09 22:11:41 +0100 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-11-09 22:11:41 +0100 |
commit | e3aa7eafa663ab94c77695c3e0f2fe88874480ad (patch) | |
tree | 7c314c01d552957379f447772f8506b88c9543a2 /app | |
parent | 492cb3104fabe1b54f360d2a0ea57de60674f404 (diff) | |
download | mist-e3aa7eafa663ab94c77695c3e0f2fe88874480ad.tar.gz mist-e3aa7eafa663ab94c77695c3e0f2fe88874480ad.tar.bz2 mist-e3aa7eafa663ab94c77695c3e0f2fe88874480ad.zip |
Updated 36 files and added 2 files (automated)
Diffstat (limited to 'app')
-rw-r--r-- | app/notes/update-1.8.0.php | 12 | ||||
-rw-r--r-- | app/ui/update.php | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/app/notes/update-1.8.0.php b/app/notes/update-1.8.0.php new file mode 100644 index 0000000..dced852 --- /dev/null +++ b/app/notes/update-1.8.0.php @@ -0,0 +1,12 @@ +<?php if (!isset($releaseNotes)) die(); ?> +<h2 style="margin-top: 30px;">What's new in Mist?</h2> + +<div style="text-align: left; margin-top: 50px;"> + <div style="display: grid; grid-template-columns: 48px 1fr; grid-gap: 20px; margin-bottom: 20px;"> + <img src="/assets/icons/notes-icons.svg" style="width: 48px;" class="icon" alt=""> + <div> + <div><b>New application icons</b></div> + <div>We made the icons in the app look more modern and more in-line with what Mist aims to be, hope you enjoy them.</div> + </div> + </div> +</div>
\ No newline at end of file diff --git a/app/ui/update.php b/app/ui/update.php index 3915992..7484ae5 100644 --- a/app/ui/update.php +++ b/app/ui/update.php @@ -25,7 +25,7 @@ <script src="/assets/js/common.js"></script> <div style="padding: 1rem;"> <div style="text-align: center;"> - <?php $releaseNotes = true; require_once "../notes/update-1.7.2.php" ?> + <?php $releaseNotes = true; require_once "../notes/update-1.8.0.php" ?> <a style="margin-top: 50px; margin-bottom: 30px; display: block;" class="btn btn-primary" onclick="localStorage.setItem('lastUpdate', '<?= trim(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/version")) ?>'); window.parent._modal.hide();">Continue</a> </div> |