File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ const messages = defineMessages({
23
23
id : 'infobar.buttonReloadServices' ,
24
24
defaultMessage : '!!!Reload services' ,
25
25
} ,
26
+ changelog : {
27
+ id : 'infobar.buttonChangelog' ,
28
+ defaultMessage : '!!!Changelog' ,
29
+ } ,
26
30
buttonInstallUpdate : {
27
31
id : 'infobar.buttonInstallUpdate' ,
28
32
defaultMessage : '!!!Restart & install update' ,
@@ -135,7 +139,9 @@ export default class AppLayout extends Component {
135
139
sticky
136
140
>
137
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
145
</ InfoBar >
140
146
) }
141
147
{ services }
Original file line number Diff line number Diff line change @@ -61,10 +61,13 @@ export default class InfoBar extends Component {
61
61
[ `${ className } ` ] : true ,
62
62
} ) }
63
63
>
64
- < div onClick = { onClick } className = "info-bar__content" >
64
+ < div className = "info-bar__content" >
65
65
{ children }
66
66
{ ctaLabel && (
67
- < button className = "info-bar__cta" >
67
+ < button
68
+ className = "info-bar__cta"
69
+ onClick = { onClick }
70
+ >
68
71
< Loader
69
72
loaded = { ! ctaLoading }
70
73
lines = { 10 }
Original file line number Diff line number Diff line change 58
58
"infobar.updateAvailable" : " A new update for Franz is available." ,
59
59
"infobar.buttonReloadServices" : " Reload services" ,
60
60
"infobar.buttonInstallUpdate" : " Restart & install update" ,
61
+ "infobar.buttonChangelog" : " What is new?" ,
61
62
"infobar.requiredRequestsFailed" : " Could not load services and user information" ,
62
63
"sidebar.settings" : " Settings" ,
63
64
"sidebar.addNewService" : " Add new service" ,
Original file line number Diff line number Diff line change 46
46
}
47
47
}
48
48
49
+ a {
50
+ // text-decoration: underline;
51
+ }
52
+
49
53
& .info-bar--bottom {
50
54
order : 10 ;
51
55
}
You can’t perform that action at this time.
0 commit comments