OmenCore is an independent control center for HP OMEN and Victus systems. It focuses on the local workflows people actually use in OMEN Gaming Hub: fan control, performance profiles, telemetry, keyboard lighting, OSD, power tools, diagnostics, and safe cleanup of HP background software.
It runs without ads, account prompts, cloud telemetry, or OMEN Gaming Hub. Hardware access is handled through local WMI BIOS, EC, PawnIO, Linux sysfs, and platform backends when the device exposes them.
| Area | What OmenCore Provides |
|---|---|
| Fan and thermal control | WMI BIOS fan profiles, Max/Auto handoff, custom curves where the model safely supports them |
| Performance profiles | Quiet, Balanced, Performance, custom profile routing, power-policy diagnostics |
| GPU controls | MUX switching and GPU Power Boost on supported OMEN firmware |
| RGB | OMEN keyboard zone lighting plus external RGB provider integration where supported |
| Monitoring | CPU/GPU temperature, load, fan telemetry, health state, history, and core-control diagnostics |
| OSD and tray | Click-through overlay, hotkey toasts, quick popup, live tray status |
| Cleanup | OMEN Gaming Hub and HP bloatware detection/removal helpers |
| Linux | CLI and Avalonia GUI for supported hp-wmi/ec_sys/sysfs paths |
| OmenCore Principle | Result |
|---|---|
| Local first | No sign-in, no ads, no outbound telemetry (details) |
| Safety gated | Unsupported EC/fan/RGB paths stay hidden or diagnostic-only |
| Field driven | Model quirks are tracked by ProductId, BIOS behavior, and logs |
| Fast startup | Hardware polling and heavy providers are deferred where possible |
| Honest capability UI | Requested, confirmed, degraded, and unsupported states are separated |
Version: 4.2.0
Status: Code-complete, test-verified (1367/1367 tests, 0 build warnings). Held for a field-testing window — portable test builds are out with a real-hardware tester — before tagging and building release artifacts.
Release notes: docs/CHANGELOG_v4.2.0.md
Roadmap: docs/ROADMAP_v4.2.0.md
v4.2.0 centers on three pillars: sensor-truth/fan-control accuracy, perceived UI performance, and a navigation redesign — plus field-report bug fixes absorbed as they arrived. The most significant fix: on boards exposing several ACPI thermal zones, OmenCore could latch onto whichever zone WMI enumerated first and keep it for the whole session — often a chassis/ambient sensor sitting far below the real CPU temperature. Fan curves consume that value, so it was a fan-control bug, not just a display one; selection is now unit-tested and re-evaluated every poll instead of latched. Navigation moved from a horizontal tab strip (which scrolled out of view below a certain window width) to a vertical rail, then redesigned twice more after a real-hardware tester found it read as two separate boxes, squeezed the tab list on a shorter window, and needed more visual distinction between sections. AMD CPU undervolt status stopped claiming an independent hardware "readback" the AMD SMU path doesn't actually have. Two RGB detection false positives were found and fixed from the same field testing: a false "OMEN Keyboard" badge shown on hardware that has none, and iCUE not being detected despite running.
- Fixed: CPU temperature could report a chassis sensor instead of the CPU on boards with multiple ACPI thermal zones — affects fan control, not just the display. Selection is now a pure, unit-tested function re-evaluated every poll rather than latched once per session.
- Added: the CPU temperature source (WMI BIOS / ACPI / LibreHardwareMonitor fallback) is now visible as a Dashboard tooltip and in the diagnostics export, plus a new Diagnostics-tab card comparing all three sources side by side on demand.
- Changed: navigation moved from a horizontal, scroll-out-of-view tab strip to a vertical rail with visually grouped sections — redesigned three more times after real-hardware feedback: merging the rail into the sidebar as one panel, moving Quick Actions out to keep the tab list's vertical space, adding colored (orange-to-red) group separators, and auto-fit scaling so the tab list shrinks to fit a short window instead of just scrolling.
- Fixed: AMD CPU undervolt status text claimed "readback matches requested" when the AMD SMU path has no independent hardware register to read back from — it was comparing the app's own last-written value to itself. Now says so explicitly.
- Fixed: two RGB detection false positives, both found via real-hardware field testing — a false "OMEN Keyboard" badge shown on a system with no HP hardware at all (a keyboard-model-detection exception handler was defaulting to a real OMEN config instead of "no config"), and iCUE not detected despite running (an exact-process-name check that breaks every time Corsair renames the iCUE executable across major versions).
- Fixed: the Games tab's virtualization was silently doing nothing — a
WrapPaneloverride defeated theVirtualizingStackPanelsettings already declared next to it — and the per-game layout was reflowed into a more scannable single-line row. - Improved: the Tuning tab's 16 buttons (CPU undervolt, power limits, thermal offset, GPU overclock) went from zero accessibility labels and 4 tooltips to full labeling and risk-aware tooltips everywhere, on the page where a mis-click has the most real consequence.
- Added: fan curve share codes — copy the current curve to the clipboard as a one-line code, or paste one in to import, for sharing in Discord/GitHub where a file attachment is awkward.
- Added: startup and tab-switch timing measured on every run, a reduce-motion preference (gating future animation work), and a background-thread timer coordinator.
- Linux: added sysfs support for the
omen-rgb-keyboardDKMS driver, and fixed a fan-control warning that pointed users at a workaround that does nothing on boards where Max Fan is actually the working override. - Typography: Roboto Condensed font declarations consolidated onto two shared resources across 105 XAML sites and 13 C# call sites (step 1, shipped, zero visual change). The actual font switch (step 2) was attempted, found genuinely non-deterministic in testing (glyph resolution differed between an isolated test run and the full suite), and reverted rather than shipped in a state observed failing part of the time.
- Field reports: five GitHub issues triaged (#177, #141, #163, #137, plus independent Discord confirmation the v4.1.7 Max-Fan-Latch fix is holding across a different board and reporter), and three community projects (OmenXHub, OmenCtl,
omen-rgb-keyboard) reviewed for adaptable ideas — none of their code copied, since OmenCore is MIT and two of the three are GPLv3.
Full detail on every item in docs/CHANGELOG_v4.2.0.md.
- Fixed: unconfirmed EC power-limit register writes (CPU PL1/PL2, GPU TGP) were attempted by default on any board that didn't explicitly opt out — a new
SupportsEcPowerLimitscapability flag now defaults this off everywhere until a model's addresses are field-confirmed. Safety-relevant; no board has ever had these addresses confirmed correct. - Fixed: switching Performance Mode away from an active Max fan hold cleared OmenCore's internal state without releasing the real BIOS
SetFanMaxlatch, leaving fans stuck at maximum speed until the app was fully closed (reported on board8DCD, HP Victus 15 fa2082wm) —WmiFanController.SetPerformanceModenow releases the latch before clearing its tracking flags. - Fixed: GPU Power Boost's EC fallback claimed "Extended" applied when its register can't represent anything beyond "Maximum" — now refuses instead of falsely claiming success (GitHub #159's own session logs caught this firing on real hardware).
- Fixed: numbers throughout the UI rendered with a comma instead of a period on comma-decimal Windows locales — the app has no localization at all, so every display site was inheriting the OS locale by accident. Fixed once at app startup instead of touching 400+ call sites.
- Fixed: a real Spotify install was flagged as "Promotional app shortcut" bloatware, and board
8BCA(shared by an Intel and an AMD OMEN 16 SKU) resolved to the wrong CPU vendor's profile, breaking keyboard control (GitHub #163). - Fixed: the guided fan diagnostic displayed RPM readings one full test-step stale (60% consistently reading lower than 30%) — root-caused from a community member's own session logs to a display path reading a lagging telemetry cache instead of an already-fresh value sitting a few lines away. Pure display/scoring fix, no fan-control behavior touched.
- Adopted: sixteen community-contributed PRs/branches from
tempestnano, all merged after individual file-by-file review — board8D87support (real fan range/tachometers, adapter awareness), an AMD SMU transport fix, per-key RGB for board8D87that also fixed reactive lighting being silently inert for every user on every board, per-LED keyboard lighting extended to every supported board, and an experimental adapter power override that drops GPU/CPU power clamps caused by an under-rated charger (off by default; single-board evidence so far, disclosed and merged on an explicit, informed decision after the review surfaced a real prior crash the fix itself resolves). Also: a fix for the app's own polling keeping a sleeping dGPU awake, and a real BSOD bug in the background hardware-monitoring process (its watchdog could run forever on PID reuse, polling the GPU on battery until Windows killed the machine). Full detail, including the safety framing on the adapter-override feature, in the changelog. - Improved: three separate passes of UI-responsiveness fixes for a standing "laggy UI" complaint — chart controls doing a full teardown/rebuild on every telemetry tick, a dashboard pulse animation restarting continuously due to a broken equality check, a window-wide blur effect costing a full render pass on every resize/drag, and an in-game OSD overlay allocating a fresh brush every second while a game is running.
- Fixed: a brand-new AMD Family 26 CPU ("AMD Ryzen AI 7 350") was misidentified as ~2020 Renoir/Lucienne silicon — a fallback family check matched on model number alone with no family qualifier, and model numbers aren't unique across AMD generations (GitHub #171).
- Added: RAM Smart Clean in Quick Access (one-click safe memory clean from the tray popup), an opt-in "clean memory on launch" option per game profile, and a shared/default profile that can apply to a whole list of games instead of needing one profile per game (GitHub #173).
- Fixed: a WMI model-name-pattern fallback could hand an Intel board an AMD-only capability profile just because HP reused the same marketing name across different board revisions — the fallback now checks CPU vendor before matching (GitHub #172).
- Improved: a full code review of GPU Power Boost, GPU overclock/undervolt, and CPU overclock/undervolt (
docs/TUNING-SUBSYSTEMS-REVIEW.md) found and fixed several places where the app reported something as applied when it wasn't or discarded a safety signal by defaulting it to a value indistinguishable from a real reading — all fixes here are reporting/consolidation only, no tuning behavior changed on the wire. - Fixed (Linux, severe): the Linux GUI (
omencore-gui) never actually controlled fans on boards that expose only a coarsepwm_enabletoggle rather than a writable duty file — every fan request silently did nothing. Reported alongside a real overheat/shutdown incident on board8BCA(OMEN 16-xf0xxx). The CLI (omencore-cli) already had the correct fallback; the GUI never did, because the two Linux targets carry entirely separate hardware implementations. The fallback is now ported into the GUI (GitHub #174 + Discord report). - Improved (Linux): keyboard RGB now tries three more sysfs backends (
hp-wmi/rgb_zones/zone00-zone03,hp-wmi/keyboardleds,hp_omen::kbd_backlight/zone_colors) in both Linux targets, found by researching the projects raised in GitHub #175. The same pass fixed keyboard brightness control on boards exposing only thehp_omen::LED class name — both targets previously checked onlyhp::. - Adopted: community PR #150 (
murilopontes) — documented Linux fan boost via EC offset0xECfor board84DB(OMEN 15-dc0xxx), where stockhp-wmipwm1_enable=0fails withEINVAL, with measured RPM data.
Full detail on every item in docs/CHANGELOG_v4.1.7.md.
- Fixed: GPU Power Boost never worked on Victus 16-d1176TX (board
8A25) — added the model-database entry this exact board was missing, withSupportsGpuPowerBoost = true. - Fixed: locked fan-curve/direct-control tooltips said "unavailable for this model" with no explanation, which real users misread as related to the separate "unverified model" status — now explicitly states it's a hardware/firmware limitation.
- Fixed:
ApplyMaxCooling()silently reported success even when the hardware write failed, including in the thermal-critical safety-override path — fans could stay unchanged during a real overheat event while the log and UI both claimed "Max cooling active." - Fixed: Razer RGB effect setters (static/breathing/spectrum/wave/reactive/custom) reported success with no active Chroma SDK session — same silent-failure bug class as the Logitech fix in 4.1.0, found during a follow-up audit.
- Fixed: Corsair RGB write failures were indistinguishable from success across all three SDK backends (stub/iCUE/direct-HID) — a device write that silently failed was still counted and logged as applied.
- Fixed: the top-level "Unsupported or Unverified Gaming System" banner conflated two different states — a genuinely supported OMEN/Victus with an unconfirmed model got no banner at all despite the text claiming to cover it. Now two independently-gated banners.
- Fixed:
SettingsView.xamlaccessibility labeling, left at 53/156 controls in an earlier cycle, is now complete (156/156) — closes out the multi-session accessibility pass across all six views.
Full detail on every item in docs/CHANGELOG_v4.1.5.md.
- Fixed: the sidebar and General-tab main cards could show different temperatures at the same instant — the sidebar was subscribed directly to raw, unfiltered sensor data and bypassed the same spike-rejection/stabilization every other surface received.
- Fixed: "temperature appears frozen" was a false positive most of the time — the detector didn't account for HP WMI's whole-degree sensor quantization, so a machine sitting at real thermal equilibrium (steady load, steady temp) was flagged as a stuck sensor. One field session alone logged 48 false warnings.
- Fixed: fans re-asserting to Max in a loop for ~2.5 minutes after a thermal emergency on board
8A18— the "still holding Max?" health check used a floor that was mathematically unreachable on this board's hardware. - Fixed: the per-model GPU Power Boost capability flag was dead code on every Victus board — a blanket vendor-family deny (added for a real 2023 bug) short-circuited before the database flag was ever consulted, so a field-verified entry could never take effect.
- Fixed:
PowerAutomationService(AC/Battery profile switching) never actually applied real CPU/GPU wattage on 57 of 59 boards in the database — it built a bare zero-watt object instead of routing through the existing, already-safe wattage-aware apply path. This affected every user who enabled the feature, on both AC and Battery transitions, not just the specific "Silent battery profile" report that led to finding it. - Fixed: three diagnostics collectors —
hardware-info.txt,ec-state.txt, and the Max-mode-ownership fields incore-control-readiness.txt/monitoring-cadence-hold.txt/tuning-fan-focus.txt/wmi-command-history.txt— had never produced real data in any diagnostics export ever generated, on any board, across every version checked. Found by reading real users' exports directly rather than waiting for another report. - Fixed: a Logitech RGB device whose HID++ 1.0 fallback was structurally unreachable — every lighting write silently failed while the app logged success anyway. One real session showed 960 failed writes in a 3-minute window.
- Fixed: the CPU-temperature-authority selector (which of WMI BIOS / ACPI Thermal Zone / LibreHardwareMonitor is trusted right now) only debounced switching back to WMI BIOS — every other transition switched on a single noisy reading. One real session logged ~192 flip-flops; the debounce is now symmetric.
- Fixed:
system-info.txtreported the .NET garbage-collector heap size mislabeled as "RAM" (explains why it read 16-51 MB on a real laptop) — now reports actual installed physical memory. - Added: a diagnostic-only warning for sustained high-temperature/unexpectedly-low-RPM readings (the exact evidence a still-open thermal-safety report needs) — doesn't change any fan-control decision.
- Confirmed real background-RAM usage from real users' sessions (355-705 MB main app, plus 48-174 MB for the hardware-worker process) — the community complaint is real, not overstated; isolating the exact contributor is still open.
Several fixes above are code-provable from the reporters' own logs but still need their confirmation that the physical/audible behavior matches on real hardware — see Known Limits below. Full detail on every item, including what was traced but deliberately not changed pending field evidence, in docs/CHANGELOG_v4.1.0.md.
- Architecture: introduced a real DI composition root — 19 of ~40 manually-wired
MainViewModelfields migrated onto it, and the hardware bring-up sequence (NVAPI/PawnIO/WMI BIOS/capability detection/EC/fan-controller construction) extracted into its ownHardwareBringupclass as a prerequisite for the rest. - Architecture: built a shared
PollingScheduler/UiPollingCoordinatorand migrated the tray icon, quick popup, and OSD timers onto it — a first cut at consolidating a 27-timer sprawl (corrected from an earlier "21 timers" estimate) across three different timer APIs. - Removed ~80 lines of dead, orphaned CPU-undervolt UI wiring in
MainViewModel— a second, meaningfully-behind copy ofSystemControlViewModel's real implementation, bound only to a view that was never in the app's visual tree. - Fixed a safety-gate bug: the OMEN 16/Victus sensitive-model startup-restore check had a live, un-updated copy of the exact fragile-string-match bug already fixed elsewhere in 3.8.1 — could silently skip the extra safety opt-in it exists to enforce.
- Fixed: the "disable thermal protection" toggle's documented promise ("fans will NEVER be automatically overridden") didn't actually hold for custom fan curves — a separate always-on safety clamp ignored the toggle. Also made the emergency-override temperature itself configurable (was a hardcoded 95°C).
- Community-contributable model-database pipeline: JSON schema, a dependency-free validator, a PR template, and a CI job — so new hardware support no longer has to funnel through one person hand-writing every entry.
- New persistent "Model Capabilities" panel on the Diagnostics tab — shows what your detected model does and doesn't support, and whether that profile is field-verified or inferred, before you go looking for a setting that isn't there.
- Game profiles: window-title disambiguation for same-exe-different-game cases, WMI event-based process detection replacing pure polling, and multi-game restore handling (switches to a still-running game's profile instead of unconditionally restoring defaults).
- Accessibility:
AutomationPropertieslabeling added across Dashboard, Advanced, FanControl, Lighting, and (partially) Settings views — roughly 140 previously-silent controls now announce correctly to screen readers. - Tray menu: "Max Fan" promoted to one click deep (was three), plus a new in-app notification history and a persistent "Report a Problem" entry reachable regardless of Lite/Advanced mode.
- Corrected a stale risk record:
BiosUpdateServicewas documented as "the firmware-write path" — it never writes firmware at all, only checks for updates and hands off to HP's own tools. Added 19 tests for the parts that actually matter (version comparison, URL construction). - New interactive GitHub Pages site (replaces the old custom omencore.info site) with live release info, a feature/comparison showcase, and donation info.
Full detail in docs/CHANGELOG_v4.0.0.md.
- Silent failure: the OMEN key action setting (Settings → OMEN Key) was completely non-functional for all four UI options — the saved string never matched any backing enum value, so any non-default choice was silently discarded on every relaunch.
- Silent failure: newly created or duplicated game profiles were lost if the app crashed before another action triggered a save —
CreateProfile()/DuplicateProfile()never persisted. - Silent failure:
FanController.ResetEcToDefaults()and bridge-temperature reads swallowed exceptions with no diagnostic trail; both now log the failure (no control-behavior change). - Silent failure: crash reports never included a stack trace, making community bug reports nearly impossible to diagnose from the log alone; both global exception handlers now log full
[CrashTrace]stacks. - Tray icon: white temperature-digit text on the yellow/green badge background is now black above a computed luminance threshold — fixes an eye-straining contrast issue reported on Discord.
- Quick Access popup: new "Enable quick access popup" toggle so users who keep hitting Display Off by accident can disable the whole popup instead of losing the OMEN key entirely.
- GPU Power Boost now actually follows the General tab's Performance/Balanced/Quiet profile cards, the tray quick-profile menu, and the hotkey cycle — previously the boost level was frozen at whatever was last set manually, regardless of profile.
- Fixed the Custom tab rendering with the default white WPF theme instead of the app's dark theme (a local
TabItem.Stylewas overriding the shared dark template). - OSD performance-mode row no longer shows a stale "Balanced" default before the first confirmed runtime state arrives; falls back to the last explicitly-applied mode instead of a hardcoded default.
- OSD no longer silently drops behind borderless/windowed-fullscreen games — it now re-asserts topmost every second instead of only once. True DXGI exclusive fullscreen still can't show any overlay window (a Windows compositor limitation).
- Fixed an idle-time integer overflow in Automation Service rules that could misbehave after ~24.9 days of uptime, and a battery-percentage automation bug that could fire "above N%" rules constantly on desktops/sensor-failure systems.
- Fixed the auto-updater's HardwareWorker shutdown sequence: one process failing to close no longer skipped closing the rest, and the installer now waits for confirmed exit instead of assuming it.
- Direct model entries added for HP Victus 15-fa1xxx (
8C3F, fan-control delay fix) and OMEN 16 (2024) wf1xxx Intel (8C77, V1/V2 profile-mismatch crash fix), a family-fallback profile for HP Victus 15 2025 AMD (fb3xxx), plus an OMEN Transcend 14 (8C58) capability alignment.
- Critical: fixed an Application Hang within 10-20s of launch (
8BCD) caused by a named-pipe desync between the app and its out-of-process hardware worker — concurrent requests could race and consume each other's stale replies, with no reconnect-on-failure. - Critical (safety): fixed fans stuck at max independent of temperature, lid-close failing to suspend, and a resulting BIOS thermal shutdown (#146) — the Max-mode keepalive timer is now stopped unconditionally on suspend, not just as a side effect of a successful restore.
- Power Automation's AC/Battery fan and performance profiles now actually apply at app startup — previously they only took effect on the next power-source change.
- Diagnostics export wiring fix:
wmi-command-history.txt,hardware-info.txt, andec-state.txthad been empty placeholders in every diagnostics zip ever exported, regardless of hardware state; bug reports going forward will contain real data. - Fixed the Optimizer's "Disable Last Access Timestamps" toggle always reporting itself as failed even when it had applied correctly (a registry-encoding mismatch, not an elevation issue).
- Fixed a rare, timing-dependent background crash in the fan monitor loop during shutdown.
- New conservative identities added for OMEN Slim 16-an0xxx (
8D40), OMEN 17-ck1xxx (8A18), and OMEN Transcend 14-fb1xxx (8E41).
8A18OMEN 17-ck1xxx: conservative exact capability profile, with V1 fan-level fallback explicitly labeled as an estimate rather than measured RPM, and fan verification evidence kept honest about command-success vs. physical confirmation.- Quick Access popup shortcut is now configurable (Display Off, Lock Windows, or Disabled) to prevent accidental display-off clicks.
- Saved Custom fan-curve selection now migrates correctly when
LastFanPresetNameis missing or stale, without bypassing the startup fan-write safety gate. - GPU OC Tuning page shows a dedicated startup-reapply status chip explaining whether a confirmed profile is enabled or blocked, and why.
- The OMEN 16/Victus sensitive-model startup-restore safety override now matches real-world HP model-name variants instead of only the literal "OMEN 16" substring.
- OMEN-key diagnostics now record the last accepted/rejected key candidate (source, VK/scan codes, and reason) for field debugging of #141-class reports.
HpWmiBiosheartbeat, the fan countdown-extension reassert loop, and the Razer Chroma heartbeat are now visible in background-timer diagnostics.8D40OMEN Slim 16-an0xxx: exact conservative identity added (GitHub #145), replacing low-confidence family fallback.- Fixed Performance Profile silently reverting to Balanced after relaunch when changed via the tray menu, the
Ctrl+Shift+Ehotkey cycle, or the General page's quick-profile buttons (GitHub #145) — these paths now persist the choice the same way the System Control page always did.
Older release notes (v3.8.0 and earlier) are kept in docs/ rather than summarized here.
v4.1.7 grew from an originally-scoped v4.1.6 patch into the largest release yet, after a second and third wave of field reports and community contributions kept landing before anything was tagged — see "Versioning note" below. Started with GitHub #159 (an exceptionally detailed field report) and a Discord report from board 8DCD: PerformanceModeService was attempting CPU/GPU EC power-limit writes to register addresses the code's own header comment documents as unconfirmed ("EXAMPLE - varies by model!", explicit hardware-damage warning) by default, on any board that didn't opt out — a new, dedicated flag now defaults this off everywhere until a model's addresses are field-confirmed. WmiFanController.SetPerformanceMode cleared its internal Max-mode tracking without releasing the real BIOS SetFanMax latch, leaving fans stuck at maximum until the app was closed — now fixed. From there, GitHub #163 (board 8BCA AMD/Intel misidentification) led to a much larger community contribution from tempestnano — board 8D87 support, per-key and eventually per-LED RGB for every supported board, an AMD SMU transport fix, and an experimental, explicitly-disclosed adapter-power-override feature — followed by a fan-diagnostic RPM display bug found and fixed directly from that same reporter's own session logs.
Versioning note: v4.1.6 was never tagged or released — a real code fix landed after its artifacts were already built and hashed, so everything was rolled into v4.1.7 instead of shipping something already stale.
What's intentionally not in this release: the larger architectural items from 4.1.0 — privilege separation, a real RGB provider architecture, i18n, Linux tray/config persistence — remain scoped in the roadmap but not started. SystemControlViewModel's EC-based GPU-boost fallback path (a different, still-ungated EC write of the same risk class as the one fixed above) was found in an earlier pass but not touched — logged for a dedicated fix.
The active work is tracked in:
- docs/CHANGELOG_v4.2.0.md - the current release notes.
- docs/ROADMAP_v4.2.0.md - the full scope, phase ordering, and execution checklist this cycle worked through, plus rejected options and evidence trails.
Prior-release work is kept for historical reference:
- docs/CHANGELOG_v4.1.7.md, docs/CHANGELOG_v4.1.5.md - the two prior releases' notes and validation status.
- docs/CHANGELOG_v3.9.0.md, docs/CHANGELOG_v3.8.2.md, docs/CHANGELOG_v3.8.1.md, docs/CHANGELOG_v3.8.0.md - field fixes, UI polish, diagnostics, and validation status for each release.
- docs/3.8.1-BUG-REPORTS.md, docs/3.8.0-BUG-REPORTS.md - tracked model reports and issue follow-up.
The consolidated core-control-readiness.txt diagnostic report (fan backend/readback state, RGB surface/backend state, tuning startup/readback state, monitoring health, next validation actions) introduced in 3.8.0 remains in place, joined in 4.0.0 by the persistent "Model Capabilities" panel on the Diagnostics tab. Several of its fields were confirmed broken and fixed in 4.1.0 — see the changelog.
Release artifacts are published on the GitHub Releases page.
| Artifact | Platform | Recommended For |
|---|---|---|
OmenCoreSetup-4.2.0.exe |
Windows | Most users. Installs app and can install PawnIO. |
OmenCore-4.2.0-win-x64.zip |
Windows | Portable use, testing, or no installer preference. |
OmenCore-4.2.0-linux-x64.zip |
Linux | CLI plus Avalonia GUI, self-contained runtime. |
Final GitHub release notes must include SHA256 hashes for every artifact. The in-app updater requires release hashes before it will install an update.
- Download
OmenCoreSetup-4.2.0.exefrom Releases. - Verify the SHA256 hash from the release notes.
- Run the installer as Administrator.
- Keep PawnIO selected unless you only want monitoring and WMI-only features.
- Launch OmenCore from the Start Menu.
Portable users can download OmenCore-4.2.0-win-x64.zip, extract it to a normal folder, and run OmenCore.exe as Administrator.
See INSTALL.md for the full Windows guide.
VERSION=4.2.0
wget "https://github.com/theantipopau/omencore/releases/download/v${VERSION}/OmenCore-${VERSION}-linux-x64.zip"
mkdir -p OmenCore-linux-x64
unzip "OmenCore-${VERSION}-linux-x64.zip" -d OmenCore-linux-x64
cd OmenCore-linux-x64
chmod +x omencore-cli omencore-gui
sudo ./omencore-cli status
./omencore-guiPrefer launching the GUI as your normal desktop user. Use sudo for CLI operations that need hardware access.
For bug reports, collect a triage bundle:
./qa/collect-linux-triage.shSee INSTALL.md and docs/LINUX_INSTALL_GUIDE.md for Linux details.
- WMI BIOS fan profile control on supported OMEN/Victus laptops.
- Max, Auto, Quiet, Gaming, Extreme, and custom presets where capability allows.
- Custom fan curves with temperature breakpoints on models with validated curve support.
- Profile-only fan gating for models where the firmware supports OEM profile modes but not safe manual curve writes.
- Restore OEM Auto action to release OmenCore fan ownership and return to firmware auto mode.
- Fan command history, launch diagnostics, and core-control readiness exports for field validation.
- Quiet, Balanced, Performance, and custom profile routing.
- WMI thermal-policy fallback when direct EC/MSR power limits are unavailable.
- CPU/GPU power apply traces in diagnostics.
- Intel undervolt and TCC controls where the model, BIOS, and runtime allow them.
- GPU Power Boost on supported OMEN firmware.
- GPU OC and power-limit profile storage where backend support is available or power-limit-only routing is exposed.
- MUX switching where the BIOS exposes Hybrid, Discrete, or Integrated modes.
- OMEN 4-zone keyboard lighting with profile, zone, brightness, and backlight operations.
- Model-aware fallback and serialized keyboard lighting writes.
- RGB diagnostics showing backend ownership, active path, and conflict status.
- OMEN Max per-key-capable hardware detection plus first-pass HID per-key routing for known/inferred HP keyboard controller PIDs.
- External RGB provider surfaces for Corsair, Logitech, Razer, OpenRGB, and system providers where available.
- Built-in RGB scenes include static, breathing, spectrum, wave, ambient, audio-reactive, Heat Wave, Calm Pulse, and Lights Off paths where providers support them.
- Readiness diagnostics report the active HP keyboard surface, observed physical surface, and whether a result is verified, accepted/unverified, unavailable, or blocked by a conflict.
Note: OMEN Max dedicated HID per-key routing is intentionally conservative until field logs confirm the correct USB PID list and physical keyboard segment mapping.
- CPU/GPU temperature, load, fan level/RPM, battery, memory, storage, and GPU telemetry.
- Out-of-process hardware worker for crash isolation.
- Telemetry health states: valid, inactive, unavailable, stale, degraded, and invalid.
- Click-through OSD with RTSS FPS integration where available.
- RTSS FPS display falls back to average FPS when instant FPS is unavailable and keeps RTSS unavailable/waiting states explicit.
- Tray quick popup and status badges.
- Diagnostic exports with model identity, RGB path, resource footprint, fan history, launch readiness, core-control readiness, tuning safety, and runtime state.
- Guided OMEN Gaming Hub cleanup.
- Bloatware scanner and removable HP app inventory.
- Memory optimizer and gaming-mode helpers.
- Per-game profile automation with exact executable-path matching, duplicate apply suppression, optional default restore on exit, and feature-gated process monitoring.
- Auto-update with SHA256 verification.
OmenCore is built for HP OMEN and HP Victus laptops. Desktop OMEN systems are treated conservatively.
| Hardware Class | Support Level | Notes |
|---|---|---|
| OMEN 15/16/17 laptops | Primary | WMI BIOS, fan/profile, telemetry, RGB, power features by model |
| Victus laptops | Supported with gates | Fan/profile/monitoring/backlight; GPU TGP and undervolt often unavailable |
| OMEN Max 16/17 | Active validation | Power/profile identity paths; HID per-key RGB backend needs PID/segment field confirmation |
| OMEN Transcend | Active validation | Profile-based fan and lighting paths vary by ProductId |
| OMEN desktops | Limited | Monitoring/profile/cleanup; fan writes are safety-gated |
| HP Spectre and other HP | Limited | Monitoring and selected WMI paths only |
| Non-HP systems | Unsupported | Monitoring-only behavior may work, control features are not targeted |
Model support is keyed by ProductId where possible. Diagnostic exports include a model identity summary so unsupported or inferred profiles can be fixed without guesswork.
- Windows 10 build 19041+ or Windows 11.
- Administrator rights for WMI BIOS, EC, MSR, fan, and power operations.
- Self-contained .NET 8 runtime in release builds.
- PawnIO recommended for advanced EC/MSR features and Secure Boot-compatible low-level access.
- x64 Linux with
hp-wmi,ec_sys, or compatible hwmon/sysfs interfaces. - Root privileges for hardware writes.
- A normal desktop session for the Avalonia GUI.
- Kernel support varies heavily by model and distro.
Windows fan control normally follows this order:
- WMI BIOS - preferred for modern OMEN laptops.
- PawnIO-backed EC/MSR paths - advanced access where safe and validated.
- OGH proxy - last-resort fallback when local firmware paths require it.
Linux control normally follows available sysfs/hwmon capability:
hp-wmi/ platform profile.hp-wmihwmon PWM and fan input paths.ec_sysfor older models.- Diagnostic-only mode when no safe write path exists.
Carried forward from 4.1.7 (none of this touched by 4.2.0's work — all still gated on field evidence):
- Max Fan Mode can trigger a repeating background re-assert loop on some boards — with a workaround. On boards whose real fan level under a BIOS Max hold settles well below the level OmenCore computes as the expected floor (confirmed on
8A18,8A25,8E10,8D41), the Max-mode health check reads a genuinely-applied Max hold as "unhealthy" and re-sends the Max command roughly every 20 seconds for as long as Max Fan Mode stays engaged. A full multi-day log from board8E10(OMEN 17-db1xxx) confirms this runs continuously rather than as a one-off, and that reporter separately described near-constant in-game stutter. That connection is plausible but not proven — no single once-per-second write was found in the log; what is confirmed is real, overlapping EC/WMI hardware I/O for the whole session. Workaround: use a custom fan curve or the Performance/Gaming preset instead of literal Max Fan Mode while gaming — those use a different reapply path that has no floor health check and no such loop. The underlying bug is deliberately unfixed: it needs a board-relative redesign across two separate code paths, and the one narrower mitigation considered (backing off after repeated identical readings) was rejected because it cannot be distinguished from a genuinely-reverting fan without risking under-cooling a different board. - The same wrong assumption also makes the guided fan diagnostic report
evidence: Nonefor the 100% test on these boards even when the fans audibly ramp — a false negative in reporting only, not a fan-control failure. - Linux (
omencore-gui) fan control onpwm_enable-only boards is fixed in this release but confirmed only by code review and a clean build — there is no automated test project for either Linux target and no Linux/OMEN hardware in the development environment. The reporter on board8BCA(OMEN 16-xf0xxx), whose report came with a real overheat/shutdown incident, still needs to confirm fans actually respond now. - Linux keyboard RGB's three new sysfs backends and the
hp_omen::brightness fix are likewise additive-and-build-verified only, not confirmed on a board that exposes those interfaces. - Board
84DB(OMEN 15-dc0xxx) EC0xECfan boost is documentation only, contributed and measured by a community member — OmenCore's own board detection does not act on it.
Carried forward from 4.1.0 — code-provable from real logs, still needing field confirmation on the reporters' actual hardware:
8A18OMEN 17-ck1xxx: the fan-reassert-loop fix (GitHub #153) is code-complete and test-verified, and the logic bug is provable from the reporter's log alone — but only they can confirm the audible/physical repeated-re-assertion behavior actually stops.8D87/AK0003NROMEN Max 16 (AMD): the CPU-power-ceiling root cause is traced and a one-line fix identified (AllowDecoupledWmiThermalPolicyFallback = true), but deliberately not applied — it's a genuine hardware-behavior change onUserVerified = falseboards and needs a reporter to confirm it actually raises CPU package power with no adverse thermal/fan/stability effects first.8C2FVictus 15/16 (shared board ID): the naming/metadata fix is safe and applied, but whether the 16" chassis's capability assumptions (fan/RGB/thermal behavior) actually hold on the 15" chassis is still unconfirmed.8A25HP Victus 16-d1176TX:SupportsGpuPowerBoostwas flipped totruein 4.1.5 after three consecutive versions of consistent reports — an owner judgment call, not a session log with explicit before/after wattage figures. Still needs a reporter to confirm the RTX 3060 actually reaches 100W boost through OmenCore's own code path, not just OGH.8D41board keyboard zones 4-7 (Darfon HID controller): the light-bar zones (0-3) are fixed via the correct Linux sysfs path; the keyboard zones still need the reporter's offered USB HID feature-report capture before a backend can be written.- The Logitech HID++ 1.0 fallback fix has no automated test coverage (no mockable HID hardware abstraction exists in this codebase) — code-review-verified only; a report from anyone with an HID++-1.0-only Logitech device confirming lighting now actually applies would help.
- The CPU-thermal-authority debounce fix is directionally safe (can only make source switches less frequent, never more) but hasn't been confirmed against a real board that reproduced the original flip-flop.
Carried forward from 4.0.0 / 3.9.0 (untouched by this cycle's work):
8C77OMEN 16 (2024) wf1xxx Intel: the V1/V2 profile-mismatch fix is code-complete and test-verified but not yet confirmed on the reporter's physical hardware.8BCDOMEN 16 xd0010AX: four fan-behavior reports (Balanced-switch oscillation, Quiet RPM floor, Quiet thermal ceiling, ramp-down stepping) are evidence-gated — no fan/thermal code was changed without physical-hardware evidence, per project safety policy.- The hang fix (
8BCD), the fan-stuck-at-max/failed-standby fix (88D2), and the Power Automation/Optimizer fixes (8D41) from v3.8.2 remain code-complete and test-verified in this environment but not yet confirmed on the reporters' physical hardware — see Release Conditions in docs/CHANGELOG_v3.8.2.md. - Some 3.8.0 and 3.8.1 fixes still require physical hardware validation, especially fan ramp-down, RGB surface routing, and GPU wattage parity.
- OMEN Max per-key RGB now has a first-pass HID backend in active development, but it is not fully verified until field logs confirm the USB PID list and physical segment behavior.
8DCDVictus 15 fan-speed collapse under sustained load (GitHub #143) is still under investigation and treated as thermal-safety critical until disproven; 4.1.0 added a diagnostic-only warning for sustained high-temp/low-RPM readings so the next reproduction's log carries unambiguous evidence, but the root cause itself is unresolved.8D26OMEN 16-ap0xxx dedicated key and Fn+P event routing (GitHub #141) needs shipped-artifact and physical-hardware confirmation.8E41OMEN Transcend 14 idle-load thermal-emergency reports are under investigation; current evidence leans toward real (brief) thermal excursions rather than a sensor glitch, but the zero-debounce safety response itself is deliberately unchanged either way.- OGH Eco mode parity is tracked but not implemented.
- Direct PL1/PL2 controls remain firmware/MSR gated on many systems.
- OSD now fights back against borderless/windowed-fullscreen games stealing topmost (fixed in 3.9.0). True DXGI exclusive-fullscreen still cannot show any overlay window — that's a Windows compositor limitation, not something a WPF window can override without D3D/DXGI hook injection.
8574legacy OMEN 15 support is partial until fresh diagnostics confirm effective fan command readback.
New this cycle (4.2.0), from real-hardware portable-build testing:
- The nav-rail/sidebar redesign (merged rail+sidebar panel, Quick Actions relocated to a top bar, colored group separators, auto-fit scaling on short windows) has been through several rounds of real-hardware screenshots and fixes but hasn't had a final confirming pass on the latest build.
- Confirm the "OMEN Keyboard" badge no longer shows on non-HP hardware, and that iCUE is now correctly detected when running — both fixed from a single field report, neither re-tested yet.
- The AMD Curve Optimizer "degraded" undervolt warning's exact trigger is still unidentified — needs the literal warning text from a repeat occurrence to pin down.
Carried forward from 4.1.7 (still awaiting confirmation, untouched by 4.2.0's work):
- Board
8BCA(OMEN 16-xf0xxx, Linux): confirmomencore-guinow actually drives the fans after thepwm_enablefallback fix — this board previously had completely non-functional GUI fan control, reported alongside a real overheat/shutdown incident. - Any Linux board exposing
hp-wmi/rgb_zones/,hp-wmi/keyboardleds, orhp_omen::kbd_backlight: confirm keyboard RGB (and brightness, for thehp_omen::variant) now applies. - Boards
8A18,8A25,8E10,8D41: a session log capturing fan level readback during a sustained Max hold, ideally with independent RPM evidence, so the Max-level-floor redesign can be scoped against real board-relative numbers instead of guessed. - Board
8E10(OMEN 17-db1xxx): confirm whether the in-game stutter changes when using a custom fan curve or the Gaming preset instead of Max Fan Mode — this would help establish whether the re-assert loop is actually a contributor.
Carried forward from 4.1.0:
8A18OMEN 17-ck1xxx: confirm fans no longer repeatedly re-assert to Max after a thermal emergency clears (GitHub #153) — the log-provable loop is fixed, only the audible/physical behavior needs confirming.8D87/AK0003NROMEN Max 16 (AMD): test a build withAllowDecoupledWmiThermalPolicyFallbackflipped and confirm CPU package power actually rises toward 105W with no adverse thermal/fan/stability effects before it's merged.8C2FVictus 15/16: confirm fan/RGB/thermal behavior on the 15" chassis actually matches the assumptions inferred from the 16" report.8A25HP Victus 16-d1176TX: confirm GPU Power Boost actually reaches 100W through OmenCore now that the capability flag is flipped in 4.1.5 (owner call after three consistent reports, not a session-log confirmation).- Anyone with an HID++ 1.0-only Logitech RGB device: confirm lighting now actually applies (previously silently failed while logging success).
Carried forward from 4.0.0 / 3.9.0:
8C77OMEN 16 (2024) wf1xxx Intel: confirm the direct model entry and V1 fan-control path resolve theFileNotFoundExceptioncrash on the Custom Fan Curve tab.8BCDOMEN 16-xd0010AX: per-poll EC register dump during Balanced-switch fan oscillation; RPM vs. EC register snapshot for the Quiet RPM floor; WMI ThermalPolicy + per-zone temp log at the Quiet thermal ceiling; 100ms-resolution RPM log during ramp-down.8BCDOMEN 16-xd0010ax: confirm the named-pipe hang fix actually stops the Application Hang on the original reporter's hardware.88D2OMEN 15-en1xxx: confirm the Max-mode keepalive fix lets lid-close suspend cleanly with no BIOS thermal shutdown.8D41OMEN MAX 16 ah0500na: RGB light-bar-vs-keyboard routing and battery-preset-name substitution still need a session log (Power Automation boot-apply itself is now confirmed fixed at the code level).8D40OMEN Slim 16-an0xxx: exact identity validation, plus Battery Care (Charge Limit) WMI evidence — now collectible via the fixed diagnostics export.8DCDVictus 15: bounded, abortable load test confirming Performance mode no longer drops below 2000 RPM above 80C — the next attempt will carry unambiguous evidence from 4.1.0's new diagnostic warning either way.8D26OMEN 16-ap0xxx: Fn+F2 never-intercept behavior and dedicated OMEN-key/Fn+P event path on physical hardware.8E9AHyperX OMEN MAX 16t-ah100: exact conservative identity pending full diagnostic evidence.8E41OMEN Transcend 14-fb1xxx: diagnostics-zip-level raw per-poll temperature evidence for the idle thermal-emergency reports.8D87OMEN Max: WMI-only Max fan hold, Restore OEM Auto, and HID per-key RGB PID confirmation.8BD4Victus 16: conservative WMI V1 Auto/Max handoff and WMI ColorTable RGB confirmation.8C30Victus 15-fb1xxx: Quiet/Balanced/Performance WMI policy routing and wattage/RPM readback validation.878COMEN 15-ek0xxx: Quick Profile fan wake/ramp validation after exact WMI fallback routing.8600OMEN 15-dh0xxx: PawnIO install/reboot telemetry recovery plus Quiet/Balanced/Performance/Auto/Max fan-mode validation.88EEVictus 16-e0194nw: exact ProductId identity confirmation plus fan/RGB/readback evidence before enabling capabilities beyond conservative routing.8BCDLinux: degraded WMI/ACPI reporting with effective fan/RGB/battery readback before claiming full control.- GPU OC startup reapply: confirmed-profile reboot test on NVIDIA, plus AMD manual-only wording or equivalent persistence.
- Background memory/responsiveness: scenario-matrix measurement against the 3.8.1 budgets before claiming any reduction.
- Startup restore: keep hardware restore opt-in until fan, RGB, performance, undervolt, and GPU OC readback passes on the target model.
git clone https://github.com/theantipopau/omencore.git
cd omencore
dotnet restore OmenCore.sln
dotnet build OmenCore.sln --configuration Releasedotnet test OmenCore.slnWhat "N/N tests passing" actually means: the suite is a real xUnit test project (src/OmenCoreApp.Tests, 1367+ tests as of v4.2.0) that runs in CI on every push (.github/workflows/ci.yml) and locally before every release. It exercises hardware-abstraction logic in isolation — capability-database resolution (which model resolves to which ProductId/ModelNamePattern entry), fan-curve and safety-clamp math, the diagnostics-export pipeline, view-model state transitions, and regression tests pinned to specific field-reported bugs (reflection-driven against private methods/fields where the codebase's existing pattern calls for it, real mock SDK interfaces like ICorsairSdkProvider where one exists). What it does not do: verify that a given real board's EC/WMI actually responds the way the code assumes — that's a structurally different problem no unit test can cover, which is why this project has a separate, explicit "evidence-gate" convention (see the roadmap and changelogs) requiring field confirmation from real hardware before shipping any fan/thermal/OC/UV behavior change, independent of what the test suite says. A green test suite means the logic is provably self-consistent and regression-free; it is not a substitute for a real user confirming a fix works on their actual laptop, and this project's own docs never claim otherwise.
pwsh ./build-installer.ps1Expected outputs:
artifacts/OmenCoreSetup-4.2.0.exeartifacts/OmenCore-4.2.0-win-x64.zipartifacts/SHA256SUMS-4.2.0.txt
pwsh ./build-linux-package.ps1Expected outputs:
artifacts/OmenCore-4.2.0-linux-x64.zipartifacts/OmenCore-4.2.0-linux-x64.zip.sha256artifacts/version.jsonartifacts/linux-version-verification-4.2.0-linux-x64.json
Before publishing a stable GitHub release:
- Confirm
VERSION.txt, project versions, installer version, README, and INSTALL all match. - Run
dotnet restore, Release build, test suite, andgit diff --check. - Build Windows installer/portable and Linux zip.
- Generate SHA256 hashes for all artifacts.
- Add hashes, known limits, and hardware validation status to GitHub Release notes.
- Upload artifacts.
- Tag the release only after the final notes and artifacts match.
| Symptom | First Thing To Check |
|---|---|
| Fan control has no effect | Model capability summary and fan command history in diagnostics |
| Fans stay elevated | Use Restore OEM Auto, then export diagnostics with core-control-readiness.txt |
| GPU Power Boost changes but wattage does not | Firmware/backend support and FurMark/telemetry readback |
| PawnIO unavailable | Keep PawnIO selected in the installer, reboot, and run as Administrator |
PawnIO setup asks for -install or -uninstall |
Use v3.8.0+ installer builds; standalone fallback is PawnIO_setup.exe -install from an elevated terminal |
| Undervolt hidden | Model or BIOS may block MSR undervolt; check tuning readiness and startup recovery state |
| RGB turns off or does not restore | Check active keyboard backend, target surface, accepted/unverified status, and conflicting HP lighting tools |
| Battery Care (Charge Limit) fails | Confirm AC power is connected; compare against OMEN Gaming Hub; export wmi-command-history.txt and BIOS version |
| Performance profile reverts to Balanced after relaunch | Fixed in 3.8.1 for tray/hotkey/General quick-profile changes (GitHub #145); if still seen, note which entry point you used |
| OSD not visible in a game | Fixed in 3.9.0 for borderless/windowed-fullscreen (overlay now re-asserts topmost every second); true DXGI exclusive fullscreen still cannot show any overlay window — switch the game to borderless/windowed-fullscreen mode |
| Linux permission denied | Run CLI command with sudo |
Windows logs are stored under %LOCALAPPDATA%\OmenCore\. Linux diagnostics can be collected with sudo ./omencore-cli diagnose --report.
- INSTALL.md - installation, upgrade, portable use, Linux setup, uninstall.
- docs/CHANGELOG_v4.2.0.md - current release notes.
- docs/ROADMAP_v4.2.0.md - current roadmap, scope, and execution checklist.
- docs/CHANGELOG_v4.1.7.md - previous release notes.
- docs/CHANGELOG_v4.1.5.md - earlier release notes.
- docs/CHANGELOG_v3.9.0.md - earlier release notes.
- docs/3.8.1-BUG-REPORTS.md - active field report tracking (covers GitHub #141-#146 and Discord reports through v3.8.2).
- docs/CHANGELOG_v3.8.2.md - earlier release notes.
- docs/CHANGELOG_v3.8.1.md - earlier release notes.
- docs/CHANGELOG_v3.8.0.md - earlier release notes.
- docs/CHANGELOG_v3.7.1.md - earlier release notes.
- docs/3.8.0-CORE-CONTROLS-NEXT-STEPS.md - core control validation and practical next steps.
- docs/3.8.0-BUG-REPORTS.md - prior 3.8.0 field report tracking.
- docs/FINAL_RELEASE_CHECKLIST.md - a historical release-gate checklist from the v3.7.1 cycle, kept for reference; not maintained per release.
- docs/3.7.1-BUG-REPORTS.md - field report tracking.
- docs/LINUX_INSTALL_GUIDE.md - Linux details.
- docs/ANTIVIRUS_FAQ.md - antivirus and driver guidance.
- docs/DEFENDER_FALSE_POSITIVE.md - Defender guidance.
- drivers/PawnIO/README.md - PawnIO backend details.
| Version | Summary |
|---|---|
| 4.2.0 | Minor release, three pillars: CPU temperature could latch onto a chassis sensor instead of the real CPU zone on multi-zone boards, now unit-tested and re-evaluated every poll (fan-control-affecting, not just display); navigation moved from a horizontal tab strip to a vertical rail, redesigned three more times after real-hardware feedback (sidebar merge, Quick Actions relocated, colored group separators, auto-fit scaling); AMD CPU undervolt status stopped claiming a hardware "readback" the SMU path doesn't have; two RGB detection false positives fixed (a false "OMEN Keyboard" badge on non-HP hardware, iCUE not detected due to a stale process-name check); Games tab virtualization fix; Tuning tab accessibility labeling completed; fan curve share codes; Roboto Condensed font consolidation (the actual font switch was attempted, found non-deterministic in testing, and reverted); five GitHub issues triaged and three community projects reviewed. 1367/1367 tests. |
| 4.1.7 | Patch release (v4.1.6 never tagged/released, rolled forward): unconfirmed EC power-limit register writes now blocked by default (safety-relevant, GitHub #159); fans stuck at maximum after switching Performance Mode away from an active Max fan hold now correctly release the BIOS latch (board 8DCD); GPU Power Boost EC fallback no longer falsely claims "Extended" applied; locale-dependent number formatting fixed at the source; Spotify bloatware false-positive and board 8BCA AMD/Intel misidentification fixed (GitHub #163); a guided fan-diagnostic RPM display bug fixed from a community member's own logs; sixteen community-contributed PRs/branches reviewed and merged (tempestnano) — board 8D87 support, a gated AMD SMU transport fix, a sleeping-dGPU polling fix, per-key and per-LED RGB for every supported board that also fixed reactive lighting being inert for every user, an experimental adapter-power-override feature (explicitly disclosed, off by default), and several process-lifecycle fixes including a real BSOD incident; three UI-responsiveness passes for a standing "laggy UI" complaint; a CPU-family misidentification fix (GitHub #171); a new RAM Smart Clean feature (GitHub #173); a model-identity fix preventing a name-pattern fallback from crossing CPU vendor lines (GitHub #172); a tuning-subsystems honesty/consolidation pass covering GPU Power Boost, GPU OC/UV, and CPU OC/UV. 1288/1288 tests. |
| 4.1.5 | Patch release: GPU Power Boost enabled on Victus board 8A25, a locked fan-curve tooltip reworded to stop implying it's about verification status, ApplyMaxCooling() fixed to stop reporting success when the hardware write actually failed (including in the thermal-critical safety-override path), matching silent-write-failure bugs fixed in Razer and Corsair RGB, a MainWindow banner conflating "unsupported" with "unverified" split into two correctly-gated banners, and SettingsView.xaml accessibility labeling completed (156/156 controls). 1000/1000 tests. |
| 4.1.0 | Minor release: field-report fixes for five GitHub issues/two Discord threads (telemetry-mismatch, freeze-heuristic false positive, Max-fan reassert loop, dead GPU-Power-Boost capability flag, board-naming ambiguity, Linux RGB sysfs path), a systemic Power Automation wattage bug found via an older-docs sweep, and four more bugs found by reading real users' diagnostics exports/logs directly (three broken diagnostics collectors never producing real data, a Logitech HID++ fallback silently failing while claiming success, a CPU-thermal-authority selector flip-flopping ~192 times in one session). 990/990 tests. |
| 4.0.0 | Major release: sustainability/architecture cycle, not features-first — DI composition root started (19/~40 MainViewModel fields migrated), shared polling coordinator, community model-database contribution pipeline, persistent "Model Capabilities" diagnostics panel, accessibility labeling pass (~140 controls across 5 views), game-profile window-title disambiguation + WMI event-based detection + multi-game restore, dead-code removal, safety-gate string-match audit fix. No fan/thermal/EC control behavior changed. |
| 3.9.0 | Minor release: non-functional OMEN key action fix, game-profile-loss-on-crash fix, silent EC-failure logging, crash stack traces, GPU Power Boost/profile linkage, Custom tab theme fix, OSD stale-default fix, AutomationService idle/battery bugs, HardwareWorker update-kill-loop fix, 8C3F/8C77 model additions |
| 3.8.2 | Patch release: critical Application Hang fix (#BUG-3820-001), fans-stuck-at-max/failed-standby fix (#146), Power Automation boot-apply fix, diagnostics-export wiring fix (#145 evidence gap), Optimizer verification fix, fan-monitor-loop shutdown-race fix |
| 3.8.1 | Patch release: GitHub #141-#145 follow-up, fan-telemetry truthfulness, saved Custom curve fix, GPU OC startup-reapply clarity, OMEN-key field diagnostics, performance-profile relaunch persistence fix |
| 3.8.0 | Release candidate: field fixes, fan/RGB/tuning readiness diagnostics, UI responsiveness, model-specific validation |
| 3.7.1 | Quick Access profiles, WMI V1 fan recovery, profile-only fan gating, AMD ADL containment, launch diagnostics |
| 3.7.0 | Runtime recovery, fan/profile authority, OMEN Max identity, Linux diagnose improvements |
| 3.6.3 | Desktop fan-write safety, conservative WMI fan handoff, OSD startup hardening |
| 3.6.2 | Runtime source-of-truth hardening, RGB fallback reliability, Linux diagnostics |
| 3.6.1 | Fan/performance sync, tray/OSD consistency, WMI fan CPU reduction |
| 3.6.0 | Lightweight runtime, hardware-worker reliability, fan/RGB/hotkey hardening |
| 3.5.0 | Diagnostics clarity, safer tuning flow, conflict and recovery guardrails |
Older release notes live in docs/.
Useful contributions include fresh diagnostic exports, model ProductId verification, EC/WMI behavior reports, Linux sysfs snapshots, translations, and focused bug fixes. Please include logs and the model identity summary when filing hardware-control issues.
If Diagnostics reports Unknown <Family> Model or "Resolution source: Family fallback / Low confidence" (as opposed to an exact ProductId match), your laptop works through conservative generic defaults rather than a model-specific profile. To get it added:
- Open Diagnostics (or About) and copy the Model Identity Summary in full, including
Capability ProductId,Baseboard ProductId,WMI model,System SKU/ HP support product number, and the keyboard identity lines. - Note your CPU, GPU, and BIOS version, and whether fan control, Battery Care, RGB, and performance-mode persistence work or fail individually — a feature that already works via family fallback should stay marked as working so the new profile does not become more restrictive than what you have today.
- Open a GitHub issue with that summary, your symptoms, and (if relevant) what OMEN Gaming Hub shows for the same feature.
- Exact identity entries always start conservative: WMI fan/profile control only where evidence already shows it working, with direct EC writes, MUX switching, undervolt, and RGB left unclaimed until a tester confirms the surface exists. Capabilities are widened in a follow-up once that evidence arrives — see docs/3.8.1-BUG-REPORTS.md for examples of this pattern (
8D40,8A18,8E9A).
OmenCore is provided as-is. Fan control, EC writes, undervolting, GPU power changes, and MUX switching can affect stability and hardware behavior. Use restore points, read capability warnings, and avoid enabling unverified hardware restore paths unless you understand the recovery steps.
OmenCore is not made by or endorsed by HP.
- GitHub: https://github.com/theantipopau/omencore
- Releases: https://github.com/theantipopau/omencore/releases/latest
- Issues: https://github.com/theantipopau/omencore/issues
- Discord: https://discord.gg/9WhJdabGk8
- Donate: https://www.paypal.com/donate/?business=XH8CKYF8T7EBU
MIT License. See LICENSE.
Third-party components include LibreHardwareMonitor, Hardcodet.NotifyIcon.Wpf, PawnIO, and vendor RGB SDK files where bundled. See the relevant source folders and driver documentation for details.

