├── .gitattributes ├── LICENSE ├── LauncherDesktop.sln ├── LauncherDesktop ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── KeyBoardHook.cs ├── LauncherDesktop.csproj ├── LauncherDesktop.csproj.user ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.cs └── icon_Uqd_icon.ico ├── README.md └── UpdateToolsV1 ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── UpdateToolsv1.csproj ├── icon_Uqd_icon.ico └── iconupdate_o8b_icon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /LauncherDesktop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop.sln -------------------------------------------------------------------------------- /LauncherDesktop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/App.config -------------------------------------------------------------------------------- /LauncherDesktop/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Form1.Designer.cs -------------------------------------------------------------------------------- /LauncherDesktop/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Form1.cs -------------------------------------------------------------------------------- /LauncherDesktop/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Form1.resx -------------------------------------------------------------------------------- /LauncherDesktop/KeyBoardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/KeyBoardHook.cs -------------------------------------------------------------------------------- /LauncherDesktop/LauncherDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/LauncherDesktop.csproj -------------------------------------------------------------------------------- /LauncherDesktop/LauncherDesktop.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/LauncherDesktop.csproj.user -------------------------------------------------------------------------------- /LauncherDesktop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Program.cs -------------------------------------------------------------------------------- /LauncherDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LauncherDesktop/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LauncherDesktop/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Properties/Resources.resx -------------------------------------------------------------------------------- /LauncherDesktop/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LauncherDesktop/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Properties/Settings.settings -------------------------------------------------------------------------------- /LauncherDesktop/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/Settings.cs -------------------------------------------------------------------------------- /LauncherDesktop/icon_Uqd_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/LauncherDesktop/icon_Uqd_icon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/README.md -------------------------------------------------------------------------------- /UpdateToolsV1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/App.config -------------------------------------------------------------------------------- /UpdateToolsV1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Form1.Designer.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Form1.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Form1.resx -------------------------------------------------------------------------------- /UpdateToolsV1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Program.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Properties/Resources.resx -------------------------------------------------------------------------------- /UpdateToolsV1/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /UpdateToolsV1/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/Properties/Settings.settings -------------------------------------------------------------------------------- /UpdateToolsV1/UpdateToolsv1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/UpdateToolsv1.csproj -------------------------------------------------------------------------------- /UpdateToolsV1/icon_Uqd_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/icon_Uqd_icon.ico -------------------------------------------------------------------------------- /UpdateToolsV1/iconupdate_o8b_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrShadowy/AppLauncher/HEAD/UpdateToolsV1/iconupdate_o8b_icon.ico --------------------------------------------------------------------------------