This commit is contained in:
BubbaGumpShrump 2024-12-10 00:19:13 -05:00
parent 23bee3925f
commit 7484ec15f8
3 changed files with 9 additions and 5 deletions

View file

@ -25,9 +25,13 @@
<TextBlock x:Name="AvailableVersionText" Text="Checking..." FontSize="16" VerticalAlignment="Center" Foreground="{DynamicResource TextBrush}"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="20" Grid.Row="2">
<TextBlock Text="Still a work in progress. Please uninstall current version before installing update." FontSize="16" Foreground="{DynamicResource TextBrush}" />
</StackPanel>
<!-- Install Button -->
<StackPanel HorizontalAlignment="Right" VerticalAlignment="Bottom" Grid.Row="2" Grid.Column="2">
<Button x:Name="InstallButton" Content="Install Update" Width="150" Height="40" IsEnabled="False"
<Button x:Name="InstallButton" Content="Download Update" Width="150" Height="40" IsEnabled="False"
Click="InstallButton_Click" Style="{StaticResource DisabledButtonStyle}" FontFamily="{StaticResource Orbitron}"/>
</StackPanel>
</Grid>

View file

@ -9,7 +9,7 @@ namespace AutoTrackR2
{
public partial class UpdatePage : UserControl
{
private string currentVersion = "v2.0-beta.2";
private string currentVersion = "v2.0-beta.3";
private string latestVersion;
public UpdatePage()