This commit is contained in:
Václav Španinger 2024-09-12 13:00:34 -07:00
parent 87a4f569c0
commit 14877f4711
2 changed files with 7 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace FakeeDeck.Class
AutoUpdater.ShowRemindLaterButton = false; AutoUpdater.ShowRemindLaterButton = false;
AutoUpdater.ReportErrors = Debugger.IsAttached; AutoUpdater.ReportErrors = Debugger.IsAttached;
AutoUpdater.HttpUserAgent = ("FakeDeck-v" + Assembly.GetExecutingAssembly().GetName().Version); AutoUpdater.HttpUserAgent = ("FakeDeck-v" + Assembly.GetExecutingAssembly().GetName().Version);
AutoUpdater.Start("https://api.github.com/repos/ravibpatel/AutoUpdater.NET/releases/latest"); AutoUpdater.Start("https://api.github.com/repos/GamerClassN7/FakeDeck/releases/latest");
} }
private void AutoUpdaterOnParseUpdateInfoEvent(ParseUpdateInfoEventArgs args) private void AutoUpdaterOnParseUpdateInfoEvent(ParseUpdateInfoEventArgs args)
{ {

View File

@ -7,6 +7,11 @@
mc:Ignorable="d" mc:Ignorable="d"
Title="MainWindow" Height="450" Width="270" Activated="FakeDeckUI_Activated" WindowStartupLocation="CenterScreen"> Title="MainWindow" Height="450" Width="270" Activated="FakeDeckUI_Activated" WindowStartupLocation="CenterScreen">
<Grid> <Grid>
<Image x:Name="qr_code" Margin="10,10,10,174"/> <Grid.RowDefinitions>
<RowDefinition Height="270*"/>
<RowDefinition Height="50*"/>
</Grid.RowDefinitions>
<Image x:Name="qr_code" Margin="10,10,10,10"/>
<TextBox Margin="10,10,10,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Grid.Row="1"/>
</Grid> </Grid>
</Window> </Window>