{"id":34600351,"url":"https://github.com/allthingssecurity/browser","last_synced_at":"2026-01-13T23:42:36.726Z","repository":{"id":329136400,"uuid":"1118282072","full_name":"allthingssecurity/browser","owner":"allthingssecurity","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-05T01:14:13.000Z","size":18352,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T19:45:53.782Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/allthingssecurity.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-17T14:22:21.000Z","updated_at":"2026-01-05T01:14:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/allthingssecurity/browser","commit_stats":null,"previous_names":["allthingssecurity/browser"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/allthingssecurity/browser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allthingssecurity%2Fbrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allthingssecurity%2Fbrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allthingssecurity%2Fbrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allthingssecurity%2Fbrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allthingssecurity","download_url":"https://codeload.github.com/allthingssecurity/browser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allthingssecurity%2Fbrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405320,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-24T12:35:51.169Z","updated_at":"2026-01-13T23:42:36.720Z","avatar_url":"https://github.com/allthingssecurity.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"NativeMacBrowser\n================\n\nA lightweight, native macOS web browser built with WebKit and Cocoa. It includes a macOS-style menu bar, toolbar with navigation controls, tabs, and basic bookmarks. The project ships with scripts to build a `.app`, package a `.dmg`, and publish a GitHub Release with downloadable artifacts.\n\nFeatures\n--------\n- Native UI: standard menu bar and customizable toolbar\n- Tabs: multiple `WKWebView` instances via `NSTabView`\n- Navigation: Back/Forward, Reload/Stop, Home, URL field with search fallback\n- Bookmarks: add current page and open from the Bookmarks menu\n- Packaging: produces `.app` and `.dmg` artifacts\n- Publishing: one‑command GitHub release with assets\n\nRequirements\n------------\n- macOS with Xcode Command Line Tools: `xcode-select --install`\n- Optional (recommended for Swift build): Full Xcode and select it: `sudo xcode-select -s /Applications/Xcode.app/Contents/Developer`\n\nQuick Start\n-----------\n- Build artifacts\n  - `cd NativeMacBrowser \u0026\u0026 chmod +x build.sh \u0026\u0026 ./build.sh`\n- Run locally\n  - `open NativeMacBrowser/dist/NativeMacBrowser.app`\n- Create a DMG (done by the build script)\n  - `NativeMacBrowser/dist/NativeMacBrowser.dmg`\n\nKeyboard Shortcuts\n------------------\n- New Tab: `Cmd+T`\n- Close Tab: `Cmd+W`\n- Reload: `Cmd+R`\n- Back/Forward: `Cmd+[` / `Cmd+]`\n\nPublishing a Release (GitHub)\n-----------------------------\nThe publish script builds artifacts (if needed), pushes code, tags, creates/uses a GitHub Release, and uploads the `.dmg` and a zipped `.app`.\n\n- Export token (needs repo write permission)\n  - `export GITHUB_TOKEN=YOUR_TOKEN`\n- Optional overrides\n  - `export GITHUB_REPO=allthingssecurity/browser`\n  - `export RELEASE_TAG=v1.0-b1-$(date +%Y%m%d-%H%M%S)`\n  - `export RELEASE_NAME=\"NativeMacBrowser 1.0 (build 1)\"`\n- Run publish\n  - `cd NativeMacBrowser \u0026\u0026 chmod +x publish.sh \u0026\u0026 ./publish.sh`\n\nArtifacts\n---------\n- App bundle: `NativeMacBrowser/dist/NativeMacBrowser.app`\n- Disk image: `NativeMacBrowser/dist/NativeMacBrowser.dmg`\n- Release assets (after publish): on your GitHub repo’s Releases page\n\nImplementation Notes\n--------------------\n- Primary implementation (Objective‑C fallback): `NativeMacBrowser/ObjCSources/AppDelegate.m:1`, `NativeMacBrowser/ObjCSources/main.m:1`\n- Swift version (not compiled if local Swift toolchain has module conflicts): `NativeMacBrowser/Sources/AppDelegate.swift:1`, `NativeMacBrowser/Sources/main.swift:1`\n- App metadata: `NativeMacBrowser/Info.plist:1`\n- Build script: `NativeMacBrowser/build.sh:1`\n- Publish script: `NativeMacBrowser/publish.sh:1`\n\nBuild Details\n-------------\n- The build prefers Swift (`swiftc` with `Cocoa` + `WebKit`). If the local toolchain has module issues, it falls back to Objective‑C (`clang -fobjc-arc -fmodules`). Either path produces the same `.app` and `.dmg` layout.\n- The build uses ad‑hoc codesigning for local runs. For distribution, use your Developer ID identity.\n\nSigning \u0026 Notarization (for distribution)\n-----------------------------------------\n- Replace ad‑hoc codesign step in `build.sh` with your Developer ID certificate, e.g.:\n  - `codesign --force --deep --options runtime --sign \"Developer ID Application: Your Name (TEAMID)\" dist/NativeMacBrowser.app`\n- Notarize and staple (example):\n  - `xcrun notarytool submit dist/NativeMacBrowser.dmg --apple-id \u003cid\u003e --team-id \u003cteam\u003e --password \u003capp-specific-pass\u003e --wait`\n  - `xcrun stapler staple dist/NativeMacBrowser.dmg`\n\nTroubleshooting\n---------------\n- Swift toolchain errors (e.g., `SwiftBridging redefinition` / `could not build module 'Foundation'`):\n  - Install full Xcode and select it: `sudo xcode-select -s /Applications/Xcode.app/Contents/Developer`\n  - Re‑run: `./build.sh`\n- Gatekeeper blocks the app: right‑click the `.app` → Open, or clear quarantine:\n  - `xattr -dr com.apple.quarantine NativeMacBrowser/dist/NativeMacBrowser.app`\n- Release already exists (tag collision): set a fresh `RELEASE_TAG` and re‑run `publish.sh`.\n\nRoadmap\n-------\n- Persistent bookmarks/history (~/Library/Application Support)\n- Downloads manager UI\n- Address bar improvements: `Cmd+L`, autocomplete, search suggestions\n- Private windows, per‑site permissions, content blocking via `WKContentRuleList`\n- Xcode project + CI workflow for build/sign/notarize on tag\n\nProject Structure\n-----------------\n- Source (ObjC): `NativeMacBrowser/ObjCSources/`\n- Source (Swift): `NativeMacBrowser/Sources/`\n- Packaging: `NativeMacBrowser/build.sh:1`\n- Publishing: `NativeMacBrowser/publish.sh:1`\n- Artifacts: `NativeMacBrowser/dist/`\n\nContributing\n------------\n- Open issues and PRs are welcome. Proposed areas: UI polish, downloads/history/bookmarks persistence, security/privacy features, build/release automation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallthingssecurity%2Fbrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallthingssecurity%2Fbrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallthingssecurity%2Fbrowser/lists"}