Skip to content

Commit fb27aa5

Browse files
author
Juan Segura
committed
v1.6.0 - beta 5 (reloaded)
1 parent 6f2171a commit fb27aa5

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

ZXBStudio/Dialogs/SplashScreen.axaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
Topmost="True">
1313
<Border BorderBrush="Black" BorderThickness="2">
1414
<Grid RowDefinitions="*,Auto">
15-
<Image Grid.RowSpan="2" Source="/Assets/LogoBig.png"></Image>
15+
<Image Grid.RowSpan="2" Source="/Assets/LogoBig.png"></Image>
16+
<Label x:Name="lblVersion" VerticalAlignment="Bottom"/>
1617
</Grid>
1718
</Border>
1819
</Window>

ZXBStudio/Dialogs/SplashScreen.axaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public partial class SplashScreen : Window
88
public SplashScreen()
99
{
1010
InitializeComponent();
11+
lblVersion.Content=$"{Program.Version} | {Program.VersionDate}";
1112
}
1213
}
1314
}

ZXBStudio/Dialogs/ZXAboutDialog.axaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ public ZXAboutDialog()
1212
{
1313
InitializeComponent();
1414

15-
txtBuild.Text = "1.6.0-beta5";
16-
txtDate.Text = "2025-10-05";
15+
txtBuild.Text = Program.Version;
16+
txtDate.Text = Program.VersionDate;
1717

1818
btnClose.Click += BtnClose_Click;
1919

ZXBStudio/Program.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ namespace ZXBasicStudio
88
{
99
internal class Program
1010
{
11+
public static string Version = "1.6.0 - beta 5";
12+
public static string VersionDate = "2025.10.05";
13+
1114
// Initialization code. Don't use any Avalonia, third-party APIs or any
1215
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
1316
// yet and stuff might break.

0 commit comments

Comments
 (0)