Compare commits

..
1 Commits
Author SHA1 Message Date
CloakHQ 5649620545 release: v0.3.16 — Linux ARM64 binary, multi-arch Docker, donate link
- Add linux-arm64 to PLATFORM_CHROMIUM_VERSIONS (Python + JS)
- Multi-arch Docker build (linux/amd64 + linux/arm64) via QEMU in CI
- Add ko-fi donate link to welcome banner (Python + JS)
- Version bump to 0.3.16
2026-03-14 00:42:06 +01:00
9 changed files with 14 additions and 2 deletions
+2
View File
@@ -107,6 +107,7 @@ jobs:
run: | run: |
VERSION=$(python -c 'import re; print(re.search(r"__version__\s*=\s*[\"'\'']([^\"'\'']+)", open("cloakbrowser/_version.py").read()).group(1))') VERSION=$(python -c 'import re; print(re.search(r"__version__\s*=\s*[\"'\'']([^\"'\'']+)", open("cloakbrowser/_version.py").read()).group(1))')
echo "VERSION=$VERSION" >> $GITHUB_ENV echo "VERSION=$VERSION" >> $GITHUB_ENV
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3 - uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3 - uses: docker/login-action@v3
with: with:
@@ -117,6 +118,7 @@ jobs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: . context: .
platforms: linux/amd64,linux/arm64
push: true push: true
tags: | tags: |
cloakhq/cloakbrowser:${{ env.VERSION }} cloakhq/cloakbrowser:${{ env.VERSION }}
+5
View File
@@ -6,6 +6,11 @@ Changes are tagged: **[wrapper]** for Python/JS wrapper, **[binary]** for Chromi
--- ---
## [0.3.16] — 2026-03-14
- **[binary]** Linux arm64 build available — Raspberry Pi, AWS Graviton, Oracle Ampere now supported
- **[wrapper]** Add donate link to first-launch welcome banner
## [0.3.15] — 2026-03-13 ## [0.3.15] — 2026-03-13
- **[binary]** Upgrade Linux build to 145.0.7632.159.7 — 33 source-level C++ patches - **[binary]** Upgrade Linux build to 145.0.7632.159.7 — 33 source-level C++ patches
+1
View File
@@ -615,6 +615,7 @@ browser = launch(args=[
| Platform | Chromium | Patches | Status | | Platform | Chromium | Patches | Status |
|---|---|---|---| |---|---|---|---|
| Linux x86_64 | 145 | 31 | ✅ Latest | | Linux x86_64 | 145 | 31 | ✅ Latest |
| Linux arm64 (RPi, Graviton) | 145 | 31 | ✅ Latest |
| macOS arm64 (Apple Silicon) | 145 | 26 | ✅ Latest | | macOS arm64 (Apple Silicon) | 145 | 26 | ✅ Latest |
| macOS x86_64 (Intel) | 145 | 26 | ✅ Latest | | macOS x86_64 (Intel) | 145 | 26 | ✅ Latest |
| Windows x86_64 | 145 | 26 | ✅ Latest | | Windows x86_64 | 145 | 26 | ✅ Latest |
+1 -1
View File
@@ -1 +1 @@
__version__ = "0.3.15" __version__ = "0.3.16"
+1
View File
@@ -19,6 +19,7 @@ CHROMIUM_VERSION = "145.0.7632.159.7"
PLATFORM_CHROMIUM_VERSIONS: dict[str, str] = { PLATFORM_CHROMIUM_VERSIONS: dict[str, str] = {
"linux-x64": "145.0.7632.159.7", "linux-x64": "145.0.7632.159.7",
"linux-arm64": "145.0.7632.159.7",
"darwin-arm64": "145.0.7632.109.2", "darwin-arm64": "145.0.7632.109.2",
"darwin-x64": "145.0.7632.109.2", "darwin-x64": "145.0.7632.109.2",
"windows-x64": "145.0.7632.109.2", "windows-x64": "145.0.7632.109.2",
+1
View File
@@ -60,6 +60,7 @@ def _show_welcome() -> None:
print(" https://github.com/CloakHQ/CloakBrowser") print(" https://github.com/CloakHQ/CloakBrowser")
print() print()
print(" Issues? https://github.com/CloakHQ/CloakBrowser/issues") print(" Issues? https://github.com/CloakHQ/CloakBrowser/issues")
print(" Donate? https://ko-fi.com/cloakhq")
print(" Star us if CloakBrowser helps your project!") print(" Star us if CloakBrowser helps your project!")
print() print()
try: try:
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "cloakbrowser", "name": "cloakbrowser",
"version": "0.3.15", "version": "0.3.16",
"description": "Stealth Chromium that passes every bot detection test. Drop-in Playwright/Puppeteer replacement with source-level fingerprint patches.", "description": "Stealth Chromium that passes every bot detection test. Drop-in Playwright/Puppeteer replacement with source-level fingerprint patches.",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "dist/index.js",
+1
View File
@@ -31,6 +31,7 @@ export const CHROMIUM_VERSION = "145.0.7632.159.7";
export const PLATFORM_CHROMIUM_VERSIONS: Record<string, string> = { export const PLATFORM_CHROMIUM_VERSIONS: Record<string, string> = {
"linux-x64": "145.0.7632.159.7", "linux-x64": "145.0.7632.159.7",
"linux-arm64": "145.0.7632.159.7",
"darwin-arm64": "145.0.7632.109.2", "darwin-arm64": "145.0.7632.109.2",
"darwin-x64": "145.0.7632.109.2", "darwin-x64": "145.0.7632.109.2",
"windows-x64": "145.0.7632.109.2", "windows-x64": "145.0.7632.109.2",
+1
View File
@@ -151,6 +151,7 @@ function showWelcome(): void {
console.log(" https://github.com/CloakHQ/CloakBrowser"); console.log(" https://github.com/CloakHQ/CloakBrowser");
console.log(); console.log();
console.log(" Issues? https://github.com/CloakHQ/CloakBrowser/issues"); console.log(" Issues? https://github.com/CloakHQ/CloakBrowser/issues");
console.log(" Donate? https://ko-fi.com/cloakhq");
console.log(" Star us if CloakBrowser helps your project!"); console.log(" Star us if CloakBrowser helps your project!");
console.log(); console.log();
try { try {