Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6215181d23 |
@@ -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
|
(`MAJOR.MINOR.PATCH`, pre-1.0). `__version__` and `pyproject.toml` must match the git
|
||||||
release tag (so the auto-updater, D18, can compare versions).
|
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
|
## [0.1.0] - 2026-05-21
|
||||||
_First milestone release — a complete, installable, self-updating RigDoctor: live monitoring,
|
_First milestone release — a complete, installable, self-updating RigDoctor: live monitoring,
|
||||||
crash capture + health report, desktop GUI, user-local install/uninstall, and updates._
|
crash capture + health report, desktop GUI, user-local install/uninstall, and updates._
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rigdoctor"
|
name = "rigdoctor"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Modular hardware monitoring & crash diagnostics for Linux gamers."
|
description = "Modular hardware monitoring & crash diagnostics for Linux gamers."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
"""RigDoctor — modular hardware monitoring & crash diagnostics for Linux gamers."""
|
"""RigDoctor — modular hardware monitoring & crash diagnostics for Linux gamers."""
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.1"
|
||||||
|
|||||||
@@ -119,4 +119,9 @@ QPushButton#LinkButton {{
|
|||||||
text-align: left; padding: 0; text-decoration: underline;
|
text-align: left; padding: 0; text-decoration: underline;
|
||||||
}}
|
}}
|
||||||
QPushButton#LinkButton:hover {{ color: {TEXT}; }}
|
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; }}
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user