diff --git a/README.md b/README.md index 16e02fe7..179f7de7 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,6 @@ Thank you to all tools and services for offering free subscriptions for open-sou - [Gitbook](https://www.gitbook.com): Gitbook is used to host LunaSea's documentation - [Hellonext](https://www.hellonext.co): Hellonext is used to host LunaSea's feedback board and roadmap -- [Instatus](https://instatus.com): Instatus is used to host LunaSea's status page - [Weblate](https://weblate.org): Weblate is used to gather community localization for LunaSea ## Contributors diff --git a/lib/core/models/types/links.dart b/lib/core/models/types/links.dart index 1e45d2d7..ee24be8a 100644 --- a/lib/core/models/types/links.dart +++ b/lib/core/models/types/links.dart @@ -8,7 +8,6 @@ enum LunaLinks { GITHUB, NOTIFICATIONS_GETTING_STARTED, REDDIT, - SYSTEM_STATUS, TEST_BUILDS, WEBLATE, WEBSITE, @@ -29,8 +28,6 @@ extension LunaLinksExtension on LunaLinks { return 'https://www.lunasea.app/github'; case LunaLinks.REDDIT: return 'https://www.lunasea.app/reddit'; - case LunaLinks.SYSTEM_STATUS: - return 'https://www.lunasea.app/status'; case LunaLinks.TEST_BUILDS: return 'https://docs.lunasea.app/getting-started/test-builds'; case LunaLinks.WEBLATE: diff --git a/lib/modules/settings/routes/resources/route.dart b/lib/modules/settings/routes/resources/route.dart index 1db463bb..f5a4f03e 100644 --- a/lib/modules/settings/routes/resources/route.dart +++ b/lib/modules/settings/routes/resources/route.dart @@ -77,12 +77,6 @@ class _State extends State<_Widget> with LunaScrollControllerMixin { trailing: const LunaIconButton(icon: Icons.developer_board_rounded), onTap: LunaLinks.TEST_BUILDS.launch, ), - LunaBlock( - title: 'settings.SystemStatus'.tr(), - body: [TextSpan(text: 'settings.SystemStatusDescription'.tr())], - trailing: const LunaIconButton(icon: Icons.health_and_safety), - onTap: LunaLinks.SYSTEM_STATUS.launch, - ), LunaBlock( title: 'Weblate', body: [TextSpan(text: 'settings.WeblateDescription'.tr())],