feat(gui): add changelog link to update notifier (#920)

We add a blue clickable link to the Github changelog in the update dialog
modal.

Closes: https://github.com/resin-io/etcher/issues/905
Change-Type: patch
Changelog-Entry: Add a changelog link to the update notifier modal.
This commit is contained in:
Benedict Aas 2016-12-05 14:55:33 +00:00 committed by Juan Cruz Viotti
parent 0c1f9e93ba
commit ae6b707bb4
3 changed files with 9 additions and 0 deletions

View File

@ -6240,6 +6240,8 @@ body {
padding: 0;
max-height: 250px;
overflow: auto; }
.modal-body a {
color: #5793db; }
.modal-body .list-group {
padding: 0 20px; }
.modal-body .list-group-item {

View File

@ -44,6 +44,10 @@
max-height: 250px;
overflow: auto;
a {
color: $palette-theme-primary-background;
}
.list-group {
padding: 0 20px;
}

View File

@ -6,6 +6,9 @@
<div class="modal-body">
<div class="modal-text">
<p>A new version of Etcher is available for download</p>
<a os-open-external="https://github.com/resin-io/etcher/blob/master/CHANGELOG.md#readme">
See what's new
</a>
</div>
</div>