fix(gui): drop sample count from the recording badge — 0.18.1
The live sample count wasn't useful at a glance. The sidebar badge now shows just ● Recording + the game, plus a ⚠ GPU-lost line when detected. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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.18.1] - 2026-05-22
|
||||||
|
### Changed
|
||||||
|
- Recording badge: dropped the sample count (not useful at a glance) — it now shows just
|
||||||
|
**● Recording** + the game, plus a **⚠ GPU-lost** line if one is detected.
|
||||||
|
|
||||||
## [0.18.0] - 2026-05-22
|
## [0.18.0] - 2026-05-22
|
||||||
### Added
|
### Added
|
||||||
- **Global recording indicator.** While a capture is running, the sidebar shows a red
|
- **Global recording indicator.** While a capture is running, the sidebar shows a red
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rigdoctor"
|
name = "rigdoctor"
|
||||||
version = "0.18.0"
|
version = "0.18.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.18.0"
|
__version__ = "0.18.1"
|
||||||
|
|||||||
@@ -270,12 +270,11 @@ class MainWindow(QMainWindow):
|
|||||||
self._rec_indicator.hide()
|
self._rec_indicator.hide()
|
||||||
return
|
return
|
||||||
game = status.get("game")
|
game = status.get("game")
|
||||||
samples = status.get("samples", 0)
|
|
||||||
lost = " · GPU-lost" if status.get("gpu_lost") else ""
|
|
||||||
lines = [f"<span style='color:{CRIT};'>●</span> <b style='color:{TEXT};'>Recording</b>"]
|
lines = [f"<span style='color:{CRIT};'>●</span> <b style='color:{TEXT};'>Recording</b>"]
|
||||||
if game:
|
if game:
|
||||||
lines.append(f"<span style='color:{TEXT};'>{html.escape(str(game))}</span>")
|
lines.append(f"<span style='color:{TEXT};'>{html.escape(str(game))}</span>")
|
||||||
lines.append(f"<span style='color:{MUTED};'>{samples} samples{lost}</span>")
|
if status.get("gpu_lost"):
|
||||||
|
lines.append(f"<span style='color:{CRIT};'>⚠ GPU-lost</span>")
|
||||||
self._rec_indicator.setText("<br>".join(lines))
|
self._rec_indicator.setText("<br>".join(lines))
|
||||||
self._rec_indicator.show()
|
self._rec_indicator.show()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user