Skip to content

Commit 571de60

Browse files
committed
Removed header
1 parent 41dbdb9 commit 571de60

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

src/Files.App/Actions/Open/OpenReleaseNotesAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ internal sealed partial class OpenReleaseNotesAction : ObservableObject, IAction
99
private readonly IUpdateService UpdateService = Ioc.Default.GetRequiredService<IUpdateService>();
1010

1111
public string Label
12-
=> Strings.WhatsNew.GetLocalizedResource();
12+
=> Strings.ReleaseNotes.GetLocalizedResource();
1313

1414
public string Description
15-
=> Strings.WhatsNewDescription.GetLocalizedResource();
15+
=> Strings.ReleaseNotesDescription.GetLocalizedResource();
1616

1717
public RichGlyph Glyph
1818
=> new(themedIconStyle: "App.ThemedIcons.AppUpdatedBox");

src/Files.App/Strings/en-US/Resources.resw

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2198,13 +2198,10 @@
21982198
<data name="EditSettingsFileDescription" xml:space="preserve">
21992199
<value>Open settings file in your default editor</value>
22002200
</data>
2201-
<data name="WhatsNew" xml:space="preserve">
2202-
<value>What's new</value>
2203-
</data>
22042201
<data name="ReleaseNotes" xml:space="preserve">
22052202
<value>Release Notes</value>
22062203
</data>
2207-
<data name="WhatsNewDescription" xml:space="preserve">
2204+
<data name="ReleaseNotesDescription" xml:space="preserve">
22082205
<value>Open Release Notes</value>
22092206
</data>
22102207
<data name="CannotCreateShortcutDialogTitle" xml:space="preserve">

src/Files.App/Views/ReleaseNotesPage.xaml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,40 +14,21 @@
1414

1515
<Grid x:Name="ContainerGrid">
1616
<Grid.RowDefinitions>
17-
<RowDefinition Height="Auto" />
1817
<RowDefinition Height="*" />
1918
<RowDefinition Height="Auto" />
2019
</Grid.RowDefinitions>
2120

22-
<!-- Titlebar -->
23-
<Grid Grid.Row="0">
24-
<StackPanel
25-
Padding="20"
26-
Orientation="Horizontal"
27-
Spacing="12">
28-
<Image Width="32" Source="\Assets\AppTiles\Dev\Logo.ico" />
29-
30-
<TextBlock
31-
VerticalAlignment="Center"
32-
FontSize="20"
33-
FontWeight="SemiBold"
34-
LineHeight="28"
35-
Text="{helpers:ResourceString Name=WhatsNew}" />
36-
</StackPanel>
37-
</Grid>
38-
3921
<!-- WebView -->
4022
<WebView2
4123
x:Name="BlogPostWebView"
42-
Grid.Row="1"
4324
HorizontalAlignment="Stretch"
4425
VerticalAlignment="Stretch"
4526
CoreWebView2Initialized="BlogPostWebView_CoreWebView2Initialized"
4627
Source="{x:Bind ViewModel.BlogPostUrl, Mode=OneWay}" />
4728

4829
<!-- Footer -->
4930
<Border
50-
Grid.Row="2"
31+
Grid.Row="1"
5132
Padding="12"
5233
Background="{ThemeResource SolidBackgroundFillColorBaseBrush}"
5334
BackgroundSizing="OuterBorderEdge"

0 commit comments

Comments
 (0)