Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c8f7d66349 | |||
| 6215181d23 |
@@ -5,6 +5,16 @@ 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.2.0] - 2026-05-21
|
||||||
|
### Added
|
||||||
|
- **"Check for updates" button** in the sidebar — force an immediate version check instead of
|
||||||
|
waiting for the 30-minute poll.
|
||||||
|
|
||||||
|
## [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.2.0"
|
||||||
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.2.0"
|
||||||
|
|||||||
@@ -134,6 +134,11 @@ class MainWindow(QMainWindow):
|
|||||||
changelog_btn.setCursor(Qt.CursorShape.PointingHandCursor)
|
changelog_btn.setCursor(Qt.CursorShape.PointingHandCursor)
|
||||||
changelog_btn.clicked.connect(self._show_changelog)
|
changelog_btn.clicked.connect(self._show_changelog)
|
||||||
v.addWidget(changelog_btn)
|
v.addWidget(changelog_btn)
|
||||||
|
check_btn = QPushButton("Check for updates")
|
||||||
|
check_btn.setObjectName("LinkButton")
|
||||||
|
check_btn.setCursor(Qt.CursorShape.PointingHandCursor)
|
||||||
|
check_btn.clicked.connect(self._manual_check)
|
||||||
|
v.addWidget(check_btn)
|
||||||
|
|
||||||
# Update state (filled in by the background check).
|
# Update state (filled in by the background check).
|
||||||
self._update_label = QLabel("checking for updates…")
|
self._update_label = QLabel("checking for updates…")
|
||||||
@@ -189,6 +194,12 @@ class MainWindow(QMainWindow):
|
|||||||
self._update_label.setText("update failed")
|
self._update_label.setText("update failed")
|
||||||
self._update_btn.setEnabled(True)
|
self._update_btn.setEnabled(True)
|
||||||
|
|
||||||
|
def _manual_check(self) -> None:
|
||||||
|
if self._applied:
|
||||||
|
return
|
||||||
|
self._update_label.setText("checking for updates…")
|
||||||
|
self._start_update_check()
|
||||||
|
|
||||||
def _start_update_check(self) -> None:
|
def _start_update_check(self) -> None:
|
||||||
threading.Thread(target=self._check_updates, daemon=True).start()
|
threading.Thread(target=self._check_updates, daemon=True).start()
|
||||||
|
|
||||||
|
|||||||
@@ -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