aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/layout
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-20 23:50:22 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-20 23:50:22 +0100
commit2cbd938dce5901c2656c9aa128d600fba4ef209c (patch)
treee34974cb75cee440b2bff15f424cdf5800da775d /src/components/layout
parentMerge pull request #310 from meetfranz/feature/touchbar-app-crash (diff)
downloadferdium-app-2cbd938dce5901c2656c9aa128d600fba4ef209c.tar.gz
ferdium-app-2cbd938dce5901c2656c9aa128d600fba4ef209c.tar.zst
ferdium-app-2cbd938dce5901c2656c9aa128d600fba4ef209c.zip
feat(App): Add link to changelog in app update notification
Diffstat (limited to 'src/components/layout')
-rw-r--r--src/components/layout/AppLayout.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/layout/AppLayout.js b/src/components/layout/AppLayout.js
index f60c170a8..20dc2f764 100644
--- a/src/components/layout/AppLayout.js
+++ b/src/components/layout/AppLayout.js
@@ -23,6 +23,10 @@ const messages = defineMessages({
23 id: 'infobar.buttonReloadServices', 23 id: 'infobar.buttonReloadServices',
24 defaultMessage: '!!!Reload services', 24 defaultMessage: '!!!Reload services',
25 }, 25 },
26 changelog: {
27 id: 'infobar.buttonChangelog',
28 defaultMessage: '!!!Changelog',
29 },
26 buttonInstallUpdate: { 30 buttonInstallUpdate: {
27 id: 'infobar.buttonInstallUpdate', 31 id: 'infobar.buttonInstallUpdate',
28 defaultMessage: '!!!Restart & install update', 32 defaultMessage: '!!!Restart & install update',
@@ -135,7 +139,9 @@ export default class AppLayout extends Component {
135 sticky 139 sticky
136 > 140 >
137 <span className="mdi mdi-information" /> 141 <span className="mdi mdi-information" />
138 {intl.formatMessage(messages.updateAvailable)} 142 {intl.formatMessage(messages.updateAvailable)} <a href="https://meetfranz.com/changelog" target="_blank">
143 <u>{intl.formatMessage(messages.changelog)}</u>
144 </a>
139 </InfoBar> 145 </InfoBar>
140 )} 146 )}
141 {services} 147 {services}