Skip to content

Commit 3dda3c8

Browse files
v0.1.6a
1 parent dbce556 commit 3dda3c8

File tree

4 files changed

+211
-456
lines changed

4 files changed

+211
-456
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121

2222
- name: Ensure Additional Files Exist
2323
run: |
24-
if (!(Test-Path target\release-lto\WinRing0x64.sys)) {
25-
throw "WinRing0x64.sys not found!"
26-
}
2724
if (!(Test-Path target\release-lto\WinRing0x64.dll)) {
2825
throw "WinRing0x64.dll not found!"
2926
}

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ impl MyApp {
370370
.show(ui, |ui| {
371371
ui.horizontal(|ui| {
372372
ui.label(
373-
RichText::new("v0.1.5a")
373+
RichText::new("v0.1.6a")
374374
.font(FontId::proportional(LABEL_FONT_SIZE)),
375375
);
376376
ui.separator();

src/tweaks/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ pub enum TweakId {
7272
IndirectBranchPredictionBarrier,
7373
AutomaticIbrsEnable,
7474
EnableUpperAddressIgnore,
75-
DisableSecureVirtualMachine,
7675
DowngradeFp512ToFp256,
7776
DisableRsmSpecialBusCycle,
7877
DisableSmiSpecialBusCycle,
@@ -97,7 +96,6 @@ pub enum TweakId {
9796
EnableL3CodeDataPrioritization,
9897
DisableStreamingStores,
9998
DisableRedirectForReturn,
100-
DisableGlobalCStates,
10199
DisableOpCache,
102100
SpeculativeStoreModes,
103101
DisableMonitorMonitorAndMwait,
@@ -108,6 +106,7 @@ pub enum TweakId {
108106
DisablePss,
109107
DisableCoreWatchdogTimer,
110108
DisablePlatformFirstErrorHandling,
109+
DisableSecureVirtualMachine,
111110
}
112111

113112
pub fn all_tweaks<'a>() -> BTreeMap<TweakId, Tweak<'a>> {

0 commit comments

Comments
 (0)