Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
Update .NET Runtime 6.0.6 & Avalonia 0.10.15
Use PublishTrimmed
New AppIcon
  • Loading branch information
AigioL committed Jun 24, 2022
1 parent 5b8c54e commit 09eb7c2
Show file tree
Hide file tree
Showing 29 changed files with 515 additions and 464 deletions.
17 changes: 17 additions & 0 deletions Avalonia.Ref/Avalonia.Themes.Fluent/Avalonia.Themes.Fluent.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildProjectDirectory)\..\avalonia.snk</AssemblyOriginatorKeyFile>
<Version>255.255.255.255</Version>
<AllowedReferenceRelatedFileExtensions>
<!-- Prevent default XML and PDB files copied to output in RELEASE.
Only *.allowedextension files will be included, which doesn't exist in my case.
-->
.allowedextension
</AllowedReferenceRelatedFileExtensions>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
</Project>
Binary file added Avalonia.Ref/avalonia.snk
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Now greatly simplified the process of extracting your Steamguard Authenticator from your iPhone / iPad, for use in [WinAuth](https://winauth.com/)

![Preview](/preview.png)
![Preview](./preview.png)

# Seems valve has silently secured the app, where it is no longer possible to extract the required data from ANY iTunes backups. There is absolutely nothing I can do about this. If your itunes backup does NOT have the required data, then the app version on your device is too new.
14 changes: 0 additions & 14 deletions iOSSteamGuardExtractor.UI/App.axaml.cs

This file was deleted.

Binary file not shown.
22 changes: 0 additions & 22 deletions iOSSteamGuardExtractor.UI/MainWindow.axaml.cs

This file was deleted.

24 changes: 0 additions & 24 deletions iOSSteamGuardExtractor.UI/iOSSteamGuardExtractor.UI.csproj

This file was deleted.

File renamed without changes.
23 changes: 23 additions & 0 deletions iOSSteamGuardExtractor/App.axaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using Avalonia;
using Avalonia.Markup.Xaml;
using Avalonia.Controls.ApplicationLifetimes;

namespace iOSSteamGuardExtractor;

public class App : Application
{
public override void Initialize()
{
AvaloniaXamlLoader.Load(this);
}

public override void OnFrameworkInitializationCompleted()
{
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
{
desktop.MainWindow = new MainWindow();
}

base.OnFrameworkInitializationCompleted();
}
}
17 changes: 0 additions & 17 deletions iOSSteamGuardExtractor/App2.cs

This file was deleted.

Binary file added iOSSteamGuardExtractor/Assets/wfc.ico
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="540" d:DesignHeight="540"
Width="540" Height="540"
MinWidth="320" MinHeight="320"
WindowStartupLocation="CenterScreen"
x:Class="iOSSteamGuardExtractor.MainWindow"
Icon="/Assets/ApplicationIcon.ico"
Icon="/Assets/wfc.ico"
Title="iOS Backup SteamGuard Authenticator Data Extractor">
<Window.Styles>
<Style Selector="Button:pressed">
<Setter Property="TextBlock.Foreground" Value="White" />
</Style>
</Window.Styles>
<DockPanel>
<Button Name="btnGetSteamGuardData"
DockPanel.Dock="Bottom"
Expand Down
Loading

0 comments on commit 09eb7c2

Please sign in to comment.