From 0f9cb4b68469bb2957fca1db4269b582bba88214 Mon Sep 17 00:00:00 2001 From: Jessey van Offeren Date: Fri, 29 May 2026 16:09:02 +0200 Subject: [PATCH] chore(release): v0.42.0 Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- src/rigdoctor/__init__.py | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7035ed..b6e6c5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ All notable changes to RigDoctor are recorded here. Format follows (`MAJOR.MINOR.PATCH`, pre-1.0). `__version__` and `pyproject.toml` must match the git release tag (so the auto-updater, D18, can compare versions). +## [0.42.0] - 2026-05-29 +### Added +- **Detect hard freezes that log no Xid.** The kernel-log scanner caught Xid codes, OOM, panic, + MCE, PCIe AER, thermal events, and amdgpu resets — but a crash that logs *no* Xid slipped + through. It now flags the NVIDIA open-kernel-module **VA-space mapping fault** (`gpu_vaspace.c` + / `dmaAllocMapping` assertions, NVKMS GEM-allocation failures) — a driver-internal error that + can storm for minutes and end in a freeze without the GPU ever "falling off the bus" (distinct + from Xid 79). A new `check_nvidia_module()` notes when the open module (`nvidia-*-open`) is + loaded — the context behind these faults — and a new `ai_knowledge` entry lets the assistant + tell the no-Xid freeze apart from the Xid 79 hardware drop. +- **Add games no launcher reports (e.g. SPT).** A user-authored custom-games list + (`core/customgames.py`) shows alongside Steam/Lutris/Heroic in `rigdoctor games` and the GUI + ("Add game…"), for standalone mod launchers (Single-Player Tarkov), itch.io downloads, or any + hand-installed game. Each entry can carry a launch command and a log directory: + `rigdoctor games add "SPT" --command .../tarkov.sh` (a sibling `logs/` is auto-detected), + `rigdoctor games play "SPT"` launches it under the crash-capture wrapper (tagged with the real + name, not the script's), and the diagnostic now tails the game's *own* logs — SPT's + server/launcher logs — alongside the kernel log so the analysis sees what the game logged + before the freeze. + ## [0.41.0] - 2026-05-25 ### Added - **Import a crash dump (`.dmp`) and explain it with AI.** The **Games** page gains an diff --git a/pyproject.toml b/pyproject.toml index 68e09ee..376253b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "rigdoctor" -version = "0.41.0" +version = "0.42.0" description = "Modular hardware monitoring & crash diagnostics for Linux gamers." readme = "README.md" requires-python = ">=3.11" diff --git a/src/rigdoctor/__init__.py b/src/rigdoctor/__init__.py index d60de26..2dcfd8b 100644 --- a/src/rigdoctor/__init__.py +++ b/src/rigdoctor/__init__.py @@ -1,3 +1,3 @@ """RigDoctor — modular hardware monitoring & crash diagnostics for Linux gamers.""" -__version__ = "0.41.0" +__version__ = "0.42.0"