File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 365
365
<system : String x : Key =" LogLevelINFO" >Info</system : String >
366
366
<system : String x : Key =" settingWindowFontTitle" >Setting Window Font</system : String >
367
367
368
+ <!-- Release Notes Window -->
369
+ <system : String x : Key =" seeMoreReleaseNotes" >See more release notes on GitHub</system : String >
370
+
368
371
<!-- FileManager Setting Dialog -->
369
372
<system : String x : Key =" fileManagerWindow" >Select File Manager</system : String >
370
373
<system : String x : Key =" fileManager_learnMore" >Learn more</system : String >
Original file line number Diff line number Diff line change 2
2
x : Class =" Flow.Launcher.ReleaseNotesWindow"
3
3
xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
4
xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
5
+ xmlns : cc =" clr-namespace:Flow.Launcher.Resources.Controls"
5
6
xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
6
7
xmlns : local =" clr-namespace:Flow.Launcher"
7
8
xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
42
43
<Grid .RowDefinitions>
43
44
<RowDefinition Height =" 32" />
44
45
<RowDefinition />
46
+ <RowDefinition />
45
47
</Grid .RowDefinitions>
46
48
<!-- TitleBar and Control -->
47
49
<Image
153
155
</Path >
154
156
</Button >
155
157
158
+ <Grid
159
+ Grid.Row=" 1"
160
+ Grid.Column=" 0"
161
+ Grid.ColumnSpan=" 5"
162
+ Margin =" 10 0 20 0" >
163
+ <cc : HyperLink x : Name =" SeeMore" Text =" {DynamicResource seeMoreReleaseNotes}" />
164
+ </Grid >
165
+
156
166
<mdxam : MarkdownScrollViewer
157
167
x : Name =" MarkdownViewer"
158
- Grid.Row=" 1 "
168
+ Grid.Row=" 2 "
159
169
Grid.Column=" 0"
160
170
Grid.ColumnSpan=" 5"
161
171
Height =" 510"
168
178
169
179
<!-- Put this Grid in the same position as MarkdownViewer -->
170
180
<Grid
171
- Grid.Row=" 1 "
181
+ Grid.Row=" 2 "
172
182
Grid.Column=" 0"
173
183
Grid.ColumnSpan=" 5"
174
184
Height =" 510"
Original file line number Diff line number Diff line change @@ -15,9 +15,12 @@ namespace Flow.Launcher
15
15
{
16
16
public partial class ReleaseNotesWindow : Window
17
17
{
18
+ private static readonly string ReleaseNotes = Properties . Settings . Default . GithubRepo + "/releases" ;
19
+
18
20
public ReleaseNotesWindow ( )
19
21
{
20
22
InitializeComponent ( ) ;
23
+ SeeMore . Uri = ReleaseNotes ;
21
24
ModernWpf . ThemeManager . Current . ActualApplicationThemeChanged += ThemeManager_ActualApplicationThemeChanged ;
22
25
}
23
26
You can’t perform that action at this time.
0 commit comments