├── .gitattributes ├── .gitignore ├── README.md ├── SteamAccountSwitcher.sln ├── SteamAccountSwitcher ├── AccountList.cs ├── AccountType.cs ├── AddAccount.xaml ├── AddAccount.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── Crypto.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Steam.cs ├── SteamAccount.cs ├── SteamAccountSwitcher.csproj ├── SteamAccountSwitcher.ico ├── remove.png ├── steam-ico-main.png └── steam-ico-smurf.png └── SteamAccountSwitcherSetup ├── SteamAccountSwitcherSetup.isl └── SteamAccountSwitcherSetup.isproj /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.sln.docstates 8 | 9 | # Build results 10 | 11 | [Dd]ebug/ 12 | [Rr]elease/ 13 | x64/ 14 | build/ 15 | [Bb]in/ 16 | [Oo]bj/ 17 | 18 | # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets 19 | !packages/*/build/ 20 | 21 | # MSTest test Results 22 | [Tt]est[Rr]esult*/ 23 | [Bb]uild[Ll]og.* 24 | 25 | *_i.c 26 | *_p.c 27 | *.ilk 28 | *.meta 29 | *.obj 30 | *.pch 31 | *.pdb 32 | *.pgc 33 | *.pgd 34 | *.rsp 35 | *.sbr 36 | *.tlb 37 | *.tli 38 | *.tlh 39 | *.tmp 40 | *.tmp_proj 41 | *.log 42 | *.vspscc 43 | *.vssscc 44 | .builds 45 | *.pidb 46 | *.log 47 | *.scc 48 | 49 | # Visual C++ cache files 50 | ipch/ 51 | *.aps 52 | *.ncb 53 | *.opensdf 54 | *.sdf 55 | *.cachefile 56 | 57 | # Visual Studio profiler 58 | *.psess 59 | *.vsp 60 | *.vspx 61 | 62 | # Guidance Automation Toolkit 63 | *.gpState 64 | 65 | # ReSharper is a .NET coding add-in 66 | _ReSharper*/ 67 | *.[Rr]e[Ss]harper 68 | 69 | # TeamCity is a build add-in 70 | _TeamCity* 71 | 72 | # DotCover is a Code Coverage Tool 73 | *.dotCover 74 | 75 | # NCrunch 76 | *.ncrunch* 77 | .*crunch*.local.xml 78 | 79 | # Installshield output folder 80 | [Ee]xpress/ 81 | 82 | # DocProject is a documentation generator add-in 83 | DocProject/buildhelp/ 84 | DocProject/Help/*.HxT 85 | DocProject/Help/*.HxC 86 | DocProject/Help/*.hhc 87 | DocProject/Help/*.hhk 88 | DocProject/Help/*.hhp 89 | DocProject/Help/Html2 90 | DocProject/Help/html 91 | 92 | # Click-Once directory 93 | publish/ 94 | 95 | # Publish Web Output 96 | *.Publish.xml 97 | 98 | # NuGet Packages Directory 99 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 100 | #packages/ 101 | 102 | # Windows Azure Build Output 103 | csx 104 | *.build.csdef 105 | 106 | # Windows Store app package directory 107 | AppPackages/ 108 | 109 | # Others 110 | sql/ 111 | *.Cache 112 | ClientBin/ 113 | [Ss]tyle[Cc]op.* 114 | ~$* 115 | *~ 116 | *.dbmdl 117 | *.[Pp]ublish.xml 118 | *.pfx 119 | *.publishsettings 120 | 121 | # RIA/Silverlight projects 122 | Generated_Code/ 123 | 124 | # Backup & report files from converting an old project file to a newer 125 | # Visual Studio version. Backup files are not needed, because we have git ;-) 126 | _UpgradeReport_Files/ 127 | Backup*/ 128 | UpgradeLog*.XML 129 | UpgradeLog*.htm 130 | 131 | # SQL Server files 132 | App_Data/*.mdf 133 | App_Data/*.ldf 134 | 135 | 136 | #LightSwitch generated files 137 | GeneratedArtifacts/ 138 | _Pvt_Extensions/ 139 | ModelManifest.xml 140 | 141 | # ========================= 142 | # Windows detritus 143 | # ========================= 144 | 145 | # Windows image file caches 146 | Thumbs.db 147 | ehthumbs.db 148 | 149 | # Folder config file 150 | Desktop.ini 151 | 152 | # Recycle Bin used on file shares 153 | $RECYCLE.BIN/ 154 | 155 | # Mac desktop service store files 156 | .DS_Store 157 | SteamAccountSwitcher/Crypto.cs 158 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Steam Account Switcher 2 | 3 | [![Join the chat at https://gitter.im/W3D3/SteamAccountSwitcher](https://badges.gitter.im/W3D3/SteamAccountSwitcher.svg)](https://gitter.im/W3D3/SteamAccountSwitcher?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 4 | 5 | SteamAccountSwitcher is a Windows Application for easy switching between Steam accounts. 6 | 7 | - Add/Edit/Remove umlimited different Steam accounts and instantly switch between them 8 | - Accounts are encrypted and saved locally 9 | 10 | ## Version 11 | 12 | See releases for changelogs. 13 | 14 | Development is discontinued for version 1. (Working on v2, first release coming ~~end of October 2016.~~ I lied. Probably soon though.) 15 | [New repo](https://github.com/W3D3/SteamAccountSwitcher2) (Looking for testers) 16 | 17 | ## Screenshots 18 | 19 | ![alt text](http://puu.sh/9I1E9/aa53d096c5.png, "Screenshot 1") 20 | 21 | ## Download 22 | 23 | [Latest Release](https://github.com/W3D3/SteamAccountSwitcher/releases/latest) 24 | 25 | ## To-Do 26 | 27 | - Automatic Updating (Done, needs testing) 28 | - Steam Status check (Done, will be in next release) 29 | - New Crypto code 30 | - (optional) Master Password 31 | - ??? 32 | 33 | Feel free to open an issue if you have any ideas for features/improvements that you'd like to see. 34 | I am also looking for a new logo that reflect the "recent" steam color-palette change better than the all black one. 35 | 36 | ## Credit 37 | - [BoneyardBrew for the application icon](http://boneyardbrew.deviantart.com/art/Modern-Steam-Icon-421263397) 38 | - [SimekOneLove for the account icons](http://www.iconarchive.com/artist/simekonelove.html) 39 | 40 | 41 | ## License 42 | 43 | [CC Attribution-Share Alike 3.0](http://creativecommons.org/licenses/by-sa/3.0/) 44 | -------------------------------------------------------------------------------- /SteamAccountSwitcher.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.23107.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamAccountSwitcher", "SteamAccountSwitcher\SteamAccountSwitcher.csproj", "{87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}" 7 | EndProject 8 | Project("{6141683F-8A12-4E36-9623-2EB02B2C2303}") = "SteamAccountSwitcherSetup", "SteamAccountSwitcherSetup\SteamAccountSwitcherSetup.isproj", "{633F1FDD-3E71-4040-8519-F9E89B315E2A}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | CD_ROM|Any CPU = CD_ROM|Any CPU 13 | Debug|Any CPU = Debug|Any CPU 14 | DVD-5|Any CPU = DVD-5|Any CPU 15 | Release|Any CPU = Release|Any CPU 16 | SingleImage|Any CPU = SingleImage|Any CPU 17 | EndGlobalSection 18 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 19 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.CD_ROM|Any CPU.ActiveCfg = Release|Any CPU 20 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.CD_ROM|Any CPU.Build.0 = Release|Any CPU 21 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 22 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.Debug|Any CPU.Build.0 = Debug|Any CPU 23 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU 24 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.DVD-5|Any CPU.Build.0 = Debug|Any CPU 25 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.Release|Any CPU.ActiveCfg = Release|Any CPU 26 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.Release|Any CPU.Build.0 = Release|Any CPU 27 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.SingleImage|Any CPU.ActiveCfg = Release|Any CPU 28 | {87F5B85B-F4AB-47DA-AFD7-97CC7E450E12}.SingleImage|Any CPU.Build.0 = Release|Any CPU 29 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.CD_ROM|Any CPU.ActiveCfg = CD_ROM 30 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.CD_ROM|Any CPU.Build.0 = CD_ROM 31 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.Debug|Any CPU.ActiveCfg = DVD-5 32 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.Debug|Any CPU.Build.0 = DVD-5 33 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.DVD-5|Any CPU.ActiveCfg = DVD-5 34 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.DVD-5|Any CPU.Build.0 = DVD-5 35 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.Release|Any CPU.ActiveCfg = SingleImage 36 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.Release|Any CPU.Build.0 = SingleImage 37 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.SingleImage|Any CPU.ActiveCfg = SingleImage 38 | {633F1FDD-3E71-4040-8519-F9E89B315E2A}.SingleImage|Any CPU.Build.0 = SingleImage 39 | EndGlobalSection 40 | GlobalSection(SolutionProperties) = preSolution 41 | HideSolutionNode = FALSE 42 | EndGlobalSection 43 | EndGlobal 44 | -------------------------------------------------------------------------------- /SteamAccountSwitcher/AccountList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace SteamAccountSwitcher 8 | { 9 | public class AccountList 10 | { 11 | string installDir; 12 | List accounts; 13 | 14 | public AccountList() 15 | { 16 | accounts = new List(); 17 | } 18 | 19 | public string InstallDir 20 | { 21 | get { return installDir; } 22 | set { installDir = value; } 23 | } 24 | 25 | public List Accounts 26 | { 27 | get { return accounts; } 28 | set { accounts = value; } 29 | } 30 | 31 | 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /SteamAccountSwitcher/AccountType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace SteamAccountSwitcher 8 | { 9 | public enum AccountType 10 | { 11 | Main, Smurf 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SteamAccountSwitcher/AddAccount.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 |