fix: use absolute image URLs for PyPI, bump to 0.1.2

PyPI doesn't render relative image paths — switched to raw GitHub URLs.
Also updated pyproject.toml metadata (author, URLs).
This commit is contained in:
CloakHQ
2026-02-23 02:53:36 +01:00
parent 924f401265
commit efab732142
4 changed files with 11 additions and 11 deletions
+5 -5
View File
@@ -1,5 +1,5 @@
<p align="center">
<img src="images/logo.png" width="500" alt="CloakBrowser">
<img src="https://raw.githubusercontent.com/CloakHQ/CloakBrowser/main/images/logo.png" width="500" alt="CloakBrowser">
</p>
# CloakBrowser
@@ -70,22 +70,22 @@ All tests verified against live detection services. Last tested: Feb 2026 (Chrom
### Proof
<p align="center">
<img src="images/recaptcha_v3_score_09.png" width="600" alt="reCAPTCHA v3 — Score 0.9">
<img src="https://raw.githubusercontent.com/CloakHQ/CloakBrowser/main/images/recaptcha_v3_score_09.png" width="600" alt="reCAPTCHA v3 — Score 0.9">
<br><em>reCAPTCHA v3 score 0.9 — server-side verified (human-level)</em>
</p>
<p align="center">
<img src="images/turnstile_non_interactive.png" width="600" alt="Cloudflare Turnstile — Success">
<img src="https://raw.githubusercontent.com/CloakHQ/CloakBrowser/main/images/turnstile_non_interactive.png" width="600" alt="Cloudflare Turnstile — Success">
<br><em>Cloudflare Turnstile non-interactive challenge — auto-resolved</em>
</p>
<p align="center">
<img src="images/browserscan_normal.png" width="600" alt="BrowserScan — Normal">
<img src="https://raw.githubusercontent.com/CloakHQ/CloakBrowser/main/images/browserscan_normal.png" width="600" alt="BrowserScan — Normal">
<br><em>BrowserScan bot detection — NORMAL (4/4 checks passed)</em>
</p>
<p align="center">
<img src="images/fingerprintjs_pass.png" width="600" alt="FingerprintJS — Passed">
<img src="https://raw.githubusercontent.com/CloakHQ/CloakBrowser/main/images/fingerprintjs_pass.png" width="600" alt="FingerprintJS — Passed">
<br><em>FingerprintJS web-scraping demo — data served, not blocked</em>
</p>
+1 -1
View File
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.2"
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 304 KiB

+5 -5
View File
@@ -10,7 +10,7 @@ readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "cloakbrowser" },
{ name = "CloakHQ", email = "cloakhq@pm.me" },
]
keywords = [
"stealth",
@@ -47,10 +47,10 @@ dependencies = [
]
[project.urls]
Homepage = "https://github.com/CloakHQ/cloakbrowser"
Documentation = "https://github.com/CloakHQ/cloakbrowser#readme"
Repository = "https://github.com/CloakHQ/cloakbrowser"
Issues = "https://github.com/CloakHQ/cloakbrowser/issues"
Homepage = "https://github.com/CloakHQ/CloakBrowser"
Documentation = "https://github.com/CloakHQ/CloakBrowser#readme"
Repository = "https://github.com/CloakHQ/CloakBrowser"
Issues = "https://github.com/CloakHQ/CloakBrowser/issues"
[tool.hatch.version]
path = "cloakbrowser/_version.py"