docs: add links section, fix download badges, post-download CTAs

- Add Links section to both READMEs (website, issues, PyPI, npm, email)
- Replace broken pepy.tech badge with shields.io PyPI + npm download badges
- Post-download messages: website, issues link, star CTA (Python + JS)
- Fix CLOAKBROWSER_DOWNLOAD_URL default in docs (github → cloakbrowser.dev)
- Fix tests: download URL assertions, platform-aware stealth args test
This commit is contained in:
CloakHQ
2026-02-27 03:52:53 +01:00
parent b07797f963
commit cee166c2d2
7 changed files with 61 additions and 30 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ describe("version comparison", () => {
describe("download URL", () => {
it("uses chromium-v prefix and cloakbrowser repo", () => {
const url = getDownloadUrl();
expect(url).toContain("github.com/CloakHQ/cloakbrowser/releases/download");
expect(url).toContain("cloakbrowser.dev");
expect(url).toContain(`chromium-v${CHROMIUM_VERSION}`);
expect(url.endsWith(".tar.gz")).toBe(true);
});