00394c287c
release / release (push) Successful in 14s
- A guest who joined after the host enabled the terminal stayed read-only; the host now re-sends the terminal state on join (req_full), so the terminal works. - The shared terminal follows the cursor to the bottom as output arrives (ls -la) instead of staying scrolled up. - The Inventory page preserves scroll position on refresh (and skips re-rendering unchanged data), so it no longer jumps to the top while you're reading. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
676 B
TOML
27 lines
676 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "rigdoctor"
|
|
version = "0.7.1"
|
|
description = "Modular hardware monitoring & crash diagnostics for Linux gamers."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
# Core/CLI/daemon are stdlib-only by design (D2). The GUI/tray modules will add
|
|
# PySide6 via an optional extra when those land.
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
gui = ["PySide6", "pyte"]
|
|
|
|
[project.scripts]
|
|
rigdoctor = "rigdoctor.cli:main"
|
|
rigdoctor-gui = "rigdoctor.gui.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
rigdoctor = ["gui/assets/*.svg"]
|