chore(mobile): point Source-code link to self-hosted Forgejo (git.goon-foss.org)
Some checks failed
Backend tests / test (push) Has been cancelled

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) <noreply@anthropic.com>
This commit is contained in:
jtrzupek 2026-06-26 16:36:14 +02:00
parent 05a35955ad
commit 19483c026b
2 changed files with 12 additions and 2 deletions

View file

@ -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',

View file

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