diff --git a/CHANGELOG.md b/CHANGELOG.md index a404b76..06e5466 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.1.1] - 2026-05-21 +### Fixed +- Dialogs (the update prompt and changelog) were light-on-light and unreadable — they now use + the dark theme with readable text. + ## [0.1.0] - 2026-05-21 _First milestone release — a complete, installable, self-updating RigDoctor: live monitoring, crash capture + health report, desktop GUI, user-local install/uninstall, and updates._ diff --git a/pyproject.toml b/pyproject.toml index 7d20eba..282a045 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "rigdoctor" -version = "0.1.0" +version = "0.1.1" 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 460e6ed..23519c1 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.1.0" +__version__ = "0.1.1" diff --git a/src/rigdoctor/gui/theme.py b/src/rigdoctor/gui/theme.py index f0b9de3..72313e5 100644 --- a/src/rigdoctor/gui/theme.py +++ b/src/rigdoctor/gui/theme.py @@ -119,4 +119,9 @@ QPushButton#LinkButton {{ text-align: left; padding: 0; text-decoration: underline; }} QPushButton#LinkButton:hover {{ color: {TEXT}; }} + +/* Dialogs (update prompt, changelog) — match the dark theme so text is readable. */ +QDialog {{ background: {BG}; }} +QMessageBox {{ background: {CARD}; }} +QDialog QLabel, QMessageBox QLabel {{ color: {TEXT}; background: transparent; }} """