Skip to content

Commit

Permalink
Improve readme and fix bugs
Browse files Browse the repository at this point in the history
- Fixed old previews still showing instead of new ones
- Fix old copyright date in settings menu
- Fix other minor bugs
  • Loading branch information
Lixkote committed Feb 8, 2025
1 parent 9a2b71e commit 1458f90
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

RectifyPad is a modern and unofficial replacement for WordPad, written in C#. It is free and open source, and aims to provide almost the same functionality as its predecessor, with a fresh and updated look.

![RectifyPad Screenshot](https://github.com/Lixkote/WordPad11/blob/main/darkpreview.png)
![RectifyPad Screenshot](https://github.com/Lixkote/WordPad11/blob/main/lightpreviewnew.png)
![RectifyPad Screenshot](https://github.com/Lixkote/WordPad11/blob/main/preview_dark.png)
![RectifyPad Screenshot](https://github.com/Lixkote/WordPad11/blob/main/preview_light.png)

## Features
- Standard WordPad features, such as basic text operations and inserting various multimedia items.
Expand Down
2 changes: 1 addition & 1 deletion WordPad/Strings/en-US/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
<value>Copy</value>
</data>
<data name="copyrighttext.Text" xml:space="preserve">
<value2024 Lixkote. All rights reserved.</value>
<value2025 Lixkote. All rights reserved.</value>
</data>
<data name="EditingFindBox.Text" xml:space="preserve">
<value>Find</value>
Expand Down
2 changes: 1 addition & 1 deletion WordPad/Strings/pl-PL/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
<value>Kopiuj</value>
</data>
<data name="copyrighttext.Text" xml:space="preserve">
<value2024 Lixkote. Wszelkie prawa zastrzeżone.</value>
<value2025 Lixkote. Wszelkie prawa zastrzeżone.</value>
</data>
<data name="EditingFindBox.Text" xml:space="preserve">
<value>Znajdź</value>
Expand Down
10 changes: 5 additions & 5 deletions WordPad/WordPadUI/Settings/SettingsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,20 +205,20 @@
</StackPanel>
<StackPanel x:Name="AboutSection" Grid.Row="2" Margin="{StaticResource ContentBottomWideSpacing}">
<TextBlock Style="{StaticResource SectionHeader}" x:Uid="aboutapp" Text="About this app"/>
<TextBlock x:Name="PackageVersionText" IsTextSelectionEnabled="True" Text="RectifyPad 11.241.471.0"/>
<TextBlock x:Name="PackageVersionText" IsTextSelectionEnabled="True" Text="RectifyPad 11.2502.100.0"/>
<TextBlock x:Uid="copyrighttext" x:Name="CopyrightText" Margin="{StaticResource ContentBottomWideSpacing}" Text="© 2025 Lixkote. All rights reserved."/>
<HyperlinkButton Margin="{StaticResource HyperlinkButtonMargin}" NavigateUri="https://github.com/Lixkote/RectifyPad" >
<TextBlock x:Uid="srccode" Text="Source Code"/>
</HyperlinkButton>


<Button x:Uid="feedback" x:Name="feedback" Margin="{StaticResource ContentTopLargeSpacing}" Content="Send feedback" Click="feedback_Click" />
<TextBlock x:Name="GithubText" Margin="0,15,0,40">
<Button x:Uid="feedback" x:Name="feedback" Content="Send feedback" Click="feedback_Click" Margin="0,16,0,16" />
<TextBlock Visibility="Collapsed" x:Name="GithubText" Margin="0,15,0,40">
To learn how you can contribute to Rectify11 and RectifyPad, <LineBreak/>check out the projects on their <Hyperlink NavigateUri="https://github.com/Rectify11" TextDecorations="None"> GitHub</Hyperlink> page
</TextBlock>
<TextBlock x:Name="GithubText_Kopiuj">If you consider this project useful or helpful for your daily use,<LineBreak></LineBreak>please consider donating to support the development of <LineBreak></LineBreak>new features, and bugfixes for this, and another projects on my GitHub Page.</TextBlock>
<TextBlock x:Name="GithubText_Kopiuj">If you consider this project useful or helpful for your daily use,<LineBreak></LineBreak>please consider donating to support the development of <LineBreak></LineBreak>new features, bugfixes for this, and another projects on my GitHub Page.</TextBlock>

<Button x:Name="donatebutton" x:Uid="donatebutton" Style="{ThemeResource AccentButtonStyle}" Click="donatebutton_Click" Margin="0,10,0,0" />
<Button x:Name="donatebutton" x:Uid="donatebutton" Click="donatebutton_Click" Margin="0,10,0,0" />
</StackPanel>
<Button Style="{StaticResource MenuButton}" x:Name="BackButton" Click="BackButton_Click" Content="&#xE0A6;" Margin="-55,23,0,0" VerticalAlignment="Top" Height="35" Width="44" Background="{x:Null}" BorderBrush="{x:Null}" FocusVisualSecondaryBrush="{x:Null}" FontFamily="Segoe Fluent Icons" FontSize="16"/>
</Grid.Children>
Expand Down
2 changes: 1 addition & 1 deletion WordPad/WordPadUI/Settings/SettingsPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private void Button_Click(object sender, RoutedEventArgs e)

private async void feedback_Click(object sender, RoutedEventArgs e)
{
await Windows.System.Launcher.LaunchUriAsync(new Uri("https://discord.gg/gsgu9GCtsk"));
await Windows.System.Launcher.LaunchUriAsync(new Uri("https://discord.gg/NzusbfSmPp"));
}

private void BackButton_Click(object sender, RoutedEventArgs e)
Expand Down
File renamed without changes
File renamed without changes

0 comments on commit 1458f90

Please sign in to comment.