Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copyright year updates automatically #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions AcManager/AppStrings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions AcManager/AppStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -3293,8 +3293,8 @@ But if you don't want to waste 200 MB: TIFF image, 96 bit per pixel, ZIP</value>
<value>Content Manager is made possible by some [url="/Pages/About/Credits.xaml|_top"]open source and not only software[/url].
Content Manager [url="/Pages/About/License.xaml|_top"]License[/url].</value>
</data>
<data name="About_Copyright" xml:space="preserve">
<value>Copyright © 2016–2020 AcClub.</value>
<data name="About_CopyrightFormat" xml:space="preserve">
<value>Copyright © 2016–{0:yyyy} AcClub.</value>
</data>
<data name="About_MarkAllAsRead" xml:space="preserve">
<value>Mark all as read</value>
Expand Down
3 changes: 2 additions & 1 deletion AcManager/Pages/About/AboutPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mui="http://firstfloorsoftware.com/ModernUI"
xmlns:ab="clr-namespace:AcManager.Pages.About" xmlns:g="clr-namespace:AcManager" xmlns:t="http://acstuff.ru/app/tools"
xmlns:c="http://acstuff.ru/app/controls" xmlns:at="clr-namespace:AcTools;assembly=AcTools" mc:Ignorable="d" FocusVisualStyle="{x:Null}"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
d:DataContext="{d:DesignInstance ab:AboutPage+ViewModel}">
<Grid>
<Grid.RowDefinitions>
Expand Down Expand Up @@ -90,7 +91,7 @@

<StackPanel Grid.Row="1" Margin="20 12">
<mui:BbCodeBlock Style="{StaticResource Small}" PreviewMouseLeftButtonDown="OnVersionClick" Background="Transparent"
Text="{x:Static g:AppStrings.About_Copyright}" />
Text="{Binding Source={x:Static sys:DateTime.Now}, StringFormat={x:Static g:AppStrings.About_CopyrightFormat}}" />
<mui:BbCodeBlock Style="{StaticResource BbCodeBlock.Small}" Text="{x:Static g:AppStrings.About_Footer}" />
</StackPanel>
</Grid>
Expand Down