docs: drop remaining GitHub mentions (CONTRIBUTING/SECURITY/.gitignore)

This commit is contained in:
Engelgardt23
2026-06-01 13:16:41 +03:00
parent 5783b2c17d
commit 77d02c65cf
3 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ dist/
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
# Distribution staging folders (built per-version, attached to GitHub Releases) # Distribution staging folders (built per-version, attached to Gitea Releases)
portable-v*/ portable-v*/
# Local backup of release archives # Local backup of release archives
+4 -5
View File
@@ -6,9 +6,8 @@
``` ```
vrcx/ vrcx/
├── .github/ ├── .gitea/
── workflows/release.yml ← CI: tag-driven build + GitHub Release ── workflows/release.yml ← CI: tag-driven build + Gitea Release
│ └── ISSUE_TEMPLATE/ ← bug / feature / security routing
├── dev/ ← current work (everything code-related lives here) ├── dev/ ← current work (everything code-related lives here)
│ ├── src/vrcx/ │ ├── src/vrcx/
│ │ ├── __init__.py ← single source of truth for __version__ │ │ ├── __init__.py ← single source of truth for __version__
@@ -17,7 +16,7 @@ vrcx/
│ │ ├── config.py ← config.ini next to the exe (first-run prompt) │ │ ├── config.py ← config.ini next to the exe (first-run prompt)
│ │ ├── i18n.py ← EN/RU translation table + t() helper │ │ ├── i18n.py ← EN/RU translation table + t() helper
│ │ ├── platform_win.py ← VT enable │ │ ├── platform_win.py ← VT enable
│ │ ├── update_check.py ← GitHub /releases/latest poll (returns tag) │ │ ├── update_check.py ← Gitea /releases/latest poll (returns tag)
│ │ ├── commands.py ← BMC artefacts table │ │ ├── commands.py ← BMC artefacts table
│ │ ├── bmc.py ← BmcSession (SSH + Redfish helper) │ │ ├── bmc.py ← BmcSession (SSH + Redfish helper)
│ │ ├── collector.py ← per-host BMC collect loop │ │ ├── collector.py ← per-host BMC collect loop
@@ -72,7 +71,7 @@ python -m PyInstaller --onefile --console --name vrcx \
4. Tag: `git tag vX.Y.Z`. 4. Tag: `git tag vX.Y.Z`.
5. Push: `git push && git push --tags`. 5. Push: `git push && git push --tags`.
CI builds the exe and creates the GitHub Release with the zip attached. CI builds the exe and creates the Gitea Release with the zip attached.
## Where features go ## Where features go
+2 -4
View File
@@ -6,16 +6,14 @@ output to disk — so vulnerability reports are very welcome.
## Supported versions ## Supported versions
Only the latest tagged release on GitHub is supported. Older versions will Only the latest tagged release is supported. Older versions will
not get fixes; please upgrade first. not get fixes; please upgrade first.
## How to report a vulnerability ## How to report a vulnerability
**Please do not open a public issue** for security-sensitive findings. **Please do not open a public issue** for security-sensitive findings.
Use GitHub's private security advisories: go to the Report privately by email to the maintainer at engelgardt2024@gmail.com.
[Security tab](../../security/advisories/new) of this repo and click
"Report a vulnerability". GitHub will route it privately.
Please include: Please include:
- The version you tested (the startup banner is enough). - The version you tested (the startup banner is enough).