From 1079470e2326c99e19b365109118787685c1d3fa Mon Sep 17 00:00:00 2001 From: Albert Kaiser Date: Tue, 7 Jan 2025 00:13:37 +0100 Subject: [PATCH] maintenance --- .github/actions/setup-flutter/action.yaml | 4 ++-- LICENSE | 2 +- lib/pages/_footer/_data.dart | 2 +- macos/Runner/Configs/AppInfo.xcconfig | 2 +- pubspec.lock | 8 ++++---- pubspec.yaml | 6 +++--- test/pages/_footer/_legal_test.dart | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/actions/setup-flutter/action.yaml b/.github/actions/setup-flutter/action.yaml index b02ff02..8788241 100644 --- a/.github/actions/setup-flutter/action.yaml +++ b/.github/actions/setup-flutter/action.yaml @@ -6,6 +6,6 @@ runs: steps: - uses: subosito/flutter-action@v2 with: - flutter-version: "3.27.1" - channel: "stable" + flutter-version: 3.27.1 + channel: stable cache: true diff --git a/LICENSE b/LICENSE index 1f9d30f..e202ea1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Albert Kaiser +Copyright (c) 2025 Albert Kaiser Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/pages/_footer/_data.dart b/lib/pages/_footer/_data.dart index 866f150..b0fab78 100644 --- a/lib/pages/_footer/_data.dart +++ b/lib/pages/_footer/_data.dart @@ -1,7 +1,7 @@ const contactText = 'Hier geht es zum Kontaktformular'; const // legal - copyright = '© 2024 Raumunikate. All rights reserved.', + copyright = '© 2025 Raumunikate. All rights reserved.', imprint = 'Impressum', terms = 'AGB', privacy = 'Datenschutz'; diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig index fe4285f..5b68072 100644 --- a/macos/Runner/Configs/AppInfo.xcconfig +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -11,4 +11,4 @@ PRODUCT_NAME = raumunikate PRODUCT_BUNDLE_IDENTIFIER = de.kaiserv.raumunikate // The copyright displayed in application information -PRODUCT_COPYRIGHT = Copyright © 2024 de.kaiserv. All rights reserved. +PRODUCT_COPYRIGHT = Copyright © 2025 de.kaiserv. All rights reserved. diff --git a/pubspec.lock b/pubspec.lock index 549efc0..3add3a6 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -94,10 +94,10 @@ packages: dependency: "direct main" description: name: go_router - sha256: "2fd11229f59e23e967b0775df8d5948a519cd7e1e8b6e849729e010587b46539" + sha256: "7c2d40b59890a929824f30d442e810116caf5088482629c894b9e4478c67472d" url: "https://pub.dev" source: hosted - version: "14.6.2" + version: "14.6.3" http: dependency: "direct main" description: @@ -110,10 +110,10 @@ packages: dependency: transitive description: name: http_parser - sha256: "76d306a1c3afb33fe82e2bbacad62a61f409b5634c915fceb0d799de1a913360" + sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571" url: "https://pub.dev" source: hosted - version: "4.1.1" + version: "4.1.2" integration_test: dependency: "direct dev" description: flutter diff --git a/pubspec.yaml b/pubspec.yaml index 98291f9..b521717 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,14 +3,14 @@ description: Raumunikate version: 0.0.1 environment: - sdk: ">=3.6.0 <4.0.0" - flutter: ">=3.27.0" + sdk: ^3.6.0 + flutter: ^3.27.0 dependencies: auto_size_text: ^3.0.0 flutter: sdk: flutter - go_router: ^14.6.2 + go_router: ^14.6.3 http: ^1.2.2 provider: ^6.1.2 transparent_image: ^2.0.1 diff --git a/test/pages/_footer/_legal_test.dart b/test/pages/_footer/_legal_test.dart index aa95135..1e96f6d 100644 --- a/test/pages/_footer/_legal_test.dart +++ b/test/pages/_footer/_legal_test.dart @@ -13,7 +13,7 @@ void main() { await tester.render(const CopyrightText()); expect( - find.text('© 2024 Raumunikate. All rights reserved.'), + find.text('© 2025 Raumunikate. All rights reserved.'), findsOneWidget, ); });