Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Preparations for 1.9.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ikarago committed Jan 10, 2020
1 parent 7fd269b commit 69100f6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion NotepadRs4/NotepadRs4/Package.appxmanifest
Expand Up @@ -8,7 +8,7 @@
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
xmlns:iot2="http://schemas.microsoft.com/appx/manifest/iot/windows10/2"
IgnorableNamespaces="uap uap5 mp rescap genTemplate desktop4 iot2">
<Identity Name="21834MacaroniSoft.Notepad" Publisher="CN=A709FCE2-98A6-4948-A3F2-B538AFE341F1" Version="1.9.3.0" />
<Identity Name="21834MacaroniSoft.Notepad" Publisher="CN=A709FCE2-98A6-4948-A3F2-B538AFE341F1" Version="1.9.4.0" />
<mp:PhoneIdentity PhoneProductId="64af9df2-830b-4654-b33b-d660aadb4c62" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Notepad</DisplayName>
Expand Down
9 changes: 5 additions & 4 deletions NotepadRs4/NotepadRs4/Strings/en-us/Resources.resw
Expand Up @@ -178,19 +178,20 @@
<comment>View disposed</comment>
</data>
<data name="AfterUpdate_Body.Text" xml:space="preserve">
<value>v1.9.2.x (2019-12-12):
<value>v1.9.4.x (2020-01-10):
- NEW: Added the ability to zoom in and out on the text
- NEW: Added a statusbar displaying the current position of the cursor and zoom (thanks Yair! :) )
- NEW: Added a statusbar displaying the current position of the cursor and zoom. You can enable it in the Settings (thanks Yair! :) )
- NEW: Added an overlay mode where you can keep the app always on top (You can activate it by pressing ALT+Up to start it and ATL+Down to close it)
- NEW: Native ARM64 support (thanks Prayaas-a!)
- IMPROVED: The Splash screen is now optional so the app boots more quickly
- IMPROVED: Updated the UI a bit more to make everything looks more in line with Microsofts Fluent Design system
- BUGFIX: Fixed a bug where ANSI encoded files wouldn't open at all
- BUGFIX: Changed Tab-behaviour to actually enter a tabbed space instead of jumping to the next control. (Once more, thanks Yair!)
- BUGFIX: Various other small bugfixes and improvements

A big shout out to Yair who worked on quite a few fixes and features for this release. Check out his Quick Pad-app in the store if you're looking into an app for some rich text editing. :)
A big shout out to Yair and Prayaas-a who worked on quite a few fixes and features for this release. Check out Yairs Quick Pad-app in the store if you're looking into an app for some rich text editing. :)

Happy editing!</value>
Happy Editing! :)</value>
<comment>What's new prompt message body</comment>
</data>
<data name="AfterUpdate_Title.Text" xml:space="preserve">
Expand Down
9 changes: 5 additions & 4 deletions NotepadRs4/NotepadRs4/Strings/nl-NL/Resources.resw
Expand Up @@ -251,19 +251,20 @@ Dutch by Ikarago</value>
<comment>About - Translators</comment>
</data>
<data name="AfterUpdate_Body.Text" xml:space="preserve">
<value>v1.9.2.x (2019-12-12):
<value>v1.9.4.x (2020-01-10):
- NEW: Added the ability to zoom in and out on the text
- NEW: Added a statusbar displaying the current position of the cursor and zoom (thanks Yair! :) )
- NEW: Added a statusbar displaying the current position of the cursor and zoom. You can enable it in the Settings (thanks Yair! :) )
- NEW: Added an overlay mode where you can keep the app always on top (You can activate it by pressing ALT+Up to start it and ATL+Down to close it)
- NEW: Native ARM64 support (thanks Prayaas-a!)
- IMPROVED: The Splash screen is now optional so the app boots more quickly
- IMPROVED: Updated the UI a bit more to make everything looks more in line with Microsofts Fluent Design system
- BUGFIX: Fixed a bug where ANSI encoded files wouldn't open at all
- BUGFIX: Changed Tab-behaviour to actually enter a tabbed space instead of jumping to the next control. (Once more, thanks Yair!)
- BUGFIX: Various other small bugfixes and improvements

A big shout out to Yair who worked on quite a few fixes and features for this release. Check out his Quick Pad-app in the store if you're looking into an app for some rich text editing. :)
A big shout out to Yair and Prayaas-a who worked on quite a few fixes and features for this release. Check out Yairs Quick Pad-app in the store if you're looking into an app for some rich text editing. :)

Happy editing!</value>
Happy Editing! :)</value>
<comment>What's new prompt message body</comment>
</data>
<data name="AfterUpdate_Title.Text" xml:space="preserve">
Expand Down
14 changes: 9 additions & 5 deletions NotepadRs4/NotepadRs4/Views/Dialogs/WhatsNewDialog.xaml
Expand Up @@ -32,15 +32,19 @@
BorderBrush="{ThemeResource SystemControlBackgroundBaseLowBrush}"
BorderThickness="0,0,0,1">
<!-- #TODO: Change to white icon when Light-mode is used -->
<Image Source="/Assets/Icons/WhatsNewDark.png" Width="32" Height="32" Margin="8"/>
<Image Source="/Assets/Icons/WhatsNewDark.png"
Width="32"
Height="32"
Margin="8"
Visibility="Collapsed"/>

<TextBlock Text="&#xE781;"
<TextBlock Text="&#xE73E;"
FontFamily="Segoe MDL2 Assets"
Style="{ThemeResource SubheaderTextBlockStyle}"
FontWeight="Bold"
TextAlignment="Center"
Width="40"
Visibility="Collapsed"/>
Visibility="Visible"/>
<TextBlock x:Uid="AfterUpdate_Title"
Text="What's new?"
Margin="12,0"
Expand All @@ -63,13 +67,13 @@
HorizontalAlignment="Right"/>
</Grid>

<StackPanel Grid.Row="1"
<ScrollViewer Grid.Row="1"
Margin="0,12,0,0">
<TextBlock x:Uid="AfterUpdate_Body" TextWrapping="WrapWholeWords">
<Run>Something cool has happened.</Run><LineBreak/>
<Run>Like cool new stability and performance fixes.</Run><LineBreak/>
<Run>Maybe a new feature as well, who knows?</Run><LineBreak/>
</TextBlock>
</StackPanel>
</ScrollViewer>
</Grid>
</ContentDialog>

0 comments on commit 69100f6

Please sign in to comment.