mirror of
https://github.com/CloakHQ/CloakBrowser.git
synced 2026-06-23 11:41:46 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5649620545 |
@@ -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 }}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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 @@
|
|||||||
__version__ = "0.3.15"
|
__version__ = "0.3.16"
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user