Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7779131cf9 | |||
|
87fa678ccb
|
|||
| c5e24b3984 | |||
|
21cc6a4813
|
@@ -5,6 +5,12 @@ 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.36.1] - 2026-05-22
|
||||||
|
### Fixed
|
||||||
|
- `rigdoctor gui` printed the wrong fix when PySide6 is missing — it suggested the non-existent
|
||||||
|
`python3-pyside6` package. Now it names the real split modules
|
||||||
|
(`python3-pyside6.qt{widgets,gui,websockets,svg}` + `python3-pyte`).
|
||||||
|
|
||||||
## [0.36.0] - 2026-05-22
|
## [0.36.0] - 2026-05-22
|
||||||
### Fixed
|
### Fixed
|
||||||
- **`.deb` now installs all dependencies automatically — no manual tool install.** The previous
|
- **`.deb` now installs all dependencies automatically — no manual tool install.** The previous
|
||||||
|
|||||||
@@ -41,22 +41,39 @@ apt pulls the GUI dependencies (PySide6, pyte) automatically:
|
|||||||
sudo apt install ./rigdoctor_*_all.deb # CLI only: add --no-install-recommends
|
sudo apt install ./rigdoctor_*_all.deb # CLI only: add --no-install-recommends
|
||||||
```
|
```
|
||||||
|
|
||||||
**Or add the apt repository** for `apt install` + automatic updates:
|
**Or add the apt repository** for `apt install` + automatic updates. The registry is private and
|
||||||
|
GPG-signed, so you need a Gitea token with **`read:package`**, the signing key, and the deb822
|
||||||
|
source (`read -rsp` keeps the token out of your shell history):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# the registry is private, so give apt a token (a Gitea PAT with read:package)
|
read -rsp 'Gitea read:package token: ' TOKEN; echo
|
||||||
echo "machine git.jesseyvanofferen.com login <user> password <token>" \
|
|
||||||
| sudo tee /etc/apt/auth.conf.d/rigdoctor.conf
|
|
||||||
sudo chmod 600 /etc/apt/auth.conf.d/rigdoctor.conf
|
|
||||||
|
|
||||||
echo "deb [trusted=yes] https://git.jesseyvanofferen.com/api/packages/jessey/debian stable main" \
|
# signing key → dearmored into the keyring (the key endpoint requires the token too)
|
||||||
| sudo tee /etc/apt/sources.list.d/rigdoctor.list
|
sudo install -d -m 0755 /etc/apt/keyrings
|
||||||
|
curl -fsSL --user <user>:"$TOKEN" \
|
||||||
|
https://git.jesseyvanofferen.com/api/packages/jessey/debian/repository.key \
|
||||||
|
| sudo gpg --dearmor -o /etc/apt/keyrings/gitea-jessey.gpg
|
||||||
|
|
||||||
|
# download credentials, kept out of the sources file
|
||||||
|
printf 'machine git.jesseyvanofferen.com login <user> password %s\n' "$TOKEN" \
|
||||||
|
| sudo tee /etc/apt/auth.conf.d/rigdoctor.conf >/dev/null
|
||||||
|
sudo chmod 0600 /etc/apt/auth.conf.d/rigdoctor.conf
|
||||||
|
|
||||||
|
# the source (modern deb822 format, GPG-verified, all-arch)
|
||||||
|
sudo tee /etc/apt/sources.list.d/rigdoctor.sources >/dev/null <<'EOF'
|
||||||
|
Types: deb
|
||||||
|
URIs: https://git.jesseyvanofferen.com/api/packages/jessey/debian
|
||||||
|
Suites: stable
|
||||||
|
Components: main
|
||||||
|
Architectures: all
|
||||||
|
Signed-By: /etc/apt/keyrings/gitea-jessey.gpg
|
||||||
|
EOF
|
||||||
|
|
||||||
sudo apt update && sudo apt install rigdoctor
|
sudo apt update && sudo apt install rigdoctor
|
||||||
```
|
```
|
||||||
|
|
||||||
Then `sudo apt upgrade` keeps it current. *(If your server serves a signed registry, drop the
|
Then `sudo apt upgrade` keeps it current. *(Quick-and-dirty alternative if the registry isn't
|
||||||
`auth.conf.d` file and replace `[trusted=yes]` with `[signed-by=…]` + the `repository.key`.)*
|
signed: skip the key and use a one-line `deb [arch=all trusted=yes] …/debian stable main` source.)*
|
||||||
|
|
||||||
### Any distro — self-extracting `.run` (no root)
|
### Any distro — self-extracting `.run` (no root)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rigdoctor"
|
name = "rigdoctor"
|
||||||
version = "0.36.0"
|
version = "0.36.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.36.0"
|
__version__ = "0.36.1"
|
||||||
|
|||||||
@@ -55,8 +55,9 @@ def cmd_gui(args) -> int:
|
|||||||
from .gui.app import main as gui_main
|
from .gui.app import main as gui_main
|
||||||
except ImportError as exc:
|
except ImportError as exc:
|
||||||
print("The GUI needs PySide6, which isn't installed.")
|
print("The GUI needs PySide6, which isn't installed.")
|
||||||
print(" Install it with: pip install 'rigdoctor[gui]'")
|
print(" Ubuntu/Debian: sudo apt install python3-pyside6.qtwidgets "
|
||||||
print(" or on Ubuntu: sudo apt install python3-pyside6")
|
"python3-pyside6.qtgui python3-pyside6.qtwebsockets python3-pyside6.qtsvg python3-pyte")
|
||||||
|
print(" pip: pip install 'rigdoctor[gui]'")
|
||||||
print(f" ({exc})")
|
print(f" ({exc})")
|
||||||
return 2
|
return 2
|
||||||
return gui_main([sys.argv[0]])
|
return gui_main([sys.argv[0]])
|
||||||
|
|||||||
Reference in New Issue
Block a user