Compare commits

4 Commits
v1.0.0 ... main

Author SHA1 Message Date
Dr Jones
4521d9ebe8 fix: use Gitea media URL for README screenshot
Some checks failed
CI / Test Python 3.10 (push) Has been cancelled
CI / Test Python 3.11 (push) Has been cancelled
CI / Test Python 3.12 (push) Has been cancelled
2026-05-26 18:14:52 -07:00
Dr Jones
f8348765c4 fix: README screenshot via GitHub release asset URL (raw CDN broken for this repo)
Some checks failed
CI / Test Python 3.10 (push) Has been cancelled
CI / Test Python 3.11 (push) Has been cancelled
CI / Test Python 3.12 (push) Has been cancelled
2026-05-23 20:57:36 -07:00
Dr Jones
860e3318a0 fix: README screenshot path for GitHub (no spaces in filename)
Some checks failed
CI / Test Python 3.10 (push) Has been cancelled
CI / Test Python 3.11 (push) Has been cancelled
CI / Test Python 3.12 (push) Has been cancelled
2026-05-22 20:15:26 -07:00
Dr Jones
6c775c12a0 docs: track releases README while keeping binaries local-only
Some checks failed
CI / Test Python 3.10 (push) Has been cancelled
CI / Test Python 3.11 (push) Has been cancelled
CI / Test Python 3.12 (push) Has been cancelled
2026-05-22 20:12:10 -07:00
4 changed files with 29 additions and 2 deletions

4
.gitignore vendored
View File

@@ -23,12 +23,14 @@ signup_draft.json
*.jpeg
# Exceptions — keep bundled assets that are already tracked
!proxy_chain_manager/world_map.png
!docs/dashboard-screenshot.png
# Build-staged binaries — staged by scripts/prepare_bundled_gost.ps1
# (downloaded from go-gost release with verified SHA256), not source code
proxy_chain_manager/_bundled/
# Release output (scripts/release_build.ps1) — upload as CI artifacts / GitHub Release
releases/
releases/*
!releases/README.md
build/version_info.txt

View File

@@ -1,6 +1,6 @@
# Proxy God
![Proxy God v2 Live dashboard](Screenshot%202026-05-21%20173255.png)
![Proxy God v2 - Live dashboard](https://gitea.thetempleofdoom.com/drjones/proxy-god/media/branch/main/docs/dashboard-screenshot.png)
**Mission-grade rotating proxy chains for Windows.**
**Self-healing. Leak-aware. Aggressive by default.**

View File

Before

Width:  |  Height:  |  Size: 356 KiB

After

Width:  |  Height:  |  Size: 356 KiB

25
releases/README.md Normal file
View File

@@ -0,0 +1,25 @@
# Proxy God — Windows releases
Production builds live here after running `build_release.bat` from the repo root.
## Latest: v1.0.0
| File | Description |
|------|-------------|
| `v1.0.0/ProxyChainManager.exe` | Main application (UAC admin, one-file PyInstaller build) |
| `v1.0.0/ProxyChainManager.exe.sha256` | SHA256 checksum |
| `v1.0.0/RELEASE_MANIFEST.json` | Version, git commit, build time, platform |
| `v1.0.0/SBOM.json` | Frozen dependency list at build time |
| `v1.0.0/requirements-frozen.txt` | Same as SBOM, pip freeze format |
| `v1.0.0/LICENSE` | MIT |
| `v1.0.0/OPERATOR_RUNBOOK.md` | Emergency ops (firewall disengage, etc.) |
| `ProxyGod-v1.0.0-windows-amd64.zip` | Full release archive |
### Verify download
```powershell
Get-FileHash -Algorithm SHA256 releases\v1.0.0\ProxyChainManager.exe
Get-Content releases\v1.0.0\ProxyChainManager.exe.sha256
```
Build commit: see `RELEASE_MANIFEST.json` inside the folder.