Skip to content

Commit

Permalink
Add message that SDA is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessecar96 committed Oct 15, 2024
1 parent 25242f7 commit 22baa29
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Steam Desktop Authenticator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ static void Main(string[] args)
}
}

// Warning that this software is no longer supported
MessageBox.Show("Steam Desktop Authenticator is no longer supported and will not receive any more updates. You should only use Steam's official mobile app to login to your account. Using SDA or any other tool is dangerous and puts your account at risk.", "Steam Desktop Authenticator", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);

if (man.FirstRun)
{
if (man.Entries.Count > 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icon.ico</ApplicationIcon>
<StartupObject>Steam_Desktop_Authenticator.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Update="ConfirmationButton.cs">
Expand Down

0 comments on commit 22baa29

Please sign in to comment.