├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SteamLauncher.sln ├── SteamLauncher.sln.DotSettings ├── SteamLauncher ├── ActivityState.cs ├── Attributes │ ├── FooterAttribute.cs │ ├── XmlFilenameAttribute.cs │ └── XmlUrlAttribute.cs ├── DataStore │ ├── Config.cs │ ├── LaunchBoxSystemMenuItem │ │ ├── EnableSteamLauncher.cs │ │ ├── Settings.cs │ │ ├── SystemMenuItem.cs │ │ └── SystemMenuItems.cs │ ├── LauncherToExe.cs │ ├── Platform.cs │ ├── RepairPath.cs │ ├── Repairs.cs │ ├── SelectiveUse │ │ ├── Filter.cs │ │ ├── FilterMode.cs │ │ ├── FilterType.cs │ │ └── Filtering.cs │ ├── Settings.cs │ ├── VTablesStore │ │ ├── IVTable.cs │ │ ├── VTable.cs │ │ ├── VTables.cs │ │ ├── VtEntry.cs │ │ ├── VtEntryParam.cs │ │ └── VtFile.cs │ └── XmlFile.cs ├── GameLaunchingPlugin.cs ├── LaunchViaSteamMenuItem.cs ├── Logging │ ├── FileStreamWithBackup.cs │ └── Logger.cs ├── ProcWatch │ ├── CimWatcherEventArgs.cs │ ├── ProcessWatcher.cs │ └── ProcessWatcherEventArgs.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json ├── Proxy │ └── ProxyEmulator.cs ├── Resources │ ├── logo1_256.png │ ├── logo1_enlarged_256.png │ └── logo2_icon.ico ├── SLInit.cs ├── SettingsSystemMenuItem.cs ├── Shortcuts │ ├── DosBoxShortcut.cs │ ├── EmulatorShortcut.cs │ ├── GameShortcut.cs │ ├── ScummVmShortcut.cs │ └── WindowsShortcut.cs ├── SteamClient │ ├── Attributes │ │ └── VTableIndex.cs │ ├── Interfaces │ │ ├── ClientShortcuts │ │ │ └── GetUniqueLocalAppId.cs │ │ ├── CustTypes │ │ │ ├── BitVector64.cs │ │ │ ├── CGameID.cs │ │ │ └── GameID_t.cs │ │ └── IClientShortcuts.cs │ ├── Interop │ │ ├── DynamicUnmanagedFuncCaller.cs │ │ ├── SteamInterfaceWrapper.cs │ │ ├── SteamParamStringArray.cs │ │ ├── SteamStringArrayMarshaler.cs │ │ └── Utf8String.cs │ ├── Native │ │ ├── SteamNative.cs │ │ └── SysNative.cs │ ├── ShortcutsVdf.cs │ ├── SteamContext.cs │ ├── SteamProcessInfo.cs │ ├── SteamShortcutManager.cs │ └── VTables │ │ ├── NonBetaIndexStatusEnum.cs │ │ ├── VTableEntryWrapper.cs │ │ └── VTableWrapper.cs ├── SteamLauncher.csproj ├── SteamLauncher.csproj.old ├── Tools │ ├── ActiveWindow.cs │ ├── AsyncLazy.cs │ ├── ByteArrayUtils.cs │ ├── CloneObjectExtensions.cs │ ├── Crc32.cs │ ├── CustomExtensions.cs │ ├── DateTimeHelper.cs │ ├── DelegateTypeFactory.cs │ ├── DisposableAssemblyLoadContext.cs │ ├── Enumeration.cs │ ├── Info.cs │ ├── Network.cs │ ├── ProcessCommandLine.cs │ ├── ProcessExtension.cs │ ├── Range.cs │ ├── ReflectionHelper.cs │ ├── Resources.cs │ ├── ShellLnk.cs │ ├── UacHelper.cs │ ├── Utilities.cs │ ├── WildcardMatch.cs │ ├── WindowMgmt.cs │ ├── WindowsLnkFile.cs │ └── XmlCallbackSerializer.cs ├── UI │ ├── Converters │ │ ├── BoolToForegroundConverter.cs │ │ ├── EnumToCollectionConverter.cs │ │ ├── NameOfExtension.cs │ │ ├── NullToVisibilityConverter.cs │ │ ├── PropertyInfoOfExtension.cs │ │ ├── PropertyToDescriptionConverter.cs │ │ ├── PropertyToDisplayDescriptionConverter.cs │ │ ├── PropertyToDisplayNameConverter.cs │ │ ├── SliderCaptionConverter.cs │ │ └── SwitchBindingExtension.cs │ ├── Framework │ │ ├── CommandHandler.cs │ │ ├── DialogHelper.cs │ │ ├── DialogWindow.cs │ │ ├── ICloseable.cs │ │ ├── IDialog.cs │ │ └── ViewModelFramework.cs │ ├── Themes │ │ ├── ColorfulDarkTheme.xaml │ │ └── ColorfulDarkTheme.xaml.cs │ ├── Utils │ │ ├── EnumHelper.cs │ │ └── MouseObserver.cs │ ├── ViewModels │ │ ├── SettingsViewModel.cs │ │ └── SteamStatusTimerViewModel.cs │ └── Views │ │ ├── SettingsWindow.xaml │ │ └── SettingsWindow.xaml.cs ├── UseSteamLauncherSystemMenuItem.cs └── app.config ├── SteamLauncherProxy-NetCore ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Resources │ └── logo2_icon.ico └── SteamLauncherProxy-NetCore.csproj ├── SteamLauncherProxy-Wpf ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── logo2_icon.ico └── SteamLauncherProxy-Wpf.csproj └── assets └── images ├── SteamLauncher-SLEnabled_Custom_Field_Entry.png ├── SteamLauncher-SettingsWindow-Misc.png ├── SteamLauncher-SettingsWindow-PlatformNames.png ├── SteamLauncher-SettingsWindow-SelectiveUse.png ├── SteamLauncher-ToolsMenuItems.png └── logo2_window_256.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/README.md -------------------------------------------------------------------------------- /SteamLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher.sln -------------------------------------------------------------------------------- /SteamLauncher.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher.sln.DotSettings -------------------------------------------------------------------------------- /SteamLauncher/ActivityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/ActivityState.cs -------------------------------------------------------------------------------- /SteamLauncher/Attributes/FooterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Attributes/FooterAttribute.cs -------------------------------------------------------------------------------- /SteamLauncher/Attributes/XmlFilenameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Attributes/XmlFilenameAttribute.cs -------------------------------------------------------------------------------- /SteamLauncher/Attributes/XmlUrlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Attributes/XmlUrlAttribute.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/Config.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/LaunchBoxSystemMenuItem/EnableSteamLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/LaunchBoxSystemMenuItem/EnableSteamLauncher.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/LaunchBoxSystemMenuItem/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/LaunchBoxSystemMenuItem/Settings.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/LaunchBoxSystemMenuItem/SystemMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/LaunchBoxSystemMenuItem/SystemMenuItem.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/LaunchBoxSystemMenuItem/SystemMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/LaunchBoxSystemMenuItem/SystemMenuItems.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/LauncherToExe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/LauncherToExe.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/Platform.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/RepairPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/RepairPath.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/Repairs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/Repairs.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/SelectiveUse/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/SelectiveUse/Filter.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/SelectiveUse/FilterMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/SelectiveUse/FilterMode.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/SelectiveUse/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/SelectiveUse/FilterType.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/SelectiveUse/Filtering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/SelectiveUse/Filtering.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/Settings.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/IVTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/IVTable.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/VTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/VTable.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/VTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/VTables.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/VtEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/VtEntry.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/VtEntryParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/VtEntryParam.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/VTablesStore/VtFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/VTablesStore/VtFile.cs -------------------------------------------------------------------------------- /SteamLauncher/DataStore/XmlFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/DataStore/XmlFile.cs -------------------------------------------------------------------------------- /SteamLauncher/GameLaunchingPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/GameLaunchingPlugin.cs -------------------------------------------------------------------------------- /SteamLauncher/LaunchViaSteamMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/LaunchViaSteamMenuItem.cs -------------------------------------------------------------------------------- /SteamLauncher/Logging/FileStreamWithBackup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Logging/FileStreamWithBackup.cs -------------------------------------------------------------------------------- /SteamLauncher/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Logging/Logger.cs -------------------------------------------------------------------------------- /SteamLauncher/ProcWatch/CimWatcherEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/ProcWatch/CimWatcherEventArgs.cs -------------------------------------------------------------------------------- /SteamLauncher/ProcWatch/ProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/ProcWatch/ProcessWatcher.cs -------------------------------------------------------------------------------- /SteamLauncher/ProcWatch/ProcessWatcherEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/ProcWatch/ProcessWatcherEventArgs.cs -------------------------------------------------------------------------------- /SteamLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamLauncher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamLauncher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamLauncher/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Properties/launchSettings.json -------------------------------------------------------------------------------- /SteamLauncher/Proxy/ProxyEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Proxy/ProxyEmulator.cs -------------------------------------------------------------------------------- /SteamLauncher/Resources/logo1_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Resources/logo1_256.png -------------------------------------------------------------------------------- /SteamLauncher/Resources/logo1_enlarged_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Resources/logo1_enlarged_256.png -------------------------------------------------------------------------------- /SteamLauncher/Resources/logo2_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Resources/logo2_icon.ico -------------------------------------------------------------------------------- /SteamLauncher/SLInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SLInit.cs -------------------------------------------------------------------------------- /SteamLauncher/SettingsSystemMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SettingsSystemMenuItem.cs -------------------------------------------------------------------------------- /SteamLauncher/Shortcuts/DosBoxShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Shortcuts/DosBoxShortcut.cs -------------------------------------------------------------------------------- /SteamLauncher/Shortcuts/EmulatorShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Shortcuts/EmulatorShortcut.cs -------------------------------------------------------------------------------- /SteamLauncher/Shortcuts/GameShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Shortcuts/GameShortcut.cs -------------------------------------------------------------------------------- /SteamLauncher/Shortcuts/ScummVmShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Shortcuts/ScummVmShortcut.cs -------------------------------------------------------------------------------- /SteamLauncher/Shortcuts/WindowsShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Shortcuts/WindowsShortcut.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Attributes/VTableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Attributes/VTableIndex.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interfaces/ClientShortcuts/GetUniqueLocalAppId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interfaces/ClientShortcuts/GetUniqueLocalAppId.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interfaces/CustTypes/BitVector64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interfaces/CustTypes/BitVector64.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interfaces/CustTypes/CGameID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interfaces/CustTypes/CGameID.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interfaces/CustTypes/GameID_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interfaces/CustTypes/GameID_t.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interfaces/IClientShortcuts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interfaces/IClientShortcuts.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interop/DynamicUnmanagedFuncCaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interop/DynamicUnmanagedFuncCaller.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interop/SteamInterfaceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interop/SteamInterfaceWrapper.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interop/SteamParamStringArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interop/SteamParamStringArray.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interop/SteamStringArrayMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interop/SteamStringArrayMarshaler.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Interop/Utf8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Interop/Utf8String.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Native/SteamNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Native/SteamNative.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/Native/SysNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/Native/SysNative.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/ShortcutsVdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/ShortcutsVdf.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/SteamContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/SteamContext.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/SteamProcessInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/SteamProcessInfo.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/SteamShortcutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/SteamShortcutManager.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/VTables/NonBetaIndexStatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/VTables/NonBetaIndexStatusEnum.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/VTables/VTableEntryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/VTables/VTableEntryWrapper.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamClient/VTables/VTableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamClient/VTables/VTableWrapper.cs -------------------------------------------------------------------------------- /SteamLauncher/SteamLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamLauncher.csproj -------------------------------------------------------------------------------- /SteamLauncher/SteamLauncher.csproj.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/SteamLauncher.csproj.old -------------------------------------------------------------------------------- /SteamLauncher/Tools/ActiveWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ActiveWindow.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/AsyncLazy.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/ByteArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ByteArrayUtils.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/CloneObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/CloneObjectExtensions.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Crc32.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/CustomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/CustomExtensions.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/DateTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/DateTimeHelper.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/DelegateTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/DelegateTypeFactory.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/DisposableAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/DisposableAssemblyLoadContext.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Enumeration.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Info.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Network.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/ProcessCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ProcessCommandLine.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/ProcessExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ProcessExtension.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Range.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ReflectionHelper.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Resources.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/ShellLnk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/ShellLnk.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/UacHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/UacHelper.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/Utilities.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/WildcardMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/WildcardMatch.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/WindowMgmt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/WindowMgmt.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/WindowsLnkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/WindowsLnkFile.cs -------------------------------------------------------------------------------- /SteamLauncher/Tools/XmlCallbackSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/Tools/XmlCallbackSerializer.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/BoolToForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/BoolToForegroundConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/EnumToCollectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/EnumToCollectionConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/NameOfExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/NameOfExtension.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/NullToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/NullToVisibilityConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/PropertyInfoOfExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/PropertyInfoOfExtension.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/PropertyToDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/PropertyToDescriptionConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/PropertyToDisplayDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/PropertyToDisplayDescriptionConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/PropertyToDisplayNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/PropertyToDisplayNameConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/SliderCaptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/SliderCaptionConverter.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Converters/SwitchBindingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Converters/SwitchBindingExtension.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/CommandHandler.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/DialogHelper.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/DialogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/DialogWindow.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/ICloseable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/ICloseable.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/IDialog.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Framework/ViewModelFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Framework/ViewModelFramework.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Themes/ColorfulDarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Themes/ColorfulDarkTheme.xaml -------------------------------------------------------------------------------- /SteamLauncher/UI/Themes/ColorfulDarkTheme.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Themes/ColorfulDarkTheme.xaml.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Utils/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Utils/EnumHelper.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Utils/MouseObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Utils/MouseObserver.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/ViewModels/SteamStatusTimerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/ViewModels/SteamStatusTimerViewModel.cs -------------------------------------------------------------------------------- /SteamLauncher/UI/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /SteamLauncher/UI/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UI/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /SteamLauncher/UseSteamLauncherSystemMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/UseSteamLauncherSystemMenuItem.cs -------------------------------------------------------------------------------- /SteamLauncher/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncher/app.config -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/App.xaml -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/App.xaml.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/MainWindow.xaml -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/Resources/logo2_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/Resources/logo2_icon.ico -------------------------------------------------------------------------------- /SteamLauncherProxy-NetCore/SteamLauncherProxy-NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-NetCore/SteamLauncherProxy-NetCore.csproj -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/App.config -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/App.xaml -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/App.xaml.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/Resources/logo2_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/Resources/logo2_icon.ico -------------------------------------------------------------------------------- /SteamLauncherProxy-Wpf/SteamLauncherProxy-Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/SteamLauncherProxy-Wpf/SteamLauncherProxy-Wpf.csproj -------------------------------------------------------------------------------- /assets/images/SteamLauncher-SLEnabled_Custom_Field_Entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/SteamLauncher-SLEnabled_Custom_Field_Entry.png -------------------------------------------------------------------------------- /assets/images/SteamLauncher-SettingsWindow-Misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/SteamLauncher-SettingsWindow-Misc.png -------------------------------------------------------------------------------- /assets/images/SteamLauncher-SettingsWindow-PlatformNames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/SteamLauncher-SettingsWindow-PlatformNames.png -------------------------------------------------------------------------------- /assets/images/SteamLauncher-SettingsWindow-SelectiveUse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/SteamLauncher-SettingsWindow-SelectiveUse.png -------------------------------------------------------------------------------- /assets/images/SteamLauncher-ToolsMenuItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/SteamLauncher-ToolsMenuItems.png -------------------------------------------------------------------------------- /assets/images/logo2_window_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lahma0/SteamLauncher/HEAD/assets/images/logo2_window_256.png --------------------------------------------------------------------------------