Skip to content

Commit 9ebb185

Browse files
committed
Feat(#93): Updated About popup and changed version number
1 parent d389d63 commit 9ebb185

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

VexTrack/Core/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace VexTrack.Core
66
static class Constants
77
{
88
public static readonly string AppName = "VexTrack";
9-
public static readonly string Version = "v1.87";
9+
public static readonly string Version = "v1.88";
1010

1111
public static readonly string DataFolder = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"/VexTrack - Preview";
1212
public static readonly string LegacyDataFolder = @"dat";

VexTrack/MVVM/View/Popups/AboutPopup.xaml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<RowDefinition Height="Auto"/>
5151
<RowDefinition Height="Auto"/>
5252
<RowDefinition Height="Auto"/>
53+
<RowDefinition Height="Auto"/>
5354
</Grid.RowDefinitions>
5455

5556
<TextBlock Grid.Row="0"
@@ -74,28 +75,40 @@
7475
HorizontalAlignment="Center"
7576
Foreground="{DynamicResource Foreground}"
7677
Margin="0, 0, 0, 8">
77-
GitHub:
7878
<Hyperlink NavigateUri="https://github.com/BitTim/VexTrack" RequestNavigate="Hyperlink_RequestNavigate">
7979
https://github.com/BitTim/VexTrack
8080
</Hyperlink>
8181
</TextBlock>
8282

83-
<TextBlock Text="Created by BitTim, Copyright ©2021 - 2022"
83+
<TextBlock Text="Created by BitTim, Copyright ©2021 - 2025"
8484
Grid.Row="3"
8585
FontSize="14"
8686
TextWrapping="Wrap"
8787
HorizontalAlignment="Center"
8888
Foreground="{DynamicResource Foreground}"
8989
Margin="0, 0, 0, 32"/>
9090

91-
<TextBlock Text="v2.0 is gonna be big"
91+
<TextBlock Text="This is the end. Please check out Valolink!"
9292
Grid.Row="4"
9393
FontSize="14"
9494
FontStyle="Italic"
9595
TextWrapping="Wrap"
9696
HorizontalAlignment="Center"
9797
Foreground="{DynamicResource Foreground}"
9898
Margin="0, 0, 0, 2"/>
99+
100+
<TextBlock Text=""
101+
Grid.Row="5"
102+
FontSize="14"
103+
FontStyle="Italic"
104+
TextWrapping="Wrap"
105+
HorizontalAlignment="Center"
106+
Foreground="{DynamicResource Foreground}"
107+
Margin="0, 0, 0, 2">
108+
<Hyperlink NavigateUri="https://github.com/BitTim/Valolink" RequestNavigate="Hyperlink_RequestNavigate">
109+
https://github.com/BitTim/Valolink
110+
</Hyperlink>
111+
</TextBlock>
99112
</Grid>
100113
</Grid>
101114

0 commit comments

Comments
 (0)