Skip to content

Commit 3f5997e

Browse files
committed
Bump version
1 parent d12733a commit 3f5997e

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

AutoOS.appinstaller

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<AppInstaller xmlns="http://schemas.microsoft.com/appx/appinstaller/2018"
3-
Version="1.2.6.0" Uri="https://github.com/tinodin/AutoOS/releases/latest/download/AutoOS.appinstaller">
3+
Version="1.2.7.0" Uri="https://github.com/tinodin/AutoOS/releases/latest/download/AutoOS.appinstaller">
44
<MainPackage Name="AutoOS"
5-
Publisher="CN=tinodin" Version="1.2.6.0"
5+
Publisher="CN=tinodin" Version="1.2.7.0"
66
ProcessorArchitecture="x64"
77
Uri="https://github.com/tinodin/AutoOS/releases/latest/download/AutoOS.msix" />
88
<UpdateSettings>

AutoOS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
1919
<WindowsPackageType>MSIX</WindowsPackageType>
2020
<ApplicationIcon>Assets\AppIcon.ico</ApplicationIcon>
21-
<Version>1.2.6.0</Version>
21+
<Version>1.2.7.0</Version>
2222
<!--Remove git hash from assembly informational version in .NET >= 8, Example: false = 1.0.0, true = 1.0.0+xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-->
2323
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
2424
</PropertyGroup>

Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Identity
1212
Name="AutoOS"
1313
Publisher="CN=tinodin"
14-
Version="1.2.6.0" />
14+
Version="1.2.7.0" />
1515

1616
<mp:PhoneIdentity PhoneProductId="81be9a4c-5599-4f16-b2df-5df99b34cec2" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1717

Views/Settings/BIOS/BiosSettingRecommendation.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -723,6 +723,7 @@ public static class BiosSettingRecommendationsList
723723
new BiosSettingRecommendation { SetupQuestion = "Disable DF to external downstream IP SyncFloodPropagation", Type = "Option", RecommendedOption = "Sync flood disabled" },
724724
new BiosSettingRecommendation { SetupQuestion = "Disable Memory Error Injection", Type = "Option", RecommendedOption = "True" },
725725
new BiosSettingRecommendation { SetupQuestion = "Discrete GPU Hotplug Mode", Type = "Option", RecommendedOption = "Non-Hotplug Mode" },
726+
new BiosSettingRecommendation { SetupQuestion = "Discrete GPU Hotplug Mode", Type = "Option", RecommendedOption = "Basic Mode" },
726727
new BiosSettingRecommendation { SetupQuestion = "Download and Install ASUS DriverHub", Type = "Option", RecommendedOption = "Disabled" },
727728
new BiosSettingRecommendation { SetupQuestion = "Dynamic OC Switcher", Type = "Option", RecommendedOption = "Disabled" },
728729
new BiosSettingRecommendation { SetupQuestion = "ECC", Type = "Option", RecommendedOption = "Disabled" },

Views/Settings/HomeLandingPage.xaml.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,9 @@ private async Task Update()
273273
// enable automatic recovery
274274
("Enabling automatic recovery", async () => await ProcessActions.RunNsudo("TrustedInstaller", @"bcdedit /deletevalue recoveryenabled"), null),
275275

276+
// disable virtualization-based security (VBS)
277+
("Disabling Virtualization-based Security (VBS)", async () => await ProcessActions.RunNsudo("TrustedInstaller", @"reg add ""HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard"" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f"), null),
278+
276279
// enable scroll wheel for alt tab
277280
(@"Enabling Scroll Wheel for Alt Tab", async () => await ProcessActions.RunNsudo("CurrentUser", @"reg add ""HKEY_CURRENT_USER\SOFTWARE\Ingan121\ClassicWindowSwitcher"" /v ScrollWheelBehavior /t REG_DWORD /d 1 /f"), null),
278281

app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.2.6.0" name="AutoOS.app"/>
3+
<assemblyIdentity version="1.2.7.0" name="AutoOS.app"/>
44

55
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
66
<application>

0 commit comments

Comments
 (0)