Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
akaiser committed Jan 6, 2025
1 parent faa971d commit 1079470
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-flutter/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/_footer/_data.dart
Original file line number Diff line number Diff line change
@@ -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';
2 changes: 1 addition & 1 deletion macos/Runner/Configs/AppInfo.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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.
8 changes: 4 additions & 4 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/pages/_footer/_legal_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
});
Expand Down

0 comments on commit 1079470

Please sign in to comment.