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 },