From 19483c026bdfedf94e8aa30b1737e3c987c1063c Mon Sep 17 00:00:00 2001 From: jtrzupek Date: Fri, 26 Jun 2026 16:36:14 +0200 Subject: [PATCH] chore(mobile): point Source-code link to self-hosted Forgejo (git.goon-foss.org) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub goon-foss/goon stays soft-banned (whole namespace 404, 10 days after the appeal, no response — flag abuse on the resolve-stream language, not DMCA). Migrated the repo to a self-hosted Forgejo on our own VPS: zero ban risk, full control, and it fits the project's self-hosted ethos. Settings → Source code now opens git.goon-foss.org/goon-foss/goon. Co-Authored-By: Claude Opus 4.8 (1M context) --- mobile/src/changelog.ts | 7 +++++++ mobile/src/screens/AppLockSettingsScreen.tsx | 7 +++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/mobile/src/changelog.ts b/mobile/src/changelog.ts index 8785124..16f4242 100644 --- a/mobile/src/changelog.ts +++ b/mobile/src/changelog.ts @@ -16,6 +16,13 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + id: '2026-06-26', + date: 'June 2026', + items: [ + 'Source code moved to our own server (git.goon-foss.org) — still fully open source (MIT). The Settings link now points there.', + ], + }, { id: '2026-06-25', date: 'June 2026', diff --git a/mobile/src/screens/AppLockSettingsScreen.tsx b/mobile/src/screens/AppLockSettingsScreen.tsx index 1095b18..7bf9eec 100644 --- a/mobile/src/screens/AppLockSettingsScreen.tsx +++ b/mobile/src/screens/AppLockSettingsScreen.tsx @@ -330,8 +330,11 @@ export function AppLockSettingsScreen() { // Publiczne repo OSS (zgłoszenie usera 4c5066b8: "no source code repo linked"). // Sygnał zaufania dla sideloadowanej apki 18+: audyt kodu / self-host / kontrybucja. -const REPO_URL = 'https://github.com/goon-foss/goon'; -const REPO_LABEL = 'goon-foss/goon'; +// Self-hosted Forgejo (git.goon-foss.org) — GitHub goon-foss/goon was soft-banned +// (flag abuse on the resolve-stream language, not DMCA; appeal ignored). Self-host = +// zero ban risk + fits the project's self-hosted ethos. Migrated 2026-06-26. +const REPO_URL = 'https://git.goon-foss.org/goon-foss/goon'; +const REPO_LABEL = 'git.goon-foss.org'; const styles = StyleSheet.create({ root: { flex: 1, backgroundColor: theme.bg },