├── .gitattributes ├── .github └── workflows │ ├── build-and-release.yml.disable │ └── dotnet-desktop.yml.disable ├── .gitignore ├── BackEnd ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Assets │ ├── UnplatedFolder.png │ ├── bye.png │ ├── error.png │ └── halal.png ├── BackendWPF.csproj ├── Dependencies │ ├── ModernWpf.MessageBox.deps.json │ ├── ModernWpf.MessageBox.dll │ ├── NewHook.ahk │ └── README.txt ├── Helpers │ ├── AppAlphHelper.cs │ ├── AppAlphMatcher.cs │ ├── AppLauncher.cs │ ├── AutoHKWinButtonHook.cs │ ├── ExtensionMethods.cs │ ├── IconHelper.cs │ ├── ProgramLoader.cs │ ├── RegistryMonitor.cs │ ├── StartMenuEntry.cs │ ├── Tile.cs │ ├── TilesManager.cs │ ├── ValueConverters.cs │ ├── WinButtonHook.cs │ ├── WindowActivator.cs │ └── WindowDeactivator.cs ├── Program.cs ├── ViewModels │ ├── StartMenu11.xaml │ └── StartMenu11.xaml.cs └── startify.ico ├── FrontEnd ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── UnplatedFolder.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── bye.png │ ├── error.png │ ├── halal.png │ ├── halalold.png │ ├── placeholder.png │ └── user-32.png ├── FrontendUWP.csproj ├── Package.appxmanifest ├── PresentationCore.dll ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── Views │ ├── Startify_StartMenuReplacement │ ├── StartMenu.xaml │ ├── StartMenu.xaml.cs │ └── StartMenuControls │ │ ├── AllAppsPaneControl.xaml │ │ ├── AllAppsPaneControl.xaml.cs │ │ ├── CustomButton.cs │ │ ├── StartMenuEntryApp.xaml │ │ ├── StartMenuEntryApp.xaml.cs │ │ ├── Tile.xaml │ │ ├── Tile.xaml.cs │ │ ├── TileGroupControl.xaml │ │ ├── TileGroupControl.xaml.cs │ │ ├── TileGroupNameBox.xaml │ │ ├── TileGroupNameBox.xaml.cs │ │ ├── UninstallFlyoutControl.xaml │ │ └── UninstallFlyoutControl.xaml.cs │ ├── Startify_StartMenuResources.xaml │ └── Startify_StartMenuUtilities │ ├── IWindowPrivate.cs │ ├── Reveal.cs │ ├── StartEntrySelector.cs │ └── VisibilityConverter.cs ├── LICENSE ├── Previews ├── notiles2.png └── tiles2.png ├── README.md ├── STInstallerBuilder ├── Configuration │ └── Settings.cfg ├── EULA.rtf ├── Output │ └── startifysetup.exe ├── README.md ├── Startify │ ├── App.xbf │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── UnplatedFolder.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── bye.png │ │ ├── error.png │ │ ├── halal.png │ │ ├── placeholder.png │ │ └── user-32.png │ ├── ColorCode.Core.dll │ ├── ColorCode.UWP.dll │ ├── ColorCode.UWP.pri │ ├── CommunityToolkit.Common.dll │ ├── CommunityToolkit.WinUI.Controls.Primitives.dll │ ├── CommunityToolkit.WinUI.Controls.Primitives.pri │ ├── CommunityToolkit.WinUI.Controls.Segmented.dll │ ├── CommunityToolkit.WinUI.Controls.Segmented.pri │ ├── CommunityToolkit.WinUI.Controls.Segmented │ │ └── CommunityToolkit.WinUI.Controls.Segmented.xr.xml │ ├── CommunityToolkit.WinUI.Extensions.dll │ ├── CommunityToolkit.WinUI.Extensions.pri │ ├── Interface │ │ ├── InterfaceResources.xbf │ │ ├── StartMenu10 │ │ │ ├── Pages │ │ │ │ ├── AppList.xbf │ │ │ │ ├── Tiles.xbf │ │ │ │ └── TilesAppList.xbf │ │ │ └── StartMenu.xbf │ │ └── StartMenu11 │ │ │ ├── Controls │ │ │ ├── AllAppsPaneControl.xbf │ │ │ ├── StartMenuEntryApp.xbf │ │ │ ├── Tile.xbf │ │ │ ├── TileGroupControl.xbf │ │ │ ├── TileGroupNameBox.xbf │ │ │ └── UninstallFlyoutControl.xbf │ │ │ └── StartMenu.xbf │ ├── Interop.IWshRuntimeLibrary.dll │ ├── MicaWPF.Core.dll │ ├── MicaWPF.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Graphics.Canvas.dll │ ├── Microsoft.Graphics.Canvas.winmd │ ├── Microsoft.Toolkit.Uwp.Notifications.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Core.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Core.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Core │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.Core.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Input.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Input.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Input │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.Input.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Layout │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.Layout.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Markdown │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.Markdown.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Media.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Media.pri │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Media │ │ └── Microsoft.Toolkit.Uwp.UI.Controls.Media.xr.xml │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.dll │ ├── Microsoft.Toolkit.Uwp.UI.Controls.Primitives.pri │ ├── Microsoft.Toolkit.Uwp.UI.dll │ ├── Microsoft.Toolkit.Uwp.UI.pri │ ├── Microsoft.Toolkit.Uwp.dll │ ├── Microsoft.Toolkit.Uwp.pri │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.Managed.dll │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.dll │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.pri │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.winmd │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.xml │ ├── Microsoft.Toolkit.Wpf.UI.XamlHost.dll │ ├── Microsoft.Toolkit.dll │ ├── Microsoft.UI.Xaml.dll │ ├── Microsoft.UI.Xaml.pri │ ├── Microsoft.UI.Xaml.winmd │ ├── Microsoft.UI.Xaml │ │ └── Assets │ │ │ └── NoiseAsset_256X256_PNG.png │ ├── Microsoft.Web.WebView2.Core.dll │ ├── Microsoft.Web.WebView2.Core.winmd │ ├── Microsoft.Web.WebView2.WinForms.dll │ ├── Microsoft.Web.WebView2.Wpf.dll │ ├── Microsoft.Win32.Registry.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── Microsoft.Xaml.Interactions.dll │ ├── Microsoft.Xaml.Interactions.pri │ ├── Microsoft.Xaml.Interactivity.dll │ ├── Microsoft.Xaml.Interactivity.pri │ ├── ModernWpf.Controls.dll │ ├── ModernWpf.MessageBox.dll │ ├── ModernWpf.dll │ ├── NoiseAsset_256x256_PNG.png │ ├── Properties │ │ └── Default.rd.xml │ ├── Shell.exe │ ├── Shell.xr.xml │ ├── StartifyBackend.deps.json │ ├── StartifyBackend.dll │ ├── StartifyBackend.exe │ ├── StartifyBackend.runtimeconfig.dev.json │ ├── StartifyBackend.runtimeconfig.json │ ├── System.CodeDom.dll │ ├── System.Collections.Immutable.dll │ ├── System.Drawing.Common.dll │ ├── System.Management.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Security.AccessControl.dll │ ├── System.Security.Principal.Windows.dll │ ├── System.Text.Encodings.Web.dll │ ├── System.Text.Json.dll │ ├── WebView2Loader.dll │ ├── af-ZA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── am-ET │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ar-SA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── az-Latn-AZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── be-BY │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── bg-BG │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── bn-BD │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── bs-Latn-BA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ca-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── concrt140_app.dll │ ├── concrt140d_app.dll │ ├── cs-CZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── da-DK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── de-DE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── el-GR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── en-GB │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── es-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── es-MX │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── et-EE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── eu-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── fa-IR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── fi-FI │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── fr-CA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── fr-FR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── gl-ES │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ha-Latn-NG │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── he-IL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── hi-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── hr-HR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── hu-HU │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── id-ID │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── is-IS │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── it-IT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ja-JP │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ka-GE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── kk-KZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── km-KH │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── kn-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ko-KR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── lo-LA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── lt-LT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── lv-LV │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── mk-MK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ml-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ms-MY │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── msvcp140_1_app.dll │ ├── msvcp140_1d_app.dll │ ├── msvcp140_2_app.dll │ ├── msvcp140_2d_app.dll │ ├── msvcp140_app.dll │ ├── msvcp140d_app.dll │ ├── nb-NO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── nl-NL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── nn-NO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── pl-PL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── pt-BR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── pt-PT │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── resources.pri │ ├── ro-RO │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ru-RU │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── runtimes │ │ ├── unix │ │ │ └── lib │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ │ └── netcoreapp3.1 │ │ │ │ └── System.Drawing.Common.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── WebView2Loader.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── WebView2Loader.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── WebView2Loader.dll │ │ ├── win │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ ├── System.Management.dll │ │ │ │ └── System.Security.AccessControl.dll │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ │ ├── netcoreapp3.1 │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ └── System.Drawing.Common.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ ├── win10-arm │ │ │ └── native │ │ │ │ ├── Microsoft.Graphics.Canvas.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.pri │ │ │ │ ├── Microsoft.UI.Xaml.dll │ │ │ │ ├── Microsoft.UI.Xaml.pri │ │ │ │ └── Microsoft.UI.Xaml │ │ │ │ └── Assets │ │ │ │ └── NoiseAsset_256x256_PNG.png │ │ ├── win10-arm64 │ │ │ └── native │ │ │ │ ├── Microsoft.Graphics.Canvas.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.pri │ │ │ │ ├── Microsoft.UI.Xaml.dll │ │ │ │ ├── Microsoft.UI.Xaml.pri │ │ │ │ └── Microsoft.UI.Xaml │ │ │ │ └── Assets │ │ │ │ └── NoiseAsset_256x256_PNG.png │ │ ├── win10-x64 │ │ │ └── native │ │ │ │ ├── Microsoft.Graphics.Canvas.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.dll │ │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.pri │ │ │ │ ├── Microsoft.UI.Xaml.dll │ │ │ │ ├── Microsoft.UI.Xaml.pri │ │ │ │ └── Microsoft.UI.Xaml │ │ │ │ └── Assets │ │ │ │ └── NoiseAsset_256x256_PNG.png │ │ └── win10-x86 │ │ │ └── native │ │ │ ├── Microsoft.Graphics.Canvas.dll │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.dll │ │ │ ├── Microsoft.Toolkit.Win32.UI.XamlHost.pri │ │ │ ├── Microsoft.UI.Xaml.dll │ │ │ ├── Microsoft.UI.Xaml.pri │ │ │ └── Microsoft.UI.Xaml │ │ │ └── Assets │ │ │ └── NoiseAsset_256x256_PNG.png │ ├── securifybv.PropertyStore.dll │ ├── securifybv.ShellLink.dll │ ├── sk-SK │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── sl-SI │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── sq-AL │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── sr-Latn-RS │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── startify.ico │ ├── sv-SE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── sw-KE │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── ta-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── te-IN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── th-TH │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── tr-TR │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── uk-UA │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── uz-Latn-UZ │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── vcamp140_app.dll │ ├── vcamp140d_app.dll │ ├── vccorlib140_app.dll │ ├── vccorlib140d_app.dll │ ├── vcomp140_app.dll │ ├── vcomp140d_app.dll │ ├── vcruntime140_1_app.dll │ ├── vcruntime140_1d_app.dll │ ├── vcruntime140_app.dll │ ├── vcruntime140d_app.dll │ ├── vi-VN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ ├── zh-CN │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll │ └── zh-TW │ │ ├── ModernWpf.Controls.resources.dll │ │ └── ModernWpf.resources.dll ├── setup.iss └── startify.ico ├── Startify.sln ├── StartifyConfigurator ├── SettingsPanel2.sln ├── Shell │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Dark │ │ │ ├── 10.png │ │ │ ├── 11c.png │ │ │ └── 8.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── Light │ │ │ ├── 10.png │ │ │ ├── 11c.png │ │ │ ├── 8.png │ │ │ ├── Acrylic.png │ │ │ └── Mica.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Package.appxmanifest │ ├── PresentationCore.dll │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Shell │ │ ├── ShellUtils │ │ │ └── IWindowPrivate.cs │ │ └── Start │ │ │ ├── Advanced.xaml │ │ │ ├── Advanced.xaml.cs │ │ │ ├── Folders.xaml │ │ │ ├── Folders.xaml.cs │ │ │ ├── General.xaml │ │ │ ├── General.xaml.cs │ │ │ ├── Layout.xaml │ │ │ ├── Layout.xaml.cs │ │ │ ├── Settings.xaml │ │ │ ├── Settings.xaml.cs │ │ │ ├── SettingsXAML.xaml │ │ │ ├── SettingsXAML.xaml.cs │ │ │ ├── Styling.xaml │ │ │ └── Styling.xaml.cs │ └── UWP.csproj └── WPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Program.cs │ ├── Views │ ├── SettingsPanel.xaml │ └── SettingsPanel.xaml.cs │ ├── WPF.csproj │ └── startify.ico ├── logonew.png ├── startify.ico ├── startifytheme.txt └── tempfix.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yml.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/.github/workflows/build-and-release.yml.disable -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml.disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/.github/workflows/dotnet-desktop.yml.disable -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/.gitignore -------------------------------------------------------------------------------- /BackEnd/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/App.xaml -------------------------------------------------------------------------------- /BackEnd/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/App.xaml.cs -------------------------------------------------------------------------------- /BackEnd/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/AssemblyInfo.cs -------------------------------------------------------------------------------- /BackEnd/Assets/UnplatedFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Assets/UnplatedFolder.png -------------------------------------------------------------------------------- /BackEnd/Assets/bye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Assets/bye.png -------------------------------------------------------------------------------- /BackEnd/Assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Assets/error.png -------------------------------------------------------------------------------- /BackEnd/Assets/halal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Assets/halal.png -------------------------------------------------------------------------------- /BackEnd/BackendWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/BackendWPF.csproj -------------------------------------------------------------------------------- /BackEnd/Dependencies/ModernWpf.MessageBox.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Dependencies/ModernWpf.MessageBox.deps.json -------------------------------------------------------------------------------- /BackEnd/Dependencies/ModernWpf.MessageBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Dependencies/ModernWpf.MessageBox.dll -------------------------------------------------------------------------------- /BackEnd/Dependencies/NewHook.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Dependencies/NewHook.ahk -------------------------------------------------------------------------------- /BackEnd/Dependencies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Dependencies/README.txt -------------------------------------------------------------------------------- /BackEnd/Helpers/AppAlphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/AppAlphHelper.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/AppAlphMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/AppAlphMatcher.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/AppLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/AppLauncher.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/AutoHKWinButtonHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/AutoHKWinButtonHook.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/ExtensionMethods.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/IconHelper.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/ProgramLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/ProgramLoader.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/RegistryMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/RegistryMonitor.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/StartMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/StartMenuEntry.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/Tile.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/TilesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/TilesManager.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/ValueConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/ValueConverters.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/WinButtonHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/WinButtonHook.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/WindowActivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/WindowActivator.cs -------------------------------------------------------------------------------- /BackEnd/Helpers/WindowDeactivator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Helpers/WindowDeactivator.cs -------------------------------------------------------------------------------- /BackEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/Program.cs -------------------------------------------------------------------------------- /BackEnd/ViewModels/StartMenu11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/ViewModels/StartMenu11.xaml -------------------------------------------------------------------------------- /BackEnd/ViewModels/StartMenu11.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/ViewModels/StartMenu11.xaml.cs -------------------------------------------------------------------------------- /BackEnd/startify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/BackEnd/startify.ico -------------------------------------------------------------------------------- /FrontEnd/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/App.xaml -------------------------------------------------------------------------------- /FrontEnd/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/App.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/UnplatedFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/UnplatedFolder.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /FrontEnd/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /FrontEnd/Assets/bye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/bye.png -------------------------------------------------------------------------------- /FrontEnd/Assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/error.png -------------------------------------------------------------------------------- /FrontEnd/Assets/halal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/halal.png -------------------------------------------------------------------------------- /FrontEnd/Assets/halalold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/halalold.png -------------------------------------------------------------------------------- /FrontEnd/Assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/placeholder.png -------------------------------------------------------------------------------- /FrontEnd/Assets/user-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Assets/user-32.png -------------------------------------------------------------------------------- /FrontEnd/FrontendUWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/FrontendUWP.csproj -------------------------------------------------------------------------------- /FrontEnd/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Package.appxmanifest -------------------------------------------------------------------------------- /FrontEnd/PresentationCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/PresentationCore.dll -------------------------------------------------------------------------------- /FrontEnd/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FrontEnd/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Properties/Default.rd.xml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenu.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenu.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenu.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/AllAppsPaneControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/AllAppsPaneControl.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/AllAppsPaneControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/AllAppsPaneControl.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/CustomButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/CustomButton.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/StartMenuEntryApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/StartMenuEntryApp.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/StartMenuEntryApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/StartMenuEntryApp.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/Tile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/Tile.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/Tile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/Tile.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupControl.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupControl.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupNameBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupNameBox.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupNameBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/TileGroupNameBox.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/UninstallFlyoutControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/UninstallFlyoutControl.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/UninstallFlyoutControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuReplacement/StartMenuControls/UninstallFlyoutControl.xaml.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuResources.xaml -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuUtilities/IWindowPrivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuUtilities/IWindowPrivate.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuUtilities/Reveal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuUtilities/Reveal.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuUtilities/StartEntrySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuUtilities/StartEntrySelector.cs -------------------------------------------------------------------------------- /FrontEnd/Views/Startify_StartMenuUtilities/VisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/FrontEnd/Views/Startify_StartMenuUtilities/VisibilityConverter.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/LICENSE -------------------------------------------------------------------------------- /Previews/notiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/Previews/notiles2.png -------------------------------------------------------------------------------- /Previews/tiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/Previews/tiles2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/README.md -------------------------------------------------------------------------------- /STInstallerBuilder/Configuration/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Configuration/Settings.cfg -------------------------------------------------------------------------------- /STInstallerBuilder/EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/EULA.rtf -------------------------------------------------------------------------------- /STInstallerBuilder/Output/startifysetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Output/startifysetup.exe -------------------------------------------------------------------------------- /STInstallerBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/README.md -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/App.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/App.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/UnplatedFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/UnplatedFolder.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/bye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/bye.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/error.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/halal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/halal.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/placeholder.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Assets/user-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Assets/user-32.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ColorCode.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ColorCode.Core.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ColorCode.UWP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ColorCode.UWP.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ColorCode.UWP.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ColorCode.UWP.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.Common.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Primitives.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Primitives.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Primitives.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented/CommunityToolkit.WinUI.Controls.Segmented.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Controls.Segmented/CommunityToolkit.WinUI.Controls.Segmented.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Extensions.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/CommunityToolkit.WinUI.Extensions.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/CommunityToolkit.WinUI.Extensions.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/InterfaceResources.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/InterfaceResources.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu10/Pages/AppList.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu10/Pages/AppList.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu10/Pages/Tiles.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu10/Pages/Tiles.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu10/Pages/TilesAppList.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu10/Pages/TilesAppList.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu10/StartMenu.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu10/StartMenu.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/AllAppsPaneControl.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/AllAppsPaneControl.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/StartMenuEntryApp.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/StartMenuEntryApp.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/Tile.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/Tile.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/TileGroupControl.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/TileGroupControl.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/TileGroupNameBox.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/TileGroupNameBox.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/Controls/UninstallFlyoutControl.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/Controls/UninstallFlyoutControl.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interface/StartMenu11/StartMenu.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interface/StartMenu11/StartMenu.xbf -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Interop.IWshRuntimeLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Interop.IWshRuntimeLibrary.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/MicaWPF.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/MicaWPF.Core.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/MicaWPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/MicaWPF.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Graphics.Canvas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Graphics.Canvas.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Graphics.Canvas.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Graphics.Canvas.winmd -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.Notifications.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.Notifications.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core/Microsoft.Toolkit.Uwp.UI.Controls.Core.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Core/Microsoft.Toolkit.Uwp.UI.Controls.Core.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid/Microsoft.Toolkit.Uwp.UI.Controls.DataGrid.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input/Microsoft.Toolkit.Uwp.UI.Controls.Input.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Input/Microsoft.Toolkit.Uwp.UI.Controls.Input.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout/Microsoft.Toolkit.Uwp.UI.Controls.Layout.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Layout/Microsoft.Toolkit.Uwp.UI.Controls.Layout.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Markdown/Microsoft.Toolkit.Uwp.UI.Controls.Markdown.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media/Microsoft.Toolkit.Uwp.UI.Controls.Media.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Media/Microsoft.Toolkit.Uwp.UI.Controls.Media.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Primitives.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Primitives.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.Controls.Primitives.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.UI.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Uwp.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.Managed.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.Managed.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.winmd -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Win32.UI.XamlHost.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.Wpf.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.Wpf.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Toolkit.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.UI.Xaml.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.UI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.UI.Xaml.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.UI.Xaml.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.UI.Xaml.winmd -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.UI.Xaml/Assets/NoiseAsset_256X256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.UI.Xaml/Assets/NoiseAsset_256X256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Web.WebView2.Core.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Web.WebView2.Core.winmd -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Web.WebView2.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Web.WebView2.WinForms.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Web.WebView2.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Web.WebView2.Wpf.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Xaml.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Xaml.Interactions.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Xaml.Interactions.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Xaml.Interactions.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Xaml.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Xaml.Interactivity.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Microsoft.Xaml.Interactivity.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Microsoft.Xaml.Interactivity.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ModernWpf.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ModernWpf.Controls.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ModernWpf.MessageBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ModernWpf.MessageBox.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ModernWpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ModernWpf.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/NoiseAsset_256x256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/NoiseAsset_256x256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Properties/Default.rd.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Shell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Shell.exe -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/Shell.xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/Shell.xr.xml -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/StartifyBackend.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/StartifyBackend.deps.json -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/StartifyBackend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/StartifyBackend.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/StartifyBackend.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/StartifyBackend.exe -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/StartifyBackend.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/StartifyBackend.runtimeconfig.dev.json -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/StartifyBackend.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/StartifyBackend.runtimeconfig.json -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.CodeDom.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Drawing.Common.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Management.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/System.Text.Json.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/WebView2Loader.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/af-ZA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/af-ZA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/af-ZA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/af-ZA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/am-ET/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/am-ET/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/am-ET/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/am-ET/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ar-SA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ar-SA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ar-SA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ar-SA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/az-Latn-AZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/az-Latn-AZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/az-Latn-AZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/az-Latn-AZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/be-BY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/be-BY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/be-BY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/be-BY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bg-BG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bg-BG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bg-BG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bg-BG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bn-BD/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bn-BD/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bn-BD/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bn-BD/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bs-Latn-BA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bs-Latn-BA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/bs-Latn-BA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/bs-Latn-BA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ca-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ca-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ca-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ca-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/concrt140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/concrt140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/concrt140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/concrt140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/cs-CZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/cs-CZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/cs-CZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/cs-CZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/da-DK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/da-DK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/da-DK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/da-DK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/de-DE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/de-DE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/de-DE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/de-DE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/el-GR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/el-GR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/el-GR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/el-GR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/en-GB/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/en-GB/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/en-GB/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/en-GB/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/es-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/es-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/es-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/es-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/es-MX/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/es-MX/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/es-MX/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/es-MX/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/et-EE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/et-EE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/et-EE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/et-EE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/eu-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/eu-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/eu-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/eu-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fa-IR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fa-IR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fa-IR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fa-IR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fi-FI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fi-FI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fi-FI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fi-FI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fr-CA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fr-CA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fr-CA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fr-CA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fr-FR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fr-FR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/fr-FR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/fr-FR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/gl-ES/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/gl-ES/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/gl-ES/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/gl-ES/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ha-Latn-NG/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ha-Latn-NG/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ha-Latn-NG/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ha-Latn-NG/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/he-IL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/he-IL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/he-IL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/he-IL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hi-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hi-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hi-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hi-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hr-HR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hr-HR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hr-HR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hr-HR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hu-HU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hu-HU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/hu-HU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/hu-HU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/id-ID/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/id-ID/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/id-ID/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/id-ID/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/is-IS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/is-IS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/is-IS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/is-IS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/it-IT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/it-IT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/it-IT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/it-IT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ja-JP/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ja-JP/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ja-JP/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ja-JP/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ka-GE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ka-GE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ka-GE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ka-GE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/kk-KZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/kk-KZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/kk-KZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/kk-KZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/km-KH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/km-KH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/km-KH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/km-KH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/kn-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/kn-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/kn-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/kn-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ko-KR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ko-KR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ko-KR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ko-KR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lo-LA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lo-LA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lo-LA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lo-LA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lt-LT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lt-LT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lt-LT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lt-LT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lv-LV/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lv-LV/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/lv-LV/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/lv-LV/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/mk-MK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/mk-MK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/mk-MK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/mk-MK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ml-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ml-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ml-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ml-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ms-MY/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ms-MY/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ms-MY/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ms-MY/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140_1_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140_1_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140_1d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140_1d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140_2_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140_2_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140_2d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140_2d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/msvcp140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/msvcp140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nb-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nb-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nb-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nb-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nl-NL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nl-NL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nl-NL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nl-NL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nn-NO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nn-NO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/nn-NO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/nn-NO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pl-PL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pl-PL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pl-PL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pl-PL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pt-BR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pt-BR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pt-BR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pt-BR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pt-PT/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pt-PT/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/pt-PT/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/pt-PT/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/resources.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ro-RO/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ro-RO/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ro-RO/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ro-RO/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ru-RU/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ru-RU/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ru-RU/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ru-RU/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win-arm64/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win-arm64/native/WebView2Loader.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win-x64/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win-x64/native/WebView2Loader.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win-x86/native/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win-x86/native/WebView2Loader.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.0/System.Management.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Graphics.Canvas.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Graphics.Canvas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Graphics.Canvas.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-arm64/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Graphics.Canvas.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x64/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Graphics.Canvas.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Toolkit.Win32.UI.XamlHost.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.Toolkit.Win32.UI.XamlHost.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml.pri -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/runtimes/win10-x86/native/Microsoft.UI.Xaml/Assets/NoiseAsset_256x256_PNG.png -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/securifybv.PropertyStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/securifybv.PropertyStore.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/securifybv.ShellLink.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/securifybv.ShellLink.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sk-SK/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sk-SK/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sk-SK/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sk-SK/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sl-SI/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sl-SI/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sl-SI/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sl-SI/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sq-AL/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sq-AL/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sq-AL/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sq-AL/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sr-Latn-RS/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sr-Latn-RS/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sr-Latn-RS/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sr-Latn-RS/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/startify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/startify.ico -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sv-SE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sv-SE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sv-SE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sv-SE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sw-KE/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sw-KE/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/sw-KE/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/sw-KE/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ta-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ta-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/ta-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/ta-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/te-IN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/te-IN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/te-IN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/te-IN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/th-TH/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/th-TH/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/th-TH/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/th-TH/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/tr-TR/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/tr-TR/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/tr-TR/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/tr-TR/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/uk-UA/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/uk-UA/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/uk-UA/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/uk-UA/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/uz-Latn-UZ/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/uz-Latn-UZ/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/uz-Latn-UZ/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/uz-Latn-UZ/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcamp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcamp140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcamp140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcamp140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vccorlib140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vccorlib140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vccorlib140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vccorlib140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcomp140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcomp140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcomp140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcomp140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcruntime140_1_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcruntime140_1_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcruntime140_1d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcruntime140_1d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcruntime140_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcruntime140_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vcruntime140d_app.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vcruntime140d_app.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vi-VN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vi-VN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/vi-VN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/vi-VN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/zh-CN/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/zh-CN/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/zh-CN/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/zh-CN/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/zh-TW/ModernWpf.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/zh-TW/ModernWpf.Controls.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/Startify/zh-TW/ModernWpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/Startify/zh-TW/ModernWpf.resources.dll -------------------------------------------------------------------------------- /STInstallerBuilder/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/setup.iss -------------------------------------------------------------------------------- /STInstallerBuilder/startify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/STInstallerBuilder/startify.ico -------------------------------------------------------------------------------- /Startify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/Startify.sln -------------------------------------------------------------------------------- /StartifyConfigurator/SettingsPanel2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/SettingsPanel2.sln -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/App.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/App.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Dark/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Dark/10.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Dark/11c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Dark/11c.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Dark/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Dark/8.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Light/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Light/10.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Light/11c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Light/11c.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Light/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Light/8.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Light/Acrylic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Light/Acrylic.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Light/Mica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Light/Mica.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Package.appxmanifest -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/PresentationCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/PresentationCore.dll -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Properties/Default.rd.xml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/ShellUtils/IWindowPrivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/ShellUtils/IWindowPrivate.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Advanced.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Advanced.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Advanced.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Advanced.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Folders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Folders.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Folders.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Folders.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/General.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/General.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/General.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/General.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Layout.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Layout.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Layout.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Layout.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Settings.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Settings.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/SettingsXAML.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/SettingsXAML.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/SettingsXAML.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/SettingsXAML.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Styling.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Styling.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/Shell/Start/Styling.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/Shell/Start/Styling.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/Shell/UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/Shell/UWP.csproj -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/App.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/App.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/Program.cs -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/Views/SettingsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/Views/SettingsPanel.xaml -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/Views/SettingsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/Views/SettingsPanel.xaml.cs -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/WPF.csproj -------------------------------------------------------------------------------- /StartifyConfigurator/WPF/startify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/StartifyConfigurator/WPF/startify.ico -------------------------------------------------------------------------------- /logonew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/logonew.png -------------------------------------------------------------------------------- /startify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/startify.ico -------------------------------------------------------------------------------- /startifytheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/startifytheme.txt -------------------------------------------------------------------------------- /tempfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixkote/Startify/HEAD/tempfix.png --------------------------------------------------------------------------------