summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/notes/update-1.8.0.php12
-rw-r--r--app/ui/update.php2
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>