├── .gitignore ├── LICENSE ├── README.md ├── Source ├── IdleMaster.sln └── IdleMaster │ ├── AvgValues.cs │ ├── Badge.cs │ ├── CookieClient.cs │ ├── IdleMaster.csproj │ ├── Logger.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── CSteamworks.dll │ ├── Changelog.rtf │ ├── ban-2x.png │ ├── bar-chart-2x.png │ ├── check-2x.png │ ├── cog-2x.png │ ├── document-2x.png │ ├── eye-2x.png │ ├── globe-2x.png │ ├── info-2x.png │ ├── lock-locked-2x.png │ ├── media-pause-2x.png │ ├── media-pause.png │ ├── media-play-2x.png │ ├── media-play.png │ ├── media-step-forward-2x.png │ ├── media-step-forward.png │ ├── power-standby-2x.png │ ├── select2-spinner.gif │ ├── steam-idle.exe │ ├── steam_api.dll │ ├── trash-2x.png │ └── x-2x.png │ ├── Statistics.cs │ ├── SteamProfile.cs │ ├── app.config │ ├── frmAbout.Designer.cs │ ├── frmAbout.cs │ ├── frmAbout.resx │ ├── frmBlacklist.Designer.cs │ ├── frmBlacklist.cs │ ├── frmBlacklist.resx │ ├── frmBrowser.Designer.cs │ ├── frmBrowser.cs │ ├── frmBrowser.resx │ ├── frmChangelog.Designer.cs │ ├── frmChangelog.cs │ ├── frmChangelog.resx │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ ├── frmMain.resx │ ├── frmSettings.Designer.cs │ ├── frmSettings.cs │ ├── frmSettings.resx │ ├── frmSettingsAdvanced.Designer.cs │ ├── frmSettingsAdvanced.cs │ ├── frmSettingsAdvanced.resx │ ├── frmStatistics.Designer.cs │ ├── frmStatistics.cs │ ├── frmStatistics.resx │ ├── localization │ ├── strings.Designer.cs │ ├── strings.cs.resx │ ├── strings.de.resx │ ├── strings.el.resx │ ├── strings.es.resx │ ├── strings.fi.resx │ ├── strings.fr.resx │ ├── strings.hu.resx │ ├── strings.it.resx │ ├── strings.ja.resx │ ├── strings.ko.resx │ ├── strings.nl.resx │ ├── strings.no.resx │ ├── strings.pl.resx │ ├── strings.pt-BR.resx │ ├── strings.pt.resx │ ├── strings.resx │ ├── strings.ro.resx │ ├── strings.ru.resx │ ├── strings.sv.resx │ ├── strings.th.resx │ ├── strings.tr.resx │ ├── strings.uk.resx │ ├── strings.zh-TW.resx │ └── strings.zh.resx │ ├── logo1.ico │ └── packages.config ├── Steamworks.NET.dll ├── setup.exe └── steam-idle Source ├── steam-idle.sln └── steam-idle ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── icon.ico └── steam-idle.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/README.md -------------------------------------------------------------------------------- /Source/IdleMaster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster.sln -------------------------------------------------------------------------------- /Source/IdleMaster/AvgValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/AvgValues.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Badge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Badge.cs -------------------------------------------------------------------------------- /Source/IdleMaster/CookieClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/CookieClient.cs -------------------------------------------------------------------------------- /Source/IdleMaster/IdleMaster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/IdleMaster.csproj -------------------------------------------------------------------------------- /Source/IdleMaster/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Logger.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Program.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/IdleMaster/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/CSteamworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/CSteamworks.dll -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/Changelog.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/Changelog.rtf -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/ban-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/ban-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/bar-chart-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/bar-chart-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/check-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/check-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/cog-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/cog-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/document-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/document-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/eye-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/eye-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/globe-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/globe-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/info-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/info-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/lock-locked-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/lock-locked-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-pause-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-pause-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-pause.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-play-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-play-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-play.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-step-forward-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-step-forward-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/media-step-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/media-step-forward.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/power-standby-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/power-standby-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/select2-spinner.gif -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/steam-idle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/steam-idle.exe -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/steam_api.dll -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/trash-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/trash-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Resources/x-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Resources/x-2x.png -------------------------------------------------------------------------------- /Source/IdleMaster/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/Statistics.cs -------------------------------------------------------------------------------- /Source/IdleMaster/SteamProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/SteamProfile.cs -------------------------------------------------------------------------------- /Source/IdleMaster/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/app.config -------------------------------------------------------------------------------- /Source/IdleMaster/frmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmAbout.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmAbout.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmAbout.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmBlacklist.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBlacklist.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmBlacklist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBlacklist.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmBlacklist.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBlacklist.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmBrowser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBrowser.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBrowser.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmBrowser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmBrowser.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmChangelog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmChangelog.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmChangelog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmChangelog.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmChangelog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmChangelog.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmMain.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmMain.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmMain.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettings.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettings.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettings.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettingsAdvanced.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettingsAdvanced.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettingsAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettingsAdvanced.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmSettingsAdvanced.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmSettingsAdvanced.resx -------------------------------------------------------------------------------- /Source/IdleMaster/frmStatistics.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmStatistics.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmStatistics.cs -------------------------------------------------------------------------------- /Source/IdleMaster/frmStatistics.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/frmStatistics.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.Designer.cs -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.cs.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.de.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.el.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.es.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.fi.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.fr.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.hu.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.it.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.ja.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.ko.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.nl.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.no.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.pl.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.pt-BR.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.pt.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.ro.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.ru.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.sv.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.th.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.tr.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.uk.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.zh-TW.resx -------------------------------------------------------------------------------- /Source/IdleMaster/localization/strings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/localization/strings.zh.resx -------------------------------------------------------------------------------- /Source/IdleMaster/logo1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/logo1.ico -------------------------------------------------------------------------------- /Source/IdleMaster/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Source/IdleMaster/packages.config -------------------------------------------------------------------------------- /Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/Steamworks.NET.dll -------------------------------------------------------------------------------- /setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/setup.exe -------------------------------------------------------------------------------- /steam-idle Source/steam-idle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle.sln -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Program.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Properties/Resources.resx -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/Properties/Settings.settings -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/frmMain.Designer.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/frmMain.cs -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/frmMain.resx -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/icon.ico -------------------------------------------------------------------------------- /steam-idle Source/steam-idle/steam-idle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshackles/idle_master/HEAD/steam-idle Source/steam-idle/steam-idle.csproj --------------------------------------------------------------------------------