max tokens

~16027 tokens

├── .gitattributes
├── .gitignore
├── Flyby11-deprecated
    ├── CpuCheckNative
    │   ├── CpuCheckNative.rc
    │   ├── CpuCheckNative.vcxproj
    │   ├── CpuCheckNative.vcxproj.filters
    │   ├── PopcntCheck.cpp
    │   ├── dllmain.cpp
    │   ├── framework.h
    │   ├── pch.cpp
    │   ├── pch.h
    │   └── resource.h
    ├── Flyby11.sln
    └── Flyby11
    │   ├── App.config
    │   ├── AppIcon.ico
    │   ├── AppIcon.png
    │   ├── CanIUpgradeView.Designer.cs
    │   ├── CanIUpgradeView.cs
    │   ├── CanIUpgradeView.resx
    │   ├── ClippyUI.Designer.cs
    │   ├── ClippyUI.cs
    │   ├── ClippyUI.resx
    │   ├── CompatibilityForm.Designer.cs
    │   ├── CompatibilityForm.cs
    │   ├── CompatibilityForm.resx
    │   ├── FAQHandler.cs
    │   ├── Flyby11.csproj
    │   ├── IsoHandler.cs
    │   ├── Locales
    │       ├── Strings.Designer.cs
    │       ├── Strings.ar.resx
    │       ├── Strings.cs-CZ.resx
    │       ├── Strings.de.resx
    │       ├── Strings.fr.resx
    │       ├── Strings.he.resx
    │       ├── Strings.hu.resx
    │       ├── Strings.it.resx
    │       ├── Strings.ja.resx
    │       ├── Strings.ko.resx
    │       ├── Strings.nl.resx
    │       ├── Strings.pl.resx
    │       ├── Strings.pt-BR.resx
    │       ├── Strings.resx
    │       ├── Strings.sv-SE.resx
    │       ├── Strings.tr.resx
    │       └── Strings.zh-CN.resx
    │   ├── Logger.cs
    │   ├── MainForm.Designer.cs
    │   ├── MainForm.cs
    │   ├── MainForm.resx
    │   ├── ProblemsForm.Designer.cs
    │   ├── ProblemsForm.cs
    │   ├── ProblemsForm.resx
    │   ├── Program.cs
    │   ├── Properties
    │       ├── AssemblyInfo.cs
    │       ├── Resources.Designer.cs
    │       ├── Resources.resx
    │       ├── Settings.Designer.cs
    │       └── Settings.settings
    │   ├── SwitchView.cs
    │   └── app.manifest
├── Flyby11
    ├── CpuCheck.cpp
    ├── Flyby11.vcxproj
    ├── Flyby11.vcxproj.filters
    ├── dllmain.cpp
    ├── framework.h
    ├── pch.cpp
    └── pch.h
├── Flyoobe.Extensions
    ├── Developer Essentials.ps1
    ├── EXTENSIONS.md
    ├── Gaming tweaks.ps1
    ├── Microsoft Defender maintenance.ps1
    ├── Network Tools.ps1
    ├── Power Actions.ps1
    └── Write-an-Extension.md
├── Flyoobe.ToolSpot-deprecated
    ├── Flyoobe.Spot.sln
    └── Flyoobe.ToolSpot
    │   ├── App.config
    │   ├── Flyoobe.Spot.csproj
    │   ├── MainForm.Designer.cs
    │   ├── MainForm.cs
    │   ├── MainForm.resx
    │   ├── Program.cs
    │   ├── Properties
    │       ├── AssemblyInfo.cs
    │       ├── Resources.Designer.cs
    │       ├── Resources.resx
    │       ├── Settings.Designer.cs
    │       └── Settings.settings
    │   └── app.manifest
├── Flyoobe.sln
├── Flyoobe
    ├── App.config
    ├── AppIcon.ico
    ├── AppIcon.png
    ├── Features
    │   ├── Ads
    │   │   ├── FileExlorerAds.cs
    │   │   ├── FinishSetupAds.cs
    │   │   ├── LockScreenAds.cs
    │   │   ├── PersonalizedAds.cs
    │   │   ├── SettingsAds.cs
    │   │   ├── StartmenuAds.cs
    │   │   ├── TailoredExperiences.cs
    │   │   ├── TipsAndSuggestions.cs
    │   │   └── WelcomeExperienceAds.cs
    │   ├── Edge
    │   │   ├── BrowserSignin.cs
    │   │   ├── DefaultTopSites.cs
    │   │   ├── DefautBrowserSetting.cs
    │   │   ├── EdgeCollections.cs
    │   │   ├── EdgeShoppingAssistant.cs
    │   │   ├── FirstRunExperience.cs
    │   │   ├── GamerMode.cs
    │   │   ├── ImportOnEachLaunch.cs
    │   │   ├── StartupBoost.cs
    │   │   ├── TabPageQuickLinks.cs
    │   │   └── UserFeedback.cs
    │   ├── FeatureBase.cs
    │   ├── FeatureLoader.cs
    │   ├── FeatureManager.cs
    │   ├── FeatureNode.cs
    │   ├── Gaming
    │   │   ├── GameDVR.cs
    │   │   ├── PowerThrotteling.cs
    │   │   └── VisualFX.cs
    │   ├── Privacy
    │   │   ├── ActivityHistory.cs
    │   │   ├── LocationTracking.cs
    │   │   ├── PrivacyExperience.cs
    │   │   └── Telemetry.cs
    │   ├── System
    │   │   ├── BSODDetails.cs
    │   │   ├── Hibernation.cs
    │   │   ├── MenuShowDelay.cs
    │   │   ├── NetworkThrottling.cs
    │   │   ├── SpeedUpShutdown.cs
    │   │   ├── SystemResponsiveness.cs
    │   │   ├── TaskbarEndTask.cs
    │   │   └── VerboseStatus.cs
    │   └── UI
    │   │   ├── BingSearch.cs
    │   │   ├── FullContextMenus.cs
    │   │   ├── SearchBoxSuggestions.cs
    │   │   ├── SearchboxTaskbarMode.cs
    │   │   ├── ShowOrHideMostUsedApps.cs
    │   │   ├── ShowTaskViewButton.cs
    │   │   ├── SnapAssistFlyout.cs
    │   │   ├── StartLayout.cs
    │   │   ├── Transparency.cs
    │   │   └── WLockScreen.cs
    ├── Flyoobe.csproj
    ├── Helper
    │   ├── BackgroundHelper.cs
    │   ├── DonationHelper.cs
    │   ├── Logger.cs
    │   ├── UIHelper.cs
    │   └── Utils.cs
    ├── IView.cs
    ├── Icons
    │   ├── AppIcon.ico
    │   └── AppIcon.png
    ├── InstallView
    │   ├── AdvancedControlView.Designer.cs
    │   ├── AdvancedControlView.cs
    │   ├── AdvancedControlView.resx
    │   ├── BackupDriversProvider.cs
    │   ├── BootMenuInfoProvider.cs
    │   ├── InPlaceRepairProvider.cs
    │   ├── InstallProviders.cs
    │   ├── MctProvider.cs
    │   ├── MountIsoProvider.cs
    │   ├── NativeResetProvider.cs
    │   ├── RebootToUefiProvider.cs
    │   ├── RufusProvider.cs
    │   ├── RunSetupFromIsoProvider.cs
    │   ├── ToolHelper.cs
    │   └── VentoyProvider.cs
    ├── MainForm.Designer.cs
    ├── MainForm.cs
    ├── MainForm.resx
    ├── NavButton.cs
    ├── OobeControl.Designer.cs
    ├── OobeControl.cs
    ├── OobeControl.resx
    ├── Program.cs
    ├── Properties
    │   ├── AssemblyInfo.cs
    │   ├── Resources.Designer.cs
    │   ├── Resources.resx
    │   ├── Settings.Designer.cs
    │   └── Settings.settings
    ├── ToolHubView
    │   ├── ToolHubCategory.cs
    │   ├── ToolHubControlView.Designer.cs
    │   ├── ToolHubControlView.cs
    │   ├── ToolHubControlView.resx
    │   ├── ToolHubDefinition.cs
    │   ├── ToolHubHelper.cs
    │   ├── ToolHubItemControl.Designer.cs
    │   ├── ToolHubItemControl.cs
    │   ├── ToolHubItemControl.resx
    │   └── ToolHubUrlDialog.cs
    ├── ViewMetadata.cs
    ├── ViewNavigator.cs
    ├── Views
    │   ├── AccountControlView.Designer.cs
    │   ├── AccountControlView.cs
    │   ├── AccountControlView.resx
    │   ├── AiControlView.Designer.cs
    │   ├── AiControlView.cs
    │   ├── AiControlView.resx
    │   ├── AppSettingsControlView.Designer.cs
    │   ├── AppSettingsControlView.cs
    │   ├── AppSettingsControlView.resx
    │   ├── AppsControlView.Designer.cs
    │   ├── AppsControlView.cs
    │   ├── AppsControlView.resx
    │   ├── DefaultsControlView.Designer.cs
    │   ├── DefaultsControlView.cs
    │   ├── DefaultsControlView.resx
    │   ├── DeviceControlView.Designer.cs
    │   ├── DeviceControlView.cs
    │   ├── DeviceControlView.resx
    │   ├── ExperienceControlView.Designer.cs
    │   ├── ExperienceControlView.cs
    │   ├── ExperienceControlView.resx
    │   ├── HomeControlView.Designer.cs
    │   ├── HomeControlView.cs
    │   ├── HomeControlView.resx
    │   ├── HomeItemControl.Designer.cs
    │   ├── HomeItemControl.cs
    │   ├── HomeItemControl.resx
    │   ├── InstallerControlView.Designer.cs
    │   ├── InstallerControlView.cs
    │   ├── InstallerControlView.resx
    │   ├── LoggerControlView.Designer.cs
    │   ├── LoggerControlView.cs
    │   ├── LoggerControlView.resx
    │   ├── NetworkControlView.Designer.cs
    │   ├── NetworkControlView.cs
    │   ├── NetworkControlView.resx
    │   ├── PersonalizationControlView.Designer.cs
    │   ├── PersonalizationControlView.cs
    │   ├── PersonalizationControlView.resx
    │   ├── UpdatesControlView.Designer.cs
    │   ├── UpdatesControlView.cs
    │   └── UpdatesControlView.resx
    └── app.manifest
├── Illustration.png
├── LICENSE
├── README.md
├── assets
    ├── Flyoobe_Profile_Community.txt
    └── Info.md
└── docs
    └── update-check.html


/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/.gitattributes


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/.gitignore


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.rc


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.vcxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.vcxproj


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.vcxproj.filters:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/CpuCheckNative.vcxproj.filters


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/PopcntCheck.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/PopcntCheck.cpp


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/dllmain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/dllmain.cpp


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/framework.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/framework.h


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/pch.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/pch.cpp


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/pch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/pch.h


--------------------------------------------------------------------------------
/Flyby11-deprecated/CpuCheckNative/resource.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/CpuCheckNative/resource.h


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11.sln


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/App.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/App.config


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/AppIcon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/AppIcon.ico


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/AppIcon.png


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CanIUpgradeView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CanIUpgradeView.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CanIUpgradeView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CanIUpgradeView.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CanIUpgradeView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CanIUpgradeView.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ClippyUI.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ClippyUI.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ClippyUI.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ClippyUI.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ClippyUI.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ClippyUI.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CompatibilityForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CompatibilityForm.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CompatibilityForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CompatibilityForm.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/CompatibilityForm.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/CompatibilityForm.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/FAQHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/FAQHandler.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Flyby11.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Flyby11.csproj


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/IsoHandler.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/IsoHandler.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.ar.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.ar.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.cs-CZ.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.cs-CZ.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.de.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.de.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.fr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.fr.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.he.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.he.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.hu.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.hu.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.it.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.it.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.ja.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.ja.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.ko.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.ko.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.nl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.nl.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.pl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.pl.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.pt-BR.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.pt-BR.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.sv-SE.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.sv-SE.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.tr.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.tr.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Locales/Strings.zh-CN.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Locales/Strings.zh-CN.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Logger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Logger.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/MainForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/MainForm.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/MainForm.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/MainForm.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/MainForm.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ProblemsForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ProblemsForm.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ProblemsForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ProblemsForm.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/ProblemsForm.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/ProblemsForm.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Program.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Properties/AssemblyInfo.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Properties/Resources.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Properties/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Properties/Resources.resx


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Properties/Settings.Designer.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/Properties/Settings.settings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/Properties/Settings.settings


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/SwitchView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/SwitchView.cs


--------------------------------------------------------------------------------
/Flyby11-deprecated/Flyby11/app.manifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11-deprecated/Flyby11/app.manifest


--------------------------------------------------------------------------------
/Flyby11/CpuCheck.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/CpuCheck.cpp


--------------------------------------------------------------------------------
/Flyby11/Flyby11.vcxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/Flyby11.vcxproj


--------------------------------------------------------------------------------
/Flyby11/Flyby11.vcxproj.filters:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/Flyby11.vcxproj.filters


--------------------------------------------------------------------------------
/Flyby11/dllmain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/dllmain.cpp


--------------------------------------------------------------------------------
/Flyby11/framework.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/framework.h


--------------------------------------------------------------------------------
/Flyby11/pch.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/pch.cpp


--------------------------------------------------------------------------------
/Flyby11/pch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyby11/pch.h


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Developer Essentials.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Developer Essentials.ps1


--------------------------------------------------------------------------------
/Flyoobe.Extensions/EXTENSIONS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/EXTENSIONS.md


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Gaming tweaks.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Gaming tweaks.ps1


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Microsoft Defender maintenance.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Microsoft Defender maintenance.ps1


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Network Tools.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Network Tools.ps1


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Power Actions.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Power Actions.ps1


--------------------------------------------------------------------------------
/Flyoobe.Extensions/Write-an-Extension.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.Extensions/Write-an-Extension.md


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.Spot.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.Spot.sln


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/App.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/App.config


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Flyoobe.Spot.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Flyoobe.Spot.csproj


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/MainForm.resx


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Program.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/AssemblyInfo.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Resources.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Resources.resx


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Settings.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Settings.settings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/Properties/Settings.settings


--------------------------------------------------------------------------------
/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/app.manifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.ToolSpot-deprecated/Flyoobe.ToolSpot/app.manifest


--------------------------------------------------------------------------------
/Flyoobe.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe.sln


--------------------------------------------------------------------------------
/Flyoobe/App.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/App.config


--------------------------------------------------------------------------------
/Flyoobe/AppIcon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/AppIcon.ico


--------------------------------------------------------------------------------
/Flyoobe/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/AppIcon.png


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/FileExlorerAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/FileExlorerAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/FinishSetupAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/FinishSetupAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/LockScreenAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/LockScreenAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/PersonalizedAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/PersonalizedAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/SettingsAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/SettingsAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/StartmenuAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/StartmenuAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/TailoredExperiences.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/TailoredExperiences.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/TipsAndSuggestions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/TipsAndSuggestions.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Ads/WelcomeExperienceAds.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Ads/WelcomeExperienceAds.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/BrowserSignin.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/BrowserSignin.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/DefaultTopSites.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/DefaultTopSites.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/DefautBrowserSetting.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/DefautBrowserSetting.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/EdgeCollections.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/EdgeCollections.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/EdgeShoppingAssistant.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/EdgeShoppingAssistant.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/FirstRunExperience.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/FirstRunExperience.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/GamerMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/GamerMode.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/ImportOnEachLaunch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/ImportOnEachLaunch.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/StartupBoost.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/StartupBoost.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/TabPageQuickLinks.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/TabPageQuickLinks.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Edge/UserFeedback.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Edge/UserFeedback.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/FeatureBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/FeatureBase.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/FeatureLoader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/FeatureLoader.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/FeatureManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/FeatureManager.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/FeatureNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/FeatureNode.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Gaming/GameDVR.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Gaming/GameDVR.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Gaming/PowerThrotteling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Gaming/PowerThrotteling.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Gaming/VisualFX.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Gaming/VisualFX.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Privacy/ActivityHistory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Privacy/ActivityHistory.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Privacy/LocationTracking.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Privacy/LocationTracking.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Privacy/PrivacyExperience.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Privacy/PrivacyExperience.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/Privacy/Telemetry.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/Privacy/Telemetry.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/BSODDetails.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/BSODDetails.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/Hibernation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/Hibernation.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/MenuShowDelay.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/MenuShowDelay.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/NetworkThrottling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/NetworkThrottling.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/SpeedUpShutdown.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/SpeedUpShutdown.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/SystemResponsiveness.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/SystemResponsiveness.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/TaskbarEndTask.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/TaskbarEndTask.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/System/VerboseStatus.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/System/VerboseStatus.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/BingSearch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/BingSearch.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/FullContextMenus.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/FullContextMenus.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/SearchBoxSuggestions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/SearchBoxSuggestions.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/SearchboxTaskbarMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/SearchboxTaskbarMode.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/ShowOrHideMostUsedApps.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/ShowOrHideMostUsedApps.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/ShowTaskViewButton.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/ShowTaskViewButton.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/SnapAssistFlyout.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/SnapAssistFlyout.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/StartLayout.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/StartLayout.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/Transparency.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/Transparency.cs


--------------------------------------------------------------------------------
/Flyoobe/Features/UI/WLockScreen.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Features/UI/WLockScreen.cs


--------------------------------------------------------------------------------
/Flyoobe/Flyoobe.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Flyoobe.csproj


--------------------------------------------------------------------------------
/Flyoobe/Helper/BackgroundHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Helper/BackgroundHelper.cs


--------------------------------------------------------------------------------
/Flyoobe/Helper/DonationHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Helper/DonationHelper.cs


--------------------------------------------------------------------------------
/Flyoobe/Helper/Logger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Helper/Logger.cs


--------------------------------------------------------------------------------
/Flyoobe/Helper/UIHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Helper/UIHelper.cs


--------------------------------------------------------------------------------
/Flyoobe/Helper/Utils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Helper/Utils.cs


--------------------------------------------------------------------------------
/Flyoobe/IView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/IView.cs


--------------------------------------------------------------------------------
/Flyoobe/Icons/AppIcon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Icons/AppIcon.ico


--------------------------------------------------------------------------------
/Flyoobe/Icons/AppIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Icons/AppIcon.png


--------------------------------------------------------------------------------
/Flyoobe/InstallView/AdvancedControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/AdvancedControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/AdvancedControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/AdvancedControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/AdvancedControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/AdvancedControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/InstallView/BackupDriversProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/BackupDriversProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/BootMenuInfoProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/BootMenuInfoProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/InPlaceRepairProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/InPlaceRepairProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/InstallProviders.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/InstallProviders.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/MctProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/MctProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/MountIsoProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/MountIsoProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/NativeResetProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/NativeResetProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/RebootToUefiProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/RebootToUefiProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/RufusProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/RufusProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/RunSetupFromIsoProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/RunSetupFromIsoProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/ToolHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/ToolHelper.cs


--------------------------------------------------------------------------------
/Flyoobe/InstallView/VentoyProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/InstallView/VentoyProvider.cs


--------------------------------------------------------------------------------
/Flyoobe/MainForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/MainForm.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/MainForm.cs


--------------------------------------------------------------------------------
/Flyoobe/MainForm.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/MainForm.resx


--------------------------------------------------------------------------------
/Flyoobe/NavButton.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/NavButton.cs


--------------------------------------------------------------------------------
/Flyoobe/OobeControl.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/OobeControl.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/OobeControl.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/OobeControl.cs


--------------------------------------------------------------------------------
/Flyoobe/OobeControl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/OobeControl.resx


--------------------------------------------------------------------------------
/Flyoobe/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Program.cs


--------------------------------------------------------------------------------
/Flyoobe/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Properties/AssemblyInfo.cs


--------------------------------------------------------------------------------
/Flyoobe/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Properties/Resources.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Properties/Resources.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Properties/Resources.resx


--------------------------------------------------------------------------------
/Flyoobe/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Properties/Settings.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Properties/Settings.settings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Properties/Settings.settings


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubCategory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubCategory.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubDefinition.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubHelper.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubItemControl.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubItemControl.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubItemControl.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubItemControl.cs


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubItemControl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubItemControl.resx


--------------------------------------------------------------------------------
/Flyoobe/ToolHubView/ToolHubUrlDialog.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ToolHubView/ToolHubUrlDialog.cs


--------------------------------------------------------------------------------
/Flyoobe/ViewMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ViewMetadata.cs


--------------------------------------------------------------------------------
/Flyoobe/ViewNavigator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/ViewNavigator.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AccountControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AccountControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AccountControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AccountControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AccountControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AccountControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/AiControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AiControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AiControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AiControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AiControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AiControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/AppSettingsControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppSettingsControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AppSettingsControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppSettingsControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AppSettingsControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppSettingsControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/AppsControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppsControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AppsControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppsControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/AppsControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/AppsControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/DefaultsControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DefaultsControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/DefaultsControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DefaultsControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/DefaultsControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DefaultsControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/DeviceControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DeviceControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/DeviceControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DeviceControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/DeviceControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/DeviceControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/ExperienceControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/ExperienceControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/ExperienceControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/ExperienceControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/ExperienceControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/ExperienceControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeItemControl.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeItemControl.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeItemControl.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeItemControl.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/HomeItemControl.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/HomeItemControl.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/InstallerControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/InstallerControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/InstallerControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/InstallerControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/InstallerControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/InstallerControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/LoggerControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/LoggerControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/LoggerControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/LoggerControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/LoggerControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/LoggerControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/NetworkControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/NetworkControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/NetworkControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/NetworkControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/NetworkControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/NetworkControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/PersonalizationControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/PersonalizationControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/PersonalizationControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/PersonalizationControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/PersonalizationControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/PersonalizationControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/Views/UpdatesControlView.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/UpdatesControlView.Designer.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/UpdatesControlView.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/UpdatesControlView.cs


--------------------------------------------------------------------------------
/Flyoobe/Views/UpdatesControlView.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/Views/UpdatesControlView.resx


--------------------------------------------------------------------------------
/Flyoobe/app.manifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Flyoobe/app.manifest


--------------------------------------------------------------------------------
/Illustration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/Illustration.png


--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/LICENSE


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/README.md


--------------------------------------------------------------------------------
/assets/Flyoobe_Profile_Community.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/assets/Flyoobe_Profile_Community.txt


--------------------------------------------------------------------------------
/assets/Info.md:
--------------------------------------------------------------------------------
1 | 
2 | 


--------------------------------------------------------------------------------
/docs/update-check.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/builtbybel/FlyOOBE/HEAD/docs/update-check.html


--------------------------------------------------------------------------------