Skip to content

Commit

Permalink
1.5.1.0 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
rex706 committed Dec 13, 2022
1 parent 274eee1 commit 54e2ec7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
3 changes: 1 addition & 2 deletions Core/WindowUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ public static Process WaitForSteamProcess(WindowHandle windowHandle)
Console.WriteLine("Waiting for it to be idle.");
while (process == null)
{
int procId = 0;
GetWindowThreadProcessId(windowHandle.RawPtr, out procId);
GetWindowThreadProcessId(windowHandle.RawPtr, out int procId);

// Wait for valid process id from handle.
while (procId == 0)
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.1")]
[assembly: AssemblyFileVersion("1.5.0.1")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@

![alt tag](https://i.imgur.com/v4eJzzH.png) ![alt tag](https://i.imgur.com/laBORcJ.png)

**Latest Version:** 1.5.0.1
**Latest Version:** 1.5.1.0

# [**DOWNLOAD**](https://github.com/rex706/SAM/releases/latest)

**NEW**
* Steam React UI support. (enabled by default)
* Account data file backup system. (enabled by default)
* Launch Parameters per account.
* Friends login status per account.

**Core Features**
* 1-click Steam logins for multiple accounts with 2FA support.
- Your 'Shared Secret' can be found in your decrypted .maFile generated from [SteamDesktopAuthenticator](https://github.com/Jessecar96/SteamDesktopAuthenticator).
Expand All @@ -25,12 +31,10 @@
* Data password protection.
* Set/Clear account timeouts.
* Delete userdata folder after every login toggle.
* Set custom sleep time for waiting actions.
* Toggle Steam client launch parameters.
* Toggle Steam client launch parameters globally and by account.
* Support for Sandbox Mode for users of Sandboxie/Avast Sandbox.
* Alternate List view.
* Theme and Accent customization.
* Quick timeout selections.
* Close on login toggle setting.

-----------------------------------------
Expand Down
2 changes: 0 additions & 2 deletions Views/AccountsWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,6 @@ private void Login(int index, int tryCount)
// Start Steam process with the selected path.
ProcessStartInfo startInfo = new ProcessStartInfo
{
UseShellExecute = true,
FileName = settings.User.SteamPath + "steam.exe",
WorkingDirectory = settings.User.SteamPath,
Arguments = parametersBuilder.ToString()
Expand Down Expand Up @@ -2730,7 +2729,6 @@ private void ShutdownSteam()
// Shutdown Steam process via command if it is already open.
ProcessStartInfo stopInfo = new ProcessStartInfo
{
UseShellExecute = true,
FileName = settings.User.SteamPath + "steam.exe",
WorkingDirectory = settings.User.SteamPath,
Arguments = "-shutdown"
Expand Down
4 changes: 2 additions & 2 deletions latest.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.5.0.1
1.5.1.0
SAM.exe
https://github.com/rex706/SAM/releases/download/v1.5.0.1/SAM.exe
https://github.com/rex706/SAM/releases/download/v1.5.1.0/SAM.exe
SAM.exe

0 comments on commit 54e2ec7

Please sign in to comment.