diff --git a/CHANGELOG.md b/CHANGELOG.md index fc4b053..9acb0de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 `http://192.168.86.149:8083`/`:8000`), so default builds require OIDC auth; override via `--dart-define` for direct LAN development +### Removed + +- Netdata and Cloud IDE (code-server) quick links — both services are + decommissioned; also dropped the unused `portainerUrl`/`netdataUrl` + config constants + ## [1.6.0] - 2026-01-08 ### Added diff --git a/lib/core/config/app_config.dart b/lib/core/config/app_config.dart index 71c8761..24e6b0a 100644 --- a/lib/core/config/app_config.dart +++ b/lib/core/config/app_config.dart @@ -67,15 +67,4 @@ class AppConfig { coreApiUrl.contains('schweitz.net') || tatlockApiUrl.contains('schweitz.net'); - /// Portainer URL for container management - static const portainerUrl = String.fromEnvironment( - 'PORTAINER_URL', - defaultValue: 'http://192.168.86.149:9000', - ); - - /// Netdata URL for system monitoring - static const netdataUrl = String.fromEnvironment( - 'NETDATA_URL', - defaultValue: 'http://192.168.86.149:19999', - ); } diff --git a/lib/features/front_hall/presentation/providers/quick_links_provider.dart b/lib/features/front_hall/presentation/providers/quick_links_provider.dart index b3d3067..675e481 100644 --- a/lib/features/front_hall/presentation/providers/quick_links_provider.dart +++ b/lib/features/front_hall/presentation/providers/quick_links_provider.dart @@ -179,25 +179,7 @@ List getDefaultQuickLinks() { type: QuickLinkType.iframe, sortOrder: 0, ), - const QuickLink( - id: 'cloud-ide', - name: 'Cloud IDE', - url: 'https://code.schweitz.net', - iconName: 'terminal', - category: 'Coding', - type: QuickLinkType.newTab, - sortOrder: 1, - ), // Infrastructure category - const QuickLink( - id: 'netdata', - name: 'Netdata', - url: 'https://netdata.schweitz.net', - iconName: 'monitoring', - category: 'Infrastructure', - type: QuickLinkType.iframe, - sortOrder: 0, - ), const QuickLink( id: 'portainer', name: 'Portainer',