From 929183109c1644d83fc63b9a8ad9dd08cb7cd545 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:08:40 +0100 Subject: [PATCH 001/316] Updated workflow --- .gitea/workflows/pull_request.yaml | 41 +++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 43d36d2..c7e8904 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,6 +6,7 @@ on: jobs: lint: runs-on: ubuntu-latest + if: never() steps: - name: Checkout code uses: actions/checkout@v4 @@ -32,6 +33,7 @@ jobs: test: runs-on: ubuntu-latest + if: never() steps: - name: Checkout code uses: actions/checkout@v4 @@ -54,4 +56,41 @@ jobs: run: flutter pub get - name: Run tests - run: flutter test \ No newline at end of file + run: flutter test + + format: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: | + apt-get update + apt-get install -y jq + + - name: Install Flutter (wget) + run: | + wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz + # Set Git safe directory for Flutter path + git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + + - name: Get dependencies + run: flutter pub get + + - name: Check code format + run: | + flutter format --set-exit-if-changed . + + - name: Format code + if: failure() + run: | + flutter format . + git config --global user.name "liquid-actions[bot]" + git config --global user.email "gitea@liquid-dev.de" + git add . + git commit -m "Auto-format code" + git push -- 2.49.1 From b53bb597e1dc177cdb6a31d5369fe5a27f885a4c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:12:52 +0100 Subject: [PATCH 002/316] Updated formatting --- .gitea/workflows/pull_request.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index c7e8904..6970255 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -83,12 +83,13 @@ jobs: - name: Check code format run: | - flutter format --set-exit-if-changed . + flutter analyze + - name: Format code if: failure() run: | - flutter format . + dart fix --apply git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" git add . -- 2.49.1 From 9676ff278d4ecfd95b0acf76efa6baf419bf90ca Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:18:03 +0100 Subject: [PATCH 003/316] Updated workflow --- .gitea/workflows/pull_request.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 6970255..ccd233b 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -82,9 +82,7 @@ jobs: run: flutter pub get - name: Check code format - run: | - flutter analyze - + run: flutter analyze lib test - name: Format code if: failure() -- 2.49.1 From c536656dff3df920b604c0e59c6768cebe80e299 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:21:21 +0100 Subject: [PATCH 004/316] Added formatting issue --- .gitea/workflows/pull_request.yaml | 6 +++--- .../views/main_menu/group_view/groups_view.dart | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index ccd233b..e6de9fa 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,7 +6,7 @@ on: jobs: lint: runs-on: ubuntu-latest - if: never() + if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -23,7 +23,7 @@ jobs: # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get @@ -33,7 +33,7 @@ jobs: test: runs-on: ubuntu-latest - if: never() + if: false steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index b9fff84..850f2f4 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -30,6 +30,8 @@ class _GroupsViewState extends State { /// Loading state bool isLoading = true; + bool TEST = false; + List groups = List.filled( 7, Group( -- 2.49.1 From 196b939ca78b2505f3d1f12715a9d73be5851456 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:26:24 +0100 Subject: [PATCH 005/316] Updated workflow again --- .gitea/workflows/pull_request.yaml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index e6de9fa..6073d8d 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -18,7 +18,7 @@ jobs: - name: Install Flutter (wget) run: | - wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -45,7 +45,7 @@ jobs: - name: Install Flutter (wget) run: | - wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -71,7 +71,7 @@ jobs: - name: Install Flutter (wget) run: | - wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -88,8 +88,13 @@ jobs: if: failure() run: | dart fix --apply - git config --global user.name "liquid-actions[bot]" - git config --global user.email "gitea@liquid-dev.de" - git add . - git commit -m "Auto-format code" - git push + # Prüfen, ob Änderungen vorhanden sind + if [ -n "$(git status --porcelain)" ]; then + git config --global user.name "liquid-actions[bot]" + git config --global user.email "gitea@liquid-dev.de" + git add . + git commit -m "Auto-format code" + git push + else + echo "No changes to commit" + fi -- 2.49.1 From b7633757483f42f03c92b68ee440e02229de2095 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:28:19 +0100 Subject: [PATCH 006/316] Updated workflow again 2 --- .gitea/workflows/pull_request.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 6073d8d..46fab08 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -87,7 +87,8 @@ jobs: - name: Format code if: failure() run: | - dart fix --apply + dart fix --apply lib + dart fix --apply test # Prüfen, ob Änderungen vorhanden sind if [ -n "$(git status --porcelain)" ]; then git config --global user.name "liquid-actions[bot]" -- 2.49.1 From 8d50cf4b46643e41e18458d958f17d6f111d3c58 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:32:14 +0100 Subject: [PATCH 007/316] Added branch checkout --- .gitea/workflows/pull_request.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 46fab08..0b92b88 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -93,6 +93,7 @@ jobs: if [ -n "$(git status --porcelain)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" + git checkout ${{gitea.head_ref}} git add . git commit -m "Auto-format code" git push -- 2.49.1 From c2bf859f8517a9ad7abdef6fa1e00bc2594f86f2 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:35:54 +0100 Subject: [PATCH 008/316] Removed branch checkout --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 0b92b88..50e8dc1 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -71,7 +71,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -93,7 +93,7 @@ jobs: if [ -n "$(git status --porcelain)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" - git checkout ${{gitea.head_ref}} + # git checkout ${{gitea.head_ref}} git add . git commit -m "Auto-format code" git push -- 2.49.1 From 78aaebcd4275305d34d1f74d5feae2a0e5ff24d4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:39:11 +0100 Subject: [PATCH 009/316] Fixed submodule error --- .gitea/workflows/pull_request.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 50e8dc1..5a67722 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -90,11 +90,10 @@ jobs: dart fix --apply lib dart fix --apply test # Prüfen, ob Änderungen vorhanden sind - if [ -n "$(git status --porcelain)" ]; then + if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" - # git checkout ${{gitea.head_ref}} - git add . + git add lib test git commit -m "Auto-format code" git push else -- 2.49.1 From fede08b0a885d7e01905e0bbe3a5e5b859fb25aa Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:42:26 +0100 Subject: [PATCH 010/316] added formatting error --- lib/presentation/views/main_menu/group_view/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index 850f2f4..2f2ee00 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -30,7 +30,7 @@ class _GroupsViewState extends State { /// Loading state bool isLoading = true; - bool TEST = false; + bool test = false; List groups = List.filled( 7, -- 2.49.1 From 4bf39e8bbaa6115f5c34db15cee91f584737d2b7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:43:34 +0100 Subject: [PATCH 011/316] added formatting error --- lib/presentation/views/main_menu/group_view/groups_view.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index 2f2ee00..c609bb3 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -10,9 +10,10 @@ import 'package:game_tracker/presentation/views/main_menu/group_view/create_grou import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart'; import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; -import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; import 'package:provider/provider.dart'; +import '../../../../presentation/widgets/top_centered_message.dart'; + class GroupsView extends StatefulWidget { /// A view that displays a list of groups const GroupsView({super.key}); @@ -30,8 +31,6 @@ class _GroupsViewState extends State { /// Loading state bool isLoading = true; - bool test = false; - List groups = List.filled( 7, Group( -- 2.49.1 From 6a79b7cad9f1641c7f78dfb6d59eed066318c180 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:46:38 +0100 Subject: [PATCH 012/316] Added checkout again --- .gitea/workflows/pull_request.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 5a67722..11201ec 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -87,6 +87,7 @@ jobs: - name: Format code if: failure() run: | + git checkout ${{ gitea.head_ref }} dart fix --apply lib dart fix --apply test # Prüfen, ob Änderungen vorhanden sind -- 2.49.1 From b5453d9ced604333622a73b0dbad1127ffd3b74e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:49:46 +0100 Subject: [PATCH 013/316] Added fetch --- .gitea/workflows/pull_request.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 11201ec..5abc714 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -87,10 +87,12 @@ jobs: - name: Format code if: failure() run: | + git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} + dart fix --apply lib dart fix --apply test - # Prüfen, ob Änderungen vorhanden sind + if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" -- 2.49.1 From 7764b656318daa5a3099d54636e2815155483408 Mon Sep 17 00:00:00 2001 From: "liquid-actions[bot]" Date: Sat, 17 Jan 2026 18:52:03 +0000 Subject: [PATCH 014/316] Auto-format code --- lib/presentation/views/main_menu/group_view/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index c609bb3..ab7e849 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -12,7 +12,7 @@ import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart' import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; import 'package:provider/provider.dart'; -import '../../../../presentation/widgets/top_centered_message.dart'; +import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; class GroupsView extends StatefulWidget { /// A view that displays a list of groups -- 2.49.1 From bfb5debbeba8c1b2545fe74f8abeb79d9f6e8eb7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:56:59 +0100 Subject: [PATCH 015/316] Try sth --- .gitea/workflows/pull_request.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 5abc714..bcb0a59 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -82,10 +82,12 @@ jobs: run: flutter pub get - name: Check code format + id: check_format + continue-on-error: true run: flutter analyze lib test - name: Format code - if: failure() + if: steps.check_format.outcome == 'failure' run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} @@ -94,11 +96,14 @@ jobs: dart fix --apply test if [ -n "$(git status --porcelain lib test)" ]; then - git config --global user.name "liquid-actions[bot]" - git config --global user.email "gitea@liquid-dev.de" + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "actions@gitea.com" git add lib test git commit -m "Auto-format code" git push else echo "No changes to commit" fi + + - name: Verify format + run: flutter analyze lib test -- 2.49.1 From 674e1111d2ae98d0d7f32c91a6c34a43753d72e7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:57:25 +0100 Subject: [PATCH 016/316] Try sth --- lib/presentation/views/main_menu/group_view/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index ab7e849..c609bb3 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -12,7 +12,7 @@ import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart' import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; import 'package:provider/provider.dart'; -import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; +import '../../../../presentation/widgets/top_centered_message.dart'; class GroupsView extends StatefulWidget { /// A view that displays a list of groups -- 2.49.1 From 94c510ce6774002af504281c4c8d235d30cfb87d Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 18:59:41 +0000 Subject: [PATCH 017/316] Auto-format code --- lib/presentation/views/main_menu/group_view/groups_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index c609bb3..ab7e849 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -12,7 +12,7 @@ import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart' import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; import 'package:provider/provider.dart'; -import '../../../../presentation/widgets/top_centered_message.dart'; +import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; class GroupsView extends StatefulWidget { /// A view that displays a list of groups -- 2.49.1 From d4bb0c5698e38304cb8e474df0b8bf8dbd34fed5 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:03:46 +0100 Subject: [PATCH 018/316] Tried version update --- .gitea/workflows/pull_request.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index bcb0a59..91ecf14 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -60,6 +60,7 @@ jobs: format: runs-on: ubuntu-latest + if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -101,9 +102,18 @@ jobs: git add lib test git commit -m "Auto-format code" git push + # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} else echo "No changes to commit" fi - name: Verify format run: flutter analyze lib test + + + update-version: + uses: stikkyapp/update-pubspec-version@v2 + with: + strategy: 'patch' + bump-build: false + path: './pubspec.yaml' -- 2.49.1 From 8045855f91faa239e5f1026fcdc628badd69d55a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:04:19 +0100 Subject: [PATCH 019/316] Tried version update --- .gitea/workflows/pull_request.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 91ecf14..0baf195 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -111,9 +111,9 @@ jobs: run: flutter analyze lib test - update-version: - uses: stikkyapp/update-pubspec-version@v2 - with: - strategy: 'patch' - bump-build: false - path: './pubspec.yaml' + update-version: + uses: stikkyapp/update-pubspec-version@v2 + with: + strategy: 'patch' + bump-build: false + path: './pubspec.yaml' -- 2.49.1 From 10f3aacf999a2d93716f25876cb72e3423a060f4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:05:31 +0100 Subject: [PATCH 020/316] Tried version update --- .gitea/workflows/pull_request.yaml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 0baf195..17ff034 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -112,8 +112,16 @@ jobs: update-version: - uses: stikkyapp/update-pubspec-version@v2 - with: - strategy: 'patch' - bump-build: false - path: './pubspec.yaml' + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Update version + uses: https://github.com/stikkyapp/update-pubspec-version@v2 + with: + strategy: 'patch' + bump-build: false + path: './pubspec.yaml' -- 2.49.1 From 5d9e1430278663523c8698c92b48919585d8f755 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:06:56 +0100 Subject: [PATCH 021/316] Tried version update --- .gitea/workflows/pull_request.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 17ff034..c94a093 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,3 +125,17 @@ jobs: strategy: 'patch' bump-build: false path: './pubspec.yaml' + + - name: Format code + run: | + git fetch origin ${{ gitea.head_ref }} + git checkout ${{ gitea.head_ref }} + + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "actions@gitea.com" + git add lib test + git commit -m "Updated version number" + git push + # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + + -- 2.49.1 From bbf031100f9c4b93bbc1be12533385d783423e6c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:07:33 +0100 Subject: [PATCH 022/316] Tried version update --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index c94a093..a3cda8e 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -126,14 +126,14 @@ jobs: bump-build: false path: './pubspec.yaml' - - name: Format code + - name: Commit version update run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} git config --global user.name "Gitea Actions [bot]" git config --global user.email "actions@gitea.com" - git add lib test + git add lib/pubspec.yaml git commit -m "Updated version number" git push # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 5eee9a238db59d4515e85c09bb4601eec8fe5853 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:08:19 +0100 Subject: [PATCH 023/316] Tried version update --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index a3cda8e..88af005 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -133,7 +133,7 @@ jobs: git config --global user.name "Gitea Actions [bot]" git config --global user.email "actions@gitea.com" - git add lib/pubspec.yaml + git add pubspec.yaml git commit -m "Updated version number" git push # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 19f800ff5f33321bb2273d1a7c5ea07b3fc2685b Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 19:08:28 +0000 Subject: [PATCH 024/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9f957c2..0af43f2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.7+213 +version: 0.0.8+214 environment: sdk: ^3.8.1 -- 2.49.1 From 40e3673a878e5f242b1ef145753d3de6b114d720 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:08:55 +0100 Subject: [PATCH 025/316] Only version number --- .gitea/workflows/pull_request.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 88af005..b308e99 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -123,7 +123,6 @@ jobs: uses: https://github.com/stikkyapp/update-pubspec-version@v2 with: strategy: 'patch' - bump-build: false path: './pubspec.yaml' - name: Commit version update -- 2.49.1 From 24bb68731725f76cabf146283f707bc9004c5090 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 19:09:08 +0000 Subject: [PATCH 026/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0af43f2..1254697 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.8+214 +version: 0.0.9+215 environment: sdk: ^3.8.1 -- 2.49.1 From b89cfd1f9f95aad41d963fe335781b8cff0b3bd3 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:09:36 +0100 Subject: [PATCH 027/316] Only version number --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b308e99..2117edf 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,7 +125,7 @@ jobs: strategy: 'patch' path: './pubspec.yaml' - - name: Commit version update + - name: Commit version update 2 run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} -- 2.49.1 From b8bd737dc3bcab621ea2cf08631608eac86ecba2 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 19:10:00 +0000 Subject: [PATCH 028/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1254697..cdf2ab0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.9+215 +version: 0.0.10+216 environment: sdk: ^3.8.1 -- 2.49.1 From b79e2af95849b344a26fc8173e1bc82a73ab1f6e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:10:47 +0100 Subject: [PATCH 029/316] Tested minor --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 2117edf..d884114 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -122,7 +122,7 @@ jobs: - name: Update version uses: https://github.com/stikkyapp/update-pubspec-version@v2 with: - strategy: 'patch' + strategy: 'minor' path: './pubspec.yaml' - name: Commit version update 2 -- 2.49.1 From 8b680f4abe66e9488f8d1abaa873321ca9891654 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 19:11:01 +0000 Subject: [PATCH 030/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cdf2ab0..334ff33 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.10+216 +version: 0.1.0+217 environment: sdk: ^3.8.1 -- 2.49.1 From 4fe008af3f6907a970c81c054c545b4c4ad46e4a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:11:34 +0100 Subject: [PATCH 031/316] Back to patch --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index d884114..2117edf 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -122,7 +122,7 @@ jobs: - name: Update version uses: https://github.com/stikkyapp/update-pubspec-version@v2 with: - strategy: 'minor' + strategy: 'patch' path: './pubspec.yaml' - name: Commit version update 2 -- 2.49.1 From d8ba6aecf26207603cda6cbd80b83e87b4a04762 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" Date: Sat, 17 Jan 2026 19:11:46 +0000 Subject: [PATCH 032/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 334ff33..bc3c9d3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.1.0+217 +version: 0.1.1+218 environment: sdk: ^3.8.1 -- 2.49.1 From 49e947034e1361fd5749af3c4954a654dac67d5d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:12:25 +0100 Subject: [PATCH 033/316] Tested branch protection --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 2117edf..b308e99 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,7 +125,7 @@ jobs: strategy: 'patch' path: './pubspec.yaml' - - name: Commit version update 2 + - name: Commit version update run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} -- 2.49.1 From 75f56eaab730b19f56176beb9a6e11291fdc6f07 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:17:26 +0100 Subject: [PATCH 034/316] Added secret --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b308e99..f37f252 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -134,7 +134,7 @@ jobs: git config --global user.email "actions@gitea.com" git add pubspec.yaml git commit -m "Updated version number" - git push - # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + # git push + git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 3acd4e8cfeb6e33684a57c152bfb31f8967d13f8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:19:16 +0100 Subject: [PATCH 035/316] Added secret --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index f37f252..c0ce28f 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,7 +125,7 @@ jobs: strategy: 'patch' path: './pubspec.yaml' - - name: Commit version update + - name: Commit version update 2 run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} -- 2.49.1 From 2ab07ee7952a761d068d7cc7d9aeee1b4d1cdfae Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:21:25 +0100 Subject: [PATCH 036/316] test token --- .gitea/workflows/pull_request.yaml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index c0ce28f..7dd0672 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,7 +125,7 @@ jobs: strategy: 'patch' path: './pubspec.yaml' - - name: Commit version update 2 + - name: Commit version update run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} @@ -137,4 +137,23 @@ jobs: # git push git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} - + - name: Test Token + run: | + echo "Testing token permissions..." + + # Token-Format prüfen + if [ -z "${{ secrets.BOT_TOKEN }}" ]; then + echo "❌ BOT_TOKEN ist nicht gesetzt" + exit 1 + fi + + # API-Call zum Prüfen der Token-Berechtigungen + curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ + https://git.yannick-weigert.de/api/v1/user + + # Repository-Zugriff testen + curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ + https://git.yannick-weigert.de/api/v1/repos/liquid-development/game-tracker + + echo "✅ Token ist gültig" + -- 2.49.1 From 9b44141c57a88a334cc87cf7bc0081bb69352e4e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:21:59 +0100 Subject: [PATCH 037/316] test token --- .gitea/workflows/pull_request.yaml | 40 +++++++++++++++--------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 7dd0672..9f3fb80 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -114,6 +114,26 @@ jobs: update-version: runs-on: ubuntu-latest steps: + - name: Test Token + run: | + echo "Testing token permissions..." + + # Token-Format prüfen + if [ -z "${{ secrets.BOT_TOKEN }}" ]; then + echo "❌ BOT_TOKEN ist nicht gesetzt" + exit 1 + fi + + # API-Call zum Prüfen der Token-Berechtigungen + curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ + https://git.yannick-weigert.de/api/v1/user + + # Repository-Zugriff testen + curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ + https://git.yannick-weigert.de/api/v1/repos/liquid-development/game-tracker + + echo "✅ Token ist gültig" + - name: Checkout code uses: actions/checkout@v4 with: @@ -137,23 +157,3 @@ jobs: # git push git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} - - name: Test Token - run: | - echo "Testing token permissions..." - - # Token-Format prüfen - if [ -z "${{ secrets.BOT_TOKEN }}" ]; then - echo "❌ BOT_TOKEN ist nicht gesetzt" - exit 1 - fi - - # API-Call zum Prüfen der Token-Berechtigungen - curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ - https://git.yannick-weigert.de/api/v1/user - - # Repository-Zugriff testen - curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ - https://git.yannick-weigert.de/api/v1/repos/liquid-development/game-tracker - - echo "✅ Token ist gültig" - -- 2.49.1 From ed167b00d62d098d52640f75e5b08b7f66995368 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:23:26 +0100 Subject: [PATCH 038/316] test token --- .gitea/workflows/pull_request.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 9f3fb80..ec4f9a1 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -114,26 +114,6 @@ jobs: update-version: runs-on: ubuntu-latest steps: - - name: Test Token - run: | - echo "Testing token permissions..." - - # Token-Format prüfen - if [ -z "${{ secrets.BOT_TOKEN }}" ]; then - echo "❌ BOT_TOKEN ist nicht gesetzt" - exit 1 - fi - - # API-Call zum Prüfen der Token-Berechtigungen - curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ - https://git.yannick-weigert.de/api/v1/user - - # Repository-Zugriff testen - curl -f -H "Authorization: token ${{ secrets.BOT_TOKEN }}" \ - https://git.yannick-weigert.de/api/v1/repos/liquid-development/game-tracker - - echo "✅ Token ist gültig" - - name: Checkout code uses: actions/checkout@v4 with: -- 2.49.1 From a390d82d0534516bdfe4cd17904f6a493ef13e55 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:24:19 +0100 Subject: [PATCH 039/316] test token --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index ec4f9a1..9230879 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -135,5 +135,5 @@ jobs: git add pubspec.yaml git commit -m "Updated version number" # git push - git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + git push --force https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 7b83e60cb0385829d301fd0bdde3a46d7e054e87 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:25:01 +0100 Subject: [PATCH 040/316] test token --- .gitea/workflows/pull_request.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 9230879..879a3ad 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -135,5 +135,6 @@ jobs: git add pubspec.yaml git commit -m "Updated version number" # git push - git push --force https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + git push --force + # https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 8e2b3a638147f0102cc98baeb025109da2d3ecdb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:35:10 +0100 Subject: [PATCH 041/316] Updated name --- .gitea/workflows/pull_request.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 879a3ad..af766f1 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -102,7 +102,6 @@ jobs: git add lib test git commit -m "Auto-format code" git push - # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} else echo "No changes to commit" fi @@ -110,8 +109,7 @@ jobs: - name: Verify format run: flutter analyze lib test - - update-version: + update version: runs-on: ubuntu-latest steps: - name: Checkout code @@ -134,7 +132,7 @@ jobs: git config --global user.email "actions@gitea.com" git add pubspec.yaml git commit -m "Updated version number" - # git push - git push --force + git push + # git push --force # https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From dbd58907afac224d55252248a4ac08083c0ec395 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:36:03 +0100 Subject: [PATCH 042/316] Updated name --- .gitea/workflows/pull_request.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index af766f1..b36ea9e 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -4,7 +4,7 @@ on: pull_request: jobs: - lint: + Lint: runs-on: ubuntu-latest if: false steps: @@ -31,7 +31,7 @@ jobs: - name: Analyze Formatting run: flutter analyze lib test - test: + Test: runs-on: ubuntu-latest if: false steps: @@ -58,7 +58,7 @@ jobs: - name: Run tests run: flutter test - format: + Format: runs-on: ubuntu-latest if: false steps: @@ -109,7 +109,7 @@ jobs: - name: Verify format run: flutter analyze lib test - update version: + Update Version: runs-on: ubuntu-latest steps: - name: Checkout code -- 2.49.1 From d1e13ee8aa0e930c859f2f9afdf8f71a339a4993 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 21:04:34 +0100 Subject: [PATCH 043/316] Updated push workflow accordingly --- .gitea/workflows/push.yaml | 73 ++++++++++++++++++++++++++++---------- 1 file changed, 54 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 700e96b..eadeede 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -7,9 +7,9 @@ on: - "main" jobs: - format: + Format: runs-on: ubuntu-latest - if: false # Needs bot user + if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -21,30 +21,65 @@ jobs: - name: Install Flutter (wget) run: | - wget https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITHUB_PATH - - name: Get & upgrade dependencies - run: | - flutter pub get - flutter pub upgrade --major-versions + - name: Get dependencies + run: flutter pub get - - name: Auto-format - run: | - dart format lib - dart fix --apply lib + - name: Check code format + id: check_format + continue-on-error: true + run: flutter analyze lib test - # Needs credentials, push access and the right files need to be staged - - name: Commit Changes + - name: Format code + if: steps.check_format.outcome == 'failure' run: | - git config --global user.name "Gitea Actions" + git fetch origin ${{ gitea.head_ref }} + git checkout ${{ gitea.head_ref }} + + dart fix --apply lib + dart fix --apply test + + if [ -n "$(git status --porcelain lib test)" ]; then + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "actions@gitea.com" + git add lib test + git commit -m "Auto-format code" + git push + else + echo "No changes to commit" + fi + + - name: Verify format + run: flutter analyze lib test + + + Update Version: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Update version + uses: https://github.com/stikkyapp/update-pubspec-version@v2 + with: + strategy: 'minor' + path: './pubspec.yaml' + + - name: Commit version update + run: | + git fetch origin ${{ gitea.head_ref }} + git checkout ${{ gitea.head_ref }} + + git config --global user.name "Gitea Actions [bot]" git config --global user.email "actions@gitea.com" - git status - git add lib/ - git status - git commit -m "Actions: Auto-formatting [skip ci]" - git push + git add pubspec.yaml + git commit -m "Updated version number" + git push \ No newline at end of file -- 2.49.1 From 22de4264edefca4b5d7ed56c3dbb9c5d261a8989 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 21:05:07 +0100 Subject: [PATCH 044/316] Reset version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index bc3c9d3..be58bcc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.1.1+218 +version: 0.0.7+218 environment: sdk: ^3.8.1 -- 2.49.1 From 00a9b3f2ca37cd691794cb014ea72fd73a52e45a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:13:16 +0100 Subject: [PATCH 045/316] Tried PAT --- .gitea/workflows/pull_request.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b36ea9e..b2d3f86 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -109,7 +109,7 @@ jobs: - name: Verify format run: flutter analyze lib test - Update Version: + Update-Version: runs-on: ubuntu-latest steps: - name: Checkout code @@ -128,11 +128,10 @@ jobs: git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} - git config --global user.name "Gitea Actions [bot]" - git config --global user.email "actions@gitea.com" + git config --global user.name "Felix Kirchner" + git config --global user.email "felix.kirchner.fk@gmail.com" git add pubspec.yaml git commit -m "Updated version number" - git push + # git push # git push --force - # https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} - + git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} -- 2.49.1 From 9b98d3b0ee39e30fd9b715359fc7929038521f57 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:16:13 +0100 Subject: [PATCH 046/316] Tried PAT --- .gitea/workflows/pull_request.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b2d3f86..a4f256f 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -124,14 +124,11 @@ jobs: path: './pubspec.yaml' - name: Commit version update + env: + GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | - git fetch origin ${{ gitea.head_ref }} - git checkout ${{ gitea.head_ref }} - git config --global user.name "Felix Kirchner" git config --global user.email "felix.kirchner.fk@gmail.com" git add pubspec.yaml git commit -m "Updated version number" - # git push - # git push --force - git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + git push https://flixcoo:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} \ No newline at end of file -- 2.49.1 From 5924a9e86a5e3d5c929ed5e572c2fb9fe8112f0f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:17:42 +0100 Subject: [PATCH 047/316] Tried PAT --- .gitea/workflows/pull_request.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index a4f256f..28da37d 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -116,6 +116,8 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + token: ${{ secrets.BOT_TOKEN }} + ref: ${{ gitea.head_ref }} - name: Update version uses: https://github.com/stikkyapp/update-pubspec-version@v2 @@ -123,6 +125,7 @@ jobs: strategy: 'patch' path: './pubspec.yaml' + - name: Commit version update env: GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} -- 2.49.1 From 5d49bc68b65afaad90b7f505b2ceaa4f99d76df5 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:17:54 +0000 Subject: [PATCH 048/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index be58bcc..ccfb7db 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.7+218 +version: 0.0.8+219 environment: sdk: ^3.8.1 -- 2.49.1 From 8bf6b415aa61b6748a41e73323d2d036a0e4dcec Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:02 +0000 Subject: [PATCH 049/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ccfb7db..f9e5bd3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.8+219 +version: 0.0.9+220 environment: sdk: ^3.8.1 -- 2.49.1 From 73aeb294158fa1faf53cd9321ac0a9d3c9af8e17 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:09 +0000 Subject: [PATCH 050/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f9e5bd3..86bda5b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.9+220 +version: 0.0.10+221 environment: sdk: ^3.8.1 -- 2.49.1 From 519403e71de443e387116defa5629b69b443d56a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:16 +0000 Subject: [PATCH 051/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 86bda5b..aae64e8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.10+221 +version: 0.0.11+222 environment: sdk: ^3.8.1 -- 2.49.1 From e09c5919174f97956e527302e553ebe67ee1bfec Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:23 +0000 Subject: [PATCH 052/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aae64e8..b439bbb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.11+222 +version: 0.0.12+223 environment: sdk: ^3.8.1 -- 2.49.1 From 41a6f925f11c00b79f74caa47f2a31e966ec5c1d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:30 +0000 Subject: [PATCH 053/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b439bbb..c438c7c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.12+223 +version: 0.0.13+224 environment: sdk: ^3.8.1 -- 2.49.1 From c45acfa72010dc93e85e1f535e51ea58ac8e4db0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:37 +0000 Subject: [PATCH 054/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c438c7c..2fe87d3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.13+224 +version: 0.0.14+225 environment: sdk: ^3.8.1 -- 2.49.1 From fe609d16b8254e5639ca040c7c8bf521db95326d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:45 +0000 Subject: [PATCH 055/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2fe87d3..4c8a2ce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.14+225 +version: 0.0.15+226 environment: sdk: ^3.8.1 -- 2.49.1 From 33d345d4605b60f90c133ced954ce6f669492c44 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:52 +0000 Subject: [PATCH 056/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4c8a2ce..ca448d3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.15+226 +version: 0.0.16+227 environment: sdk: ^3.8.1 -- 2.49.1 From fb59a9c7843bc25791626a7b0d58b7d31d095351 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:18:59 +0000 Subject: [PATCH 057/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ca448d3..e58ef81 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.16+227 +version: 0.0.17+228 environment: sdk: ^3.8.1 -- 2.49.1 From c5cf965f327e1aee2863fc0d6e17772a25e97aaa Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:06 +0000 Subject: [PATCH 058/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e58ef81..132202f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.17+228 +version: 0.0.18+229 environment: sdk: ^3.8.1 -- 2.49.1 From b4cf6d6ed585871a792495e7c49b6f0a2fb758ab Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:13 +0000 Subject: [PATCH 059/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 132202f..86c2b36 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.18+229 +version: 0.0.19+230 environment: sdk: ^3.8.1 -- 2.49.1 From e1698269c5f073945beb4f587383307c63978976 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:20 +0000 Subject: [PATCH 060/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 86c2b36..4ef22dd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.19+230 +version: 0.0.20+231 environment: sdk: ^3.8.1 -- 2.49.1 From 572fedfbd01615053d2c5876dff4d8f21287bcf1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:27 +0000 Subject: [PATCH 061/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4ef22dd..4cbd21a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.20+231 +version: 0.0.21+232 environment: sdk: ^3.8.1 -- 2.49.1 From 90eb73d4a94ab207895ea72c2753b743c36354e7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:34 +0000 Subject: [PATCH 062/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4cbd21a..5b6ee57 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.21+232 +version: 0.0.22+233 environment: sdk: ^3.8.1 -- 2.49.1 From fa0e0bcaca2f9a6544d5977d1f8fd571dbfad4fd Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:42 +0000 Subject: [PATCH 063/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5b6ee57..b55b30a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.22+233 +version: 0.0.23+234 environment: sdk: ^3.8.1 -- 2.49.1 From d5ba67545f29ff3c43cda29387fd0e6e79b4fdd5 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:49 +0000 Subject: [PATCH 064/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b55b30a..22d074e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.23+234 +version: 0.0.24+235 environment: sdk: ^3.8.1 -- 2.49.1 From c3d00d541d4a68d0b8da30b6f08ef919391745ab Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:19:56 +0000 Subject: [PATCH 065/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 22d074e..4ebb33b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.24+235 +version: 0.0.25+236 environment: sdk: ^3.8.1 -- 2.49.1 From 33ccd892b84d5f1f0996e464c83ddc87544fce8b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:03 +0000 Subject: [PATCH 066/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4ebb33b..79f8c71 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.25+236 +version: 0.0.26+237 environment: sdk: ^3.8.1 -- 2.49.1 From c4df6c9493612d9863466876177865cccdfec116 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:10 +0000 Subject: [PATCH 067/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 79f8c71..cd596f1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.26+237 +version: 0.0.27+238 environment: sdk: ^3.8.1 -- 2.49.1 From 145025790bb16e8c9e601ee638c03f840801e153 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:18 +0000 Subject: [PATCH 068/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cd596f1..44518b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.27+238 +version: 0.0.28+239 environment: sdk: ^3.8.1 -- 2.49.1 From d386607e378a2b31b293d8bd12a733935d577401 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:24 +0000 Subject: [PATCH 069/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 44518b1..fbe3e73 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.28+239 +version: 0.0.29+240 environment: sdk: ^3.8.1 -- 2.49.1 From 411386c80bfa2d1457aae23c910c955256005b96 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:32 +0000 Subject: [PATCH 070/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fbe3e73..249cb35 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.29+240 +version: 0.0.30+241 environment: sdk: ^3.8.1 -- 2.49.1 From 6b98fc5be0e6604d41d1e5466e1c4975a41dcdec Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:39 +0000 Subject: [PATCH 071/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 249cb35..4a36554 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.30+241 +version: 0.0.31+242 environment: sdk: ^3.8.1 -- 2.49.1 From 7f396f320ed6cd792f9d16c1f50b0e42da5b283b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:46 +0000 Subject: [PATCH 072/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4a36554..809cd8d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.31+242 +version: 0.0.32+243 environment: sdk: ^3.8.1 -- 2.49.1 From d7200c788efa5bfbd74704c1e8addd17caad78dc Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:20:53 +0000 Subject: [PATCH 073/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 809cd8d..889ebd2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.32+243 +version: 0.0.33+244 environment: sdk: ^3.8.1 -- 2.49.1 From a431bbc3794d58f037c7fb320ffd2afa66aa0a25 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:00 +0000 Subject: [PATCH 074/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 889ebd2..3791554 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.33+244 +version: 0.0.34+245 environment: sdk: ^3.8.1 -- 2.49.1 From 92879007afe30e295102c759ce4b72a3086fa92a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:07 +0000 Subject: [PATCH 075/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3791554..01a2cad 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.34+245 +version: 0.0.35+246 environment: sdk: ^3.8.1 -- 2.49.1 From a86ac26b572a3666e8ef7f51ecec2f944ac186b0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:15 +0000 Subject: [PATCH 076/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 01a2cad..4ed4d08 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.35+246 +version: 0.0.36+247 environment: sdk: ^3.8.1 -- 2.49.1 From f4a897f93940012089c91f9702961b8d50db1879 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:22 +0000 Subject: [PATCH 077/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4ed4d08..8ea12d1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.36+247 +version: 0.0.37+248 environment: sdk: ^3.8.1 -- 2.49.1 From afbbf23587408588283443361b293e38efb8fc56 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:29 +0000 Subject: [PATCH 078/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8ea12d1..a82b265 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.37+248 +version: 0.0.38+249 environment: sdk: ^3.8.1 -- 2.49.1 From 2b929c53f85554d9f78a204ba4e3e1525f587383 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:36 +0000 Subject: [PATCH 079/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a82b265..a231089 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.38+249 +version: 0.0.39+250 environment: sdk: ^3.8.1 -- 2.49.1 From f5750045ab3d2c39d0e9c12483ae84e4ec27da39 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:43 +0000 Subject: [PATCH 080/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a231089..1395dbd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.39+250 +version: 0.0.40+251 environment: sdk: ^3.8.1 -- 2.49.1 From 60cd8c159e87754e24710021afde62aee3760827 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:50 +0000 Subject: [PATCH 081/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1395dbd..18e579d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.40+251 +version: 0.0.41+252 environment: sdk: ^3.8.1 -- 2.49.1 From 2d094820e77524ddcb9a08c9fa1bed60f17a304a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:21:58 +0000 Subject: [PATCH 082/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 18e579d..0851d33 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.41+252 +version: 0.0.42+253 environment: sdk: ^3.8.1 -- 2.49.1 From 6d9bce740a6f3d8db08b6d8fd28eba6962227b9e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:05 +0000 Subject: [PATCH 083/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0851d33..599e435 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.42+253 +version: 0.0.43+254 environment: sdk: ^3.8.1 -- 2.49.1 From 684164961bf0791ab85b2fd96ba2c11a8480f5fc Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:12 +0000 Subject: [PATCH 084/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 599e435..16c4943 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.43+254 +version: 0.0.44+255 environment: sdk: ^3.8.1 -- 2.49.1 From aaa25dd4d9226b3bffa53b8b0a6466e399bf1e87 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:19 +0000 Subject: [PATCH 085/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 16c4943..339c6a0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.44+255 +version: 0.0.45+256 environment: sdk: ^3.8.1 -- 2.49.1 From 1b296c7f99532685f2cc6c0a6053adb6a4efab3a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:26 +0000 Subject: [PATCH 086/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 339c6a0..817ed8c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.45+256 +version: 0.0.46+257 environment: sdk: ^3.8.1 -- 2.49.1 From f98aa2644ec391756fa5a0131691cf7188972877 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:34 +0000 Subject: [PATCH 087/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 817ed8c..76b9612 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.46+257 +version: 0.0.47+258 environment: sdk: ^3.8.1 -- 2.49.1 From a4846bddde880eaa3b03b28cb58abf17e0df80b8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:41 +0000 Subject: [PATCH 088/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 76b9612..b683979 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.47+258 +version: 0.0.48+259 environment: sdk: ^3.8.1 -- 2.49.1 From 2f8bc1a9229ade74fe8ccae6ce8a853a8f983929 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:48 +0000 Subject: [PATCH 089/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b683979..6313632 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.48+259 +version: 0.0.49+260 environment: sdk: ^3.8.1 -- 2.49.1 From b9a76c9c767305b122e747b3571b6e1304418ee0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:22:55 +0000 Subject: [PATCH 090/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6313632..8f68ec0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.49+260 +version: 0.0.50+261 environment: sdk: ^3.8.1 -- 2.49.1 From 1c66cbbaa7ca6c7dbddc37e8dad8eba3a92b030c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:03 +0000 Subject: [PATCH 091/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8f68ec0..575586d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.50+261 +version: 0.0.51+262 environment: sdk: ^3.8.1 -- 2.49.1 From 43dc32651547662c0cadc4fb84b3feb0515ca871 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:09 +0000 Subject: [PATCH 092/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 575586d..492a823 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.51+262 +version: 0.0.52+263 environment: sdk: ^3.8.1 -- 2.49.1 From f0d153795309471de62d77d4cf0e886a2b93f0e9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:17 +0000 Subject: [PATCH 093/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 492a823..c439842 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.52+263 +version: 0.0.53+264 environment: sdk: ^3.8.1 -- 2.49.1 From 7cf727c8e30969b0b4b3a98c0f86cd45550a635f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:24 +0000 Subject: [PATCH 094/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c439842..55ff6af 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.53+264 +version: 0.0.54+265 environment: sdk: ^3.8.1 -- 2.49.1 From 4936f15e349dda8462786d60038dea1bedb24707 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:30 +0000 Subject: [PATCH 095/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 55ff6af..82788cd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.54+265 +version: 0.0.55+266 environment: sdk: ^3.8.1 -- 2.49.1 From cd651882ba4a0b5f1bcb43483b6e8a569d613da0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:38 +0000 Subject: [PATCH 096/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 82788cd..31d9404 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.55+266 +version: 0.0.56+267 environment: sdk: ^3.8.1 -- 2.49.1 From 96039eac18de71bd437da80fca9f69b434b7cf2d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:45 +0000 Subject: [PATCH 097/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 31d9404..1062a92 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.56+267 +version: 0.0.57+268 environment: sdk: ^3.8.1 -- 2.49.1 From 90bdf4862e413174ac109a1e7a151174a46ac362 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:52 +0000 Subject: [PATCH 098/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1062a92..5971ec4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.57+268 +version: 0.0.58+269 environment: sdk: ^3.8.1 -- 2.49.1 From bb7df9b8582dc6ec6f673915363a127acddd9136 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:23:59 +0000 Subject: [PATCH 099/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5971ec4..aff3b2c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.58+269 +version: 0.0.59+270 environment: sdk: ^3.8.1 -- 2.49.1 From 263c592a390da61cb0e00f9f4acbf8c52750ce22 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:06 +0000 Subject: [PATCH 100/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aff3b2c..c455b63 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.59+270 +version: 0.0.60+271 environment: sdk: ^3.8.1 -- 2.49.1 From a7304a904a977c0af7f51ed514f2947267c3b6a2 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:14 +0000 Subject: [PATCH 101/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c455b63..f9a095b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.60+271 +version: 0.0.61+272 environment: sdk: ^3.8.1 -- 2.49.1 From c0f8c0ba5bb86142b1b4e8640aabc71bd10aef63 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:21 +0000 Subject: [PATCH 102/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f9a095b..a09b297 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.61+272 +version: 0.0.62+273 environment: sdk: ^3.8.1 -- 2.49.1 From 7c74ab7df6b7eaf6c0f895f172e84c12b2421a58 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:28 +0000 Subject: [PATCH 103/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a09b297..cd71ef0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.62+273 +version: 0.0.63+274 environment: sdk: ^3.8.1 -- 2.49.1 From ea1d9a15a64ade494f47e813fedfd28c1fa61120 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:35 +0000 Subject: [PATCH 104/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cd71ef0..9156a43 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.63+274 +version: 0.0.64+275 environment: sdk: ^3.8.1 -- 2.49.1 From df0c65267e7b2a45d0c1dc6877991e331f3170c4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:42 +0000 Subject: [PATCH 105/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9156a43..8874182 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.64+275 +version: 0.0.65+276 environment: sdk: ^3.8.1 -- 2.49.1 From 1e9aae2d383155c727e9532bbbffe5bf75283e73 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:49 +0000 Subject: [PATCH 106/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8874182..abfe078 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.65+276 +version: 0.0.66+277 environment: sdk: ^3.8.1 -- 2.49.1 From 0f1f04a748dadd083f5ef1807673218dea598670 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:24:56 +0000 Subject: [PATCH 107/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index abfe078..75c4064 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.66+277 +version: 0.0.67+278 environment: sdk: ^3.8.1 -- 2.49.1 From 3026ba1a83172bfb661058ef93427b917bc4994a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:04 +0000 Subject: [PATCH 108/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 75c4064..2820ca1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.67+278 +version: 0.0.68+279 environment: sdk: ^3.8.1 -- 2.49.1 From 690d9d1210a61e5692d0175094284508c3eb083b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:11 +0000 Subject: [PATCH 109/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2820ca1..420c16e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.68+279 +version: 0.0.69+280 environment: sdk: ^3.8.1 -- 2.49.1 From e0ff045aa2d667304420a0c2c5f8a3717edfa2db Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:18 +0000 Subject: [PATCH 110/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 420c16e..68aa0f2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.69+280 +version: 0.0.70+281 environment: sdk: ^3.8.1 -- 2.49.1 From c90c038a38221d397d21f3f99f3a2bfd509b6c83 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:25 +0000 Subject: [PATCH 111/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 68aa0f2..4707456 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.70+281 +version: 0.0.71+282 environment: sdk: ^3.8.1 -- 2.49.1 From 57b5860a96ad3fff522c278c6f65bac5ac3a0268 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:32 +0000 Subject: [PATCH 112/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4707456..88f2026 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.71+282 +version: 0.0.72+283 environment: sdk: ^3.8.1 -- 2.49.1 From 17dd695975493d3b22c2b2af488213e1b72141b1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:39 +0000 Subject: [PATCH 113/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 88f2026..72fdc2c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.72+283 +version: 0.0.73+284 environment: sdk: ^3.8.1 -- 2.49.1 From 444a9a9e0cd9c75daa892c89d5a1a9cc7534cfc9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:46 +0000 Subject: [PATCH 114/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 72fdc2c..6247ef2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.73+284 +version: 0.0.74+285 environment: sdk: ^3.8.1 -- 2.49.1 From 64e61eb1b6feac515e850d5368aa3527d6aee63b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:25:54 +0000 Subject: [PATCH 115/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6247ef2..d394833 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.74+285 +version: 0.0.75+286 environment: sdk: ^3.8.1 -- 2.49.1 From 7b94d0a016fe46f1e17df057cd245a64b37b3b83 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:01 +0000 Subject: [PATCH 116/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d394833..aaf2060 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.75+286 +version: 0.0.76+287 environment: sdk: ^3.8.1 -- 2.49.1 From 10c2b27daaaaf40aba1069c9e9c321125308feea Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:08 +0000 Subject: [PATCH 117/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aaf2060..01ef424 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.76+287 +version: 0.0.77+288 environment: sdk: ^3.8.1 -- 2.49.1 From 2453afd0ecebcd3045f50f7fe4b7d042324b4b00 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:15 +0000 Subject: [PATCH 118/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 01ef424..e6f9a7c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.77+288 +version: 0.0.78+289 environment: sdk: ^3.8.1 -- 2.49.1 From 95724aace233fc6e8fcaa30a878cb44fd994c78a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:23 +0000 Subject: [PATCH 119/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e6f9a7c..1edb1df 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.78+289 +version: 0.0.79+290 environment: sdk: ^3.8.1 -- 2.49.1 From ebf1f8a32034ad50582fd8976cb4732335f418cc Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:29 +0000 Subject: [PATCH 120/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1edb1df..8619dce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.79+290 +version: 0.0.80+291 environment: sdk: ^3.8.1 -- 2.49.1 From 48d36128136bf0e0965fce4007d60da7afb9f16d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:37 +0000 Subject: [PATCH 121/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8619dce..79c0029 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.80+291 +version: 0.0.81+292 environment: sdk: ^3.8.1 -- 2.49.1 From 2e49eaaa42a6d0f78ba73c13d427b6f69dd68e1f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:44 +0000 Subject: [PATCH 122/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 79c0029..1c42638 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.81+292 +version: 0.0.82+293 environment: sdk: ^3.8.1 -- 2.49.1 From 78607ef97225a6c1dcfc9f330d914c3234422a39 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:51 +0000 Subject: [PATCH 123/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1c42638..49b50f8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.82+293 +version: 0.0.83+294 environment: sdk: ^3.8.1 -- 2.49.1 From 9ccbc5e3788d375fef1ab7509dc6771a39317729 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:26:58 +0000 Subject: [PATCH 124/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 49b50f8..c6165a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.83+294 +version: 0.0.84+295 environment: sdk: ^3.8.1 -- 2.49.1 From 95d908bf1fa9d9f2a6e29daac360d420e6c2515e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:05 +0000 Subject: [PATCH 125/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c6165a8..be94776 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.84+295 +version: 0.0.85+296 environment: sdk: ^3.8.1 -- 2.49.1 From eb8883a502d5be12490d5a0812cf11a02adcacea Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:12 +0000 Subject: [PATCH 126/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index be94776..8cb2579 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.85+296 +version: 0.0.86+297 environment: sdk: ^3.8.1 -- 2.49.1 From a457f423c03e0a657d43079dd57fd7dd99a5e89f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:19 +0000 Subject: [PATCH 127/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8cb2579..8fca889 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.86+297 +version: 0.0.87+298 environment: sdk: ^3.8.1 -- 2.49.1 From b21c294b7cd4b600a08134ce096e1b3c8a9ea4b8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:27 +0000 Subject: [PATCH 128/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8fca889..aed8c87 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.87+298 +version: 0.0.88+299 environment: sdk: ^3.8.1 -- 2.49.1 From e3c71e5e902857799942dee2f8e0274b75dad657 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:34 +0000 Subject: [PATCH 129/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aed8c87..fbdf1ef 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.88+299 +version: 0.0.89+300 environment: sdk: ^3.8.1 -- 2.49.1 From 441526127e6bdaf2956a8b001c2d247fc45ec21c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:41 +0000 Subject: [PATCH 130/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fbdf1ef..6271dee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.89+300 +version: 0.0.90+301 environment: sdk: ^3.8.1 -- 2.49.1 From 2ebc311283480d3803692400d41cedeabf10e058 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:48 +0000 Subject: [PATCH 131/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6271dee..7f403ce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.90+301 +version: 0.0.91+302 environment: sdk: ^3.8.1 -- 2.49.1 From df8af653ddcbe716f378e4458a16e7fb4bb1efc7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:27:55 +0000 Subject: [PATCH 132/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7f403ce..03792b9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.91+302 +version: 0.0.92+303 environment: sdk: ^3.8.1 -- 2.49.1 From 286777a3f6937443318f6d23581e79b764df7429 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:03 +0000 Subject: [PATCH 133/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 03792b9..91536ff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.92+303 +version: 0.0.93+304 environment: sdk: ^3.8.1 -- 2.49.1 From 7f81a090e8d9d6d2cbbbb63d6a27e0769380c1ff Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:10 +0000 Subject: [PATCH 134/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 91536ff..7623662 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.93+304 +version: 0.0.94+305 environment: sdk: ^3.8.1 -- 2.49.1 From cb1c7ece01f0c70712378aa19f06a7a0446d4f19 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:17 +0000 Subject: [PATCH 135/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7623662..069dd0f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.94+305 +version: 0.0.95+306 environment: sdk: ^3.8.1 -- 2.49.1 From 52e59f303c24ee801ae292564e04a0467855f064 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:24 +0000 Subject: [PATCH 136/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 069dd0f..0fdf142 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.95+306 +version: 0.0.96+307 environment: sdk: ^3.8.1 -- 2.49.1 From b84a5a4ad28743fe2663421df9be9441f2238207 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:31 +0000 Subject: [PATCH 137/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0fdf142..e0adad8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.96+307 +version: 0.0.97+308 environment: sdk: ^3.8.1 -- 2.49.1 From 55323526d8dacd3efc6fec9a9126d62dea70ff02 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:38 +0000 Subject: [PATCH 138/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e0adad8..0ca07c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.97+308 +version: 0.0.98+309 environment: sdk: ^3.8.1 -- 2.49.1 From b324f32e7b7cacd8af2271e6931735cf61e976fe Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:45 +0000 Subject: [PATCH 139/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0ca07c2..c5f23a6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.98+309 +version: 0.0.99+310 environment: sdk: ^3.8.1 -- 2.49.1 From d0f02f4a8fd215c2fca54abeda4131be909acccd Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:28:53 +0000 Subject: [PATCH 140/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c5f23a6..1a15bb0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.99+310 +version: 0.0.100+311 environment: sdk: ^3.8.1 -- 2.49.1 From a55fbbaac1fc6c1cc9b0c83506ade4e2b150f91b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:00 +0000 Subject: [PATCH 141/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1a15bb0..174753a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.100+311 +version: 0.0.101+312 environment: sdk: ^3.8.1 -- 2.49.1 From b0f8756e0d83462f1c059d49fa4e5f9f478ab46d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:07 +0000 Subject: [PATCH 142/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 174753a..a80a8a1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.101+312 +version: 0.0.102+313 environment: sdk: ^3.8.1 -- 2.49.1 From ebdacaa4262be706c3257651632aceb9285ac34a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:14 +0000 Subject: [PATCH 143/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a80a8a1..fab49d1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.102+313 +version: 0.0.103+314 environment: sdk: ^3.8.1 -- 2.49.1 From 158b1f7616795f37116a26c49b63b151ce4a65e5 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:22 +0000 Subject: [PATCH 144/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fab49d1..70fedbb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.103+314 +version: 0.0.104+315 environment: sdk: ^3.8.1 -- 2.49.1 From 8661fd81b9e8caaf042cb9ff66f218b125e6a817 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:29 +0000 Subject: [PATCH 145/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 70fedbb..cf9c04d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.104+315 +version: 0.0.105+316 environment: sdk: ^3.8.1 -- 2.49.1 From ce140c5f2bf37086ee8afa213a7d9bfc26f032e1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:36 +0000 Subject: [PATCH 146/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cf9c04d..9906695 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.105+316 +version: 0.0.106+317 environment: sdk: ^3.8.1 -- 2.49.1 From 2ea7ea7e67c7b2ebb506a8ba1f2862f14b183e1d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:43 +0000 Subject: [PATCH 147/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9906695..5d9cb8b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.106+317 +version: 0.0.107+318 environment: sdk: ^3.8.1 -- 2.49.1 From 86bf67606ccb70e868bab2ffc49861a1f569c745 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:50 +0000 Subject: [PATCH 148/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5d9cb8b..050ab3b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.107+318 +version: 0.0.108+319 environment: sdk: ^3.8.1 -- 2.49.1 From 42dd20ffc4796e652b9a0b080b86f49e9eb228f0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:29:58 +0000 Subject: [PATCH 149/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 050ab3b..9b8a421 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.108+319 +version: 0.0.109+320 environment: sdk: ^3.8.1 -- 2.49.1 From 81dc2a7212a468bd370eb6b5a4ee1c7c3d159060 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:05 +0000 Subject: [PATCH 150/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9b8a421..5a7fb70 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.109+320 +version: 0.0.110+321 environment: sdk: ^3.8.1 -- 2.49.1 From 243b4747842c5eb1134578f30c6da112d228a17f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:12 +0000 Subject: [PATCH 151/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5a7fb70..2a10de1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.110+321 +version: 0.0.111+322 environment: sdk: ^3.8.1 -- 2.49.1 From 5cf321829208414594ee99ef3725b952e944aba0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:19 +0000 Subject: [PATCH 152/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2a10de1..ed2985d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.111+322 +version: 0.0.112+323 environment: sdk: ^3.8.1 -- 2.49.1 From 8d01b7358a407dad6d981750357a5f161306312f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:27 +0000 Subject: [PATCH 153/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ed2985d..e94051e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.112+323 +version: 0.0.113+324 environment: sdk: ^3.8.1 -- 2.49.1 From 56208eff6ce2f4c0138ad83cfb177ab3bc2f957c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:36 +0000 Subject: [PATCH 154/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e94051e..91c8177 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.113+324 +version: 0.0.114+325 environment: sdk: ^3.8.1 -- 2.49.1 From 4d0f7496f4c8532e3e1b596e38b09c7f6a209023 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:43 +0000 Subject: [PATCH 155/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 91c8177..f682ccd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.114+325 +version: 0.0.115+326 environment: sdk: ^3.8.1 -- 2.49.1 From b8844ccc3c6963730a3301ce783b02aa8bcfb2f4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:51 +0000 Subject: [PATCH 156/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f682ccd..d807047 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.115+326 +version: 0.0.116+327 environment: sdk: ^3.8.1 -- 2.49.1 From 88b0bed310e6d7f5a167acc9eef5169a019b9703 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:30:59 +0000 Subject: [PATCH 157/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d807047..2e5b35f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.116+327 +version: 0.0.117+328 environment: sdk: ^3.8.1 -- 2.49.1 From 8a7ac87d15f4fad6c54503bf3d2ae89f4b085cc9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:06 +0000 Subject: [PATCH 158/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2e5b35f..bbd8689 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.117+328 +version: 0.0.118+329 environment: sdk: ^3.8.1 -- 2.49.1 From c29c09c074842e7c184a2cb2eec009ec6e30283a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:14 +0000 Subject: [PATCH 159/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index bbd8689..898616f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.118+329 +version: 0.0.119+330 environment: sdk: ^3.8.1 -- 2.49.1 From 2fc7b76a0ef925bdfc08ef90317242c5da0ce40e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:21 +0000 Subject: [PATCH 160/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 898616f..fb73278 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.119+330 +version: 0.0.120+331 environment: sdk: ^3.8.1 -- 2.49.1 From f3b0e9d3c4bcec58764e6276a3a411c0d27efa43 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:30 +0000 Subject: [PATCH 161/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fb73278..d70358c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.120+331 +version: 0.0.121+332 environment: sdk: ^3.8.1 -- 2.49.1 From 3df38dee445709ef8f36706654b49a26df72b711 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:37 +0000 Subject: [PATCH 162/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d70358c..66c3969 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.121+332 +version: 0.0.122+333 environment: sdk: ^3.8.1 -- 2.49.1 From e88ba78ec6918147e37b84c27fba937a6b8c9d66 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:45 +0000 Subject: [PATCH 163/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 66c3969..e15fab3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.122+333 +version: 0.0.123+334 environment: sdk: ^3.8.1 -- 2.49.1 From 09811ffbb501dbb1832f3856eba41a87f7ac8e35 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:31:53 +0000 Subject: [PATCH 164/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e15fab3..ad73435 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.123+334 +version: 0.0.124+335 environment: sdk: ^3.8.1 -- 2.49.1 From e9f66a5b1bd0729112dc197d8bf13b769a38bd48 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:01 +0000 Subject: [PATCH 165/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ad73435..b955fe1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.124+335 +version: 0.0.125+336 environment: sdk: ^3.8.1 -- 2.49.1 From cbf667092eb68e1b2d8b8023ffc736b1126a8ce3 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:10 +0000 Subject: [PATCH 166/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b955fe1..7e92161 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.125+336 +version: 0.0.126+337 environment: sdk: ^3.8.1 -- 2.49.1 From 83dfdd259e2ddb097daa74ddafb4c9b00bd0d659 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:18 +0000 Subject: [PATCH 167/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7e92161..f058154 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.126+337 +version: 0.0.127+338 environment: sdk: ^3.8.1 -- 2.49.1 From e1219e3d3bab3eb9380b8537a6cc8af4fd0eeed3 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:26 +0000 Subject: [PATCH 168/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f058154..b2a668b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.127+338 +version: 0.0.128+339 environment: sdk: ^3.8.1 -- 2.49.1 From cbaf0475dcb2e7479f7dabe50e48d81b0400b28b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:33 +0000 Subject: [PATCH 169/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b2a668b..ca90bdf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.128+339 +version: 0.0.129+340 environment: sdk: ^3.8.1 -- 2.49.1 From bb730cb89ec8d94be01a84d028e32e8c79269925 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:41 +0000 Subject: [PATCH 170/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ca90bdf..d5edc8c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.129+340 +version: 0.0.130+341 environment: sdk: ^3.8.1 -- 2.49.1 From 3bc810afa074393504a27f011e696e8502cac741 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:49 +0000 Subject: [PATCH 171/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d5edc8c..d2c9aee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.130+341 +version: 0.0.131+342 environment: sdk: ^3.8.1 -- 2.49.1 From 9eb6ffcbcabc51b80c457e5b1c6b33069489a91f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:32:57 +0000 Subject: [PATCH 172/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d2c9aee..d60a976 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.131+342 +version: 0.0.132+343 environment: sdk: ^3.8.1 -- 2.49.1 From 9a7c87a112a0f17ae5bc520af548b11f2dfed55f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:06 +0000 Subject: [PATCH 173/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d60a976..8acb872 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.132+343 +version: 0.0.133+344 environment: sdk: ^3.8.1 -- 2.49.1 From da80280769bbfb0289e0e96752e2d289af547b59 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:13 +0000 Subject: [PATCH 174/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8acb872..767ca8f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.133+344 +version: 0.0.134+345 environment: sdk: ^3.8.1 -- 2.49.1 From a494a3a79d8ea3d98e0bd52950a8eb50b8ca3bfa Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:22 +0000 Subject: [PATCH 175/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 767ca8f..493eb3a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.134+345 +version: 0.0.135+346 environment: sdk: ^3.8.1 -- 2.49.1 From 5cf833d775f1c1863bf2c82e2df85e0c98b2d121 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:30 +0000 Subject: [PATCH 176/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 493eb3a..a9ac13b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.135+346 +version: 0.0.136+347 environment: sdk: ^3.8.1 -- 2.49.1 From b1cc74d1447a75f5906fc899a2f49bd4e4f39f05 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:39 +0000 Subject: [PATCH 177/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a9ac13b..599bcc4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.136+347 +version: 0.0.137+348 environment: sdk: ^3.8.1 -- 2.49.1 From 727ddc2ea5dd7e385eb6e38d50aa8d75102160bd Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:48 +0000 Subject: [PATCH 178/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 599bcc4..0bddd0b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.137+348 +version: 0.0.138+349 environment: sdk: ^3.8.1 -- 2.49.1 From 5cf7d1b086800de37984be3ab10dfc1e3c5238ac Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:33:57 +0000 Subject: [PATCH 179/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0bddd0b..b41fa67 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.138+349 +version: 0.0.139+350 environment: sdk: ^3.8.1 -- 2.49.1 From d0119e0e630a62a9ce831781cdf616caa6905a3a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:04 +0000 Subject: [PATCH 180/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b41fa67..d4d8fcd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.139+350 +version: 0.0.140+351 environment: sdk: ^3.8.1 -- 2.49.1 From 70bba0bd9b5e09a15a2ca45e2594b8b90d0206aa Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:11 +0000 Subject: [PATCH 181/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d4d8fcd..1df0d86 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.140+351 +version: 0.0.141+352 environment: sdk: ^3.8.1 -- 2.49.1 From 9135d565f51b4de176a6437b84a650fb53ed3169 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:20 +0000 Subject: [PATCH 182/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1df0d86..0013210 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.141+352 +version: 0.0.142+353 environment: sdk: ^3.8.1 -- 2.49.1 From c3d3208029df54fe8ff70097428529055561b34a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:28 +0000 Subject: [PATCH 183/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0013210..907ccea 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.142+353 +version: 0.0.143+354 environment: sdk: ^3.8.1 -- 2.49.1 From 83fc0d64ab7fb1f1bf9a52d1d26ee1f48a887b66 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:37 +0000 Subject: [PATCH 184/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 907ccea..8c2ecc5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.143+354 +version: 0.0.144+355 environment: sdk: ^3.8.1 -- 2.49.1 From 4ce9975723d6fc485a21a549b4d706c35ac65024 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:44 +0000 Subject: [PATCH 185/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8c2ecc5..139efc7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.144+355 +version: 0.0.145+356 environment: sdk: ^3.8.1 -- 2.49.1 From 4ad0d92f0eced853106eb3309728fbfff34d9296 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:34:52 +0000 Subject: [PATCH 186/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 139efc7..9ae5c15 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.145+356 +version: 0.0.146+357 environment: sdk: ^3.8.1 -- 2.49.1 From 33f4e3ecc11e657cfc0d23fa63f2fa4401d94c38 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:00 +0000 Subject: [PATCH 187/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9ae5c15..6013e6d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.146+357 +version: 0.0.147+358 environment: sdk: ^3.8.1 -- 2.49.1 From 645f610a11c746c672482700b93b367dd7dbeba8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:09 +0000 Subject: [PATCH 188/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 6013e6d..21d74d9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.147+358 +version: 0.0.148+359 environment: sdk: ^3.8.1 -- 2.49.1 From 911595053b189ead4c71cc5c6f0fea7fb0967a0c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:18 +0000 Subject: [PATCH 189/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 21d74d9..085271d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.148+359 +version: 0.0.149+360 environment: sdk: ^3.8.1 -- 2.49.1 From 6c66eb375273713455ffae1cdf5b4c05ba88e884 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:25 +0000 Subject: [PATCH 190/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 085271d..55cf0fa 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.149+360 +version: 0.0.150+361 environment: sdk: ^3.8.1 -- 2.49.1 From 295768931202b47b14caaa9f97d402157871992c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:33 +0000 Subject: [PATCH 191/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 55cf0fa..dac2022 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.150+361 +version: 0.0.151+362 environment: sdk: ^3.8.1 -- 2.49.1 From f55d33ef0f9116dc29da55be841fd9781b873c77 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:40 +0000 Subject: [PATCH 192/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index dac2022..75690c8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.151+362 +version: 0.0.152+363 environment: sdk: ^3.8.1 -- 2.49.1 From 45a955c26d75fc939902e78de5549455e6d37ea7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:49 +0000 Subject: [PATCH 193/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 75690c8..9ef2a6b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.152+363 +version: 0.0.153+364 environment: sdk: ^3.8.1 -- 2.49.1 From dd69e0d868d2f3b1da24705ab2bc662ef387b396 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:35:58 +0000 Subject: [PATCH 194/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9ef2a6b..4ec5498 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.153+364 +version: 0.0.154+365 environment: sdk: ^3.8.1 -- 2.49.1 From ed3df5069d7af1cfa53bd89b55e91cb5762022d3 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:07 +0000 Subject: [PATCH 195/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4ec5498..a62693e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.154+365 +version: 0.0.155+366 environment: sdk: ^3.8.1 -- 2.49.1 From 8d4e936a24c269e473c5e4996fce1aa2a0e286ed Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:16 +0000 Subject: [PATCH 196/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a62693e..f436714 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.155+366 +version: 0.0.156+367 environment: sdk: ^3.8.1 -- 2.49.1 From e2388d95b164c0013e6f84c9d63b6d4207ca27f1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:23 +0000 Subject: [PATCH 197/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f436714..d911afc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.156+367 +version: 0.0.157+368 environment: sdk: ^3.8.1 -- 2.49.1 From 6172d85c27b215b7f281aa63a573e6fc40668f90 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:31 +0000 Subject: [PATCH 198/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d911afc..4964aad 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.157+368 +version: 0.0.158+369 environment: sdk: ^3.8.1 -- 2.49.1 From 68d3aaff6e976fcd1e6bad2a980a8eefe945411c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:40 +0000 Subject: [PATCH 199/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4964aad..d30e475 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.158+369 +version: 0.0.159+370 environment: sdk: ^3.8.1 -- 2.49.1 From 7ecb8aa1c40b81fe7e3438354bcb6860bc8f3c3b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:47 +0000 Subject: [PATCH 200/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d30e475..a9a4022 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.159+370 +version: 0.0.160+371 environment: sdk: ^3.8.1 -- 2.49.1 From 86c4de9e2f4fb9ed841634b4258785fb1bef5331 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:36:56 +0000 Subject: [PATCH 201/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a9a4022..a193803 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.160+371 +version: 0.0.161+372 environment: sdk: ^3.8.1 -- 2.49.1 From 07b4ec87f4e9aaf8dcb6c2e443dbb5dd88b82c0d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:03 +0000 Subject: [PATCH 202/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a193803..dca1faf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.161+372 +version: 0.0.162+373 environment: sdk: ^3.8.1 -- 2.49.1 From 7ea27a316ceeb1e7b33f211a5a29a28b72198f50 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:11 +0000 Subject: [PATCH 203/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index dca1faf..286ef0c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.162+373 +version: 0.0.163+374 environment: sdk: ^3.8.1 -- 2.49.1 From 77ef88f5ce600c4296a4251457312b4de2e5e963 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:19 +0000 Subject: [PATCH 204/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 286ef0c..25fe56e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.163+374 +version: 0.0.164+375 environment: sdk: ^3.8.1 -- 2.49.1 From 761543f1344d420ea0d2dc87dda73e1c3aca9d05 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:27 +0000 Subject: [PATCH 205/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 25fe56e..2804270 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.164+375 +version: 0.0.165+376 environment: sdk: ^3.8.1 -- 2.49.1 From dd1804478c1fb001c18db607c04b53c128b86654 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:35 +0000 Subject: [PATCH 206/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2804270..f7116b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.165+376 +version: 0.0.166+377 environment: sdk: ^3.8.1 -- 2.49.1 From 43c3c1e88230693675ed7738acd3da626cb21531 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:43 +0000 Subject: [PATCH 207/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f7116b1..ea1dedf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.166+377 +version: 0.0.167+378 environment: sdk: ^3.8.1 -- 2.49.1 From 323b09566353fdcc8ee2f00fc26988a0b05ba58f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:50 +0000 Subject: [PATCH 208/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ea1dedf..1551a1a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.167+378 +version: 0.0.168+379 environment: sdk: ^3.8.1 -- 2.49.1 From b6a9599e49814eccbe6fb189aa62e8945693edc0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:37:58 +0000 Subject: [PATCH 209/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1551a1a..36b3286 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.168+379 +version: 0.0.169+380 environment: sdk: ^3.8.1 -- 2.49.1 From e47c1c910956f5fdab5acd269db9c7ac68cdabe9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:07 +0000 Subject: [PATCH 210/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 36b3286..429096f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.169+380 +version: 0.0.170+381 environment: sdk: ^3.8.1 -- 2.49.1 From 27bc7c1741bf196278d1c0b8caad633c41f24d0d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:14 +0000 Subject: [PATCH 211/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 429096f..aac136b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.170+381 +version: 0.0.171+382 environment: sdk: ^3.8.1 -- 2.49.1 From ea40e39f3dc49ab890ffae68773918b774b59730 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:21 +0000 Subject: [PATCH 212/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index aac136b..e24a721 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.171+382 +version: 0.0.172+383 environment: sdk: ^3.8.1 -- 2.49.1 From 247fe19fe69ff66b9712d2041f916ee10fc39663 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:28 +0000 Subject: [PATCH 213/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e24a721..109a232 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.172+383 +version: 0.0.173+384 environment: sdk: ^3.8.1 -- 2.49.1 From d4f85fa95ebdd0078f27c1cac4c8fcecd3e47bff Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:38 +0000 Subject: [PATCH 214/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 109a232..43614ab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.173+384 +version: 0.0.174+385 environment: sdk: ^3.8.1 -- 2.49.1 From 4730a6491a3684475bf354756a9f0c8969703a6c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:47 +0000 Subject: [PATCH 215/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 43614ab..d3b068e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.174+385 +version: 0.0.175+386 environment: sdk: ^3.8.1 -- 2.49.1 From ed0965b8bdf2825135d240a30965999cc5219317 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:38:56 +0000 Subject: [PATCH 216/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d3b068e..ba0a18e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.175+386 +version: 0.0.176+387 environment: sdk: ^3.8.1 -- 2.49.1 From db1e52ea672d87af5bb504ce20eb8c401d8af97c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:03 +0000 Subject: [PATCH 217/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ba0a18e..c75bbfb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.176+387 +version: 0.0.177+388 environment: sdk: ^3.8.1 -- 2.49.1 From d0eb111a75cc94e9ae95b225b31afa3e2a9a0b6c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:10 +0000 Subject: [PATCH 218/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c75bbfb..03823d8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.177+388 +version: 0.0.178+389 environment: sdk: ^3.8.1 -- 2.49.1 From 013db92c281f093e302720ba04ea19cadfd3e8ad Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:19 +0000 Subject: [PATCH 219/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 03823d8..36c5809 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.178+389 +version: 0.0.179+390 environment: sdk: ^3.8.1 -- 2.49.1 From 140169280056206a82193840ade233740f8b5ee9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:27 +0000 Subject: [PATCH 220/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 36c5809..c4ef93f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.179+390 +version: 0.0.180+391 environment: sdk: ^3.8.1 -- 2.49.1 From 321fd2a4c8a1f8a97a454dbc59c068432b0ce11c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:35 +0000 Subject: [PATCH 221/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c4ef93f..3a823d3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.180+391 +version: 0.0.181+392 environment: sdk: ^3.8.1 -- 2.49.1 From 332e0012dec420c6c805a89c34ee46027da80a46 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:43 +0000 Subject: [PATCH 222/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3a823d3..500a5d1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.181+392 +version: 0.0.182+393 environment: sdk: ^3.8.1 -- 2.49.1 From 3474f670aa9d0bf5f7a663e93ac7b9d9a1775730 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:39:52 +0000 Subject: [PATCH 223/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 500a5d1..3b14894 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.182+393 +version: 0.0.183+394 environment: sdk: ^3.8.1 -- 2.49.1 From bbd9dadd43f49324864c472d5dde2b68a178d072 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:01 +0000 Subject: [PATCH 224/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3b14894..f9000f4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.183+394 +version: 0.0.184+395 environment: sdk: ^3.8.1 -- 2.49.1 From 5ebf9a5b7fb9d9e943810d2842ed427f20159790 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:08 +0000 Subject: [PATCH 225/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f9000f4..3ea46c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.184+395 +version: 0.0.185+396 environment: sdk: ^3.8.1 -- 2.49.1 From b88b0235caa141a954b89c9e1c0908d890163ac2 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:17 +0000 Subject: [PATCH 226/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3ea46c2..42dd870 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.185+396 +version: 0.0.186+397 environment: sdk: ^3.8.1 -- 2.49.1 From 49adc89d061fa1c97130c2fa7a35ced03cd8c102 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:26 +0000 Subject: [PATCH 227/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 42dd870..8e29526 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.186+397 +version: 0.0.187+398 environment: sdk: ^3.8.1 -- 2.49.1 From 27c7fd3208b000c46ff17da2118c0ed9cc042044 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:35 +0000 Subject: [PATCH 228/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 8e29526..78b2436 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.187+398 +version: 0.0.188+399 environment: sdk: ^3.8.1 -- 2.49.1 From 7f6b02f2643e11547862a33c5ecba285fbb53f84 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:43 +0000 Subject: [PATCH 229/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 78b2436..9b566fe 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.188+399 +version: 0.0.189+400 environment: sdk: ^3.8.1 -- 2.49.1 From 9198131e8f887097aa7a216de464b5364932f621 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:50 +0000 Subject: [PATCH 230/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9b566fe..72f5e74 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.189+400 +version: 0.0.190+401 environment: sdk: ^3.8.1 -- 2.49.1 From cc738704f5a2d6fc06260c5d86e0abc8cd297166 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:40:57 +0000 Subject: [PATCH 231/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 72f5e74..bef9be3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.190+401 +version: 0.0.191+402 environment: sdk: ^3.8.1 -- 2.49.1 From 9e1afacaa875bb077b5b652c30d4b922605603a3 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:05 +0000 Subject: [PATCH 232/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index bef9be3..cf34d90 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.191+402 +version: 0.0.192+403 environment: sdk: ^3.8.1 -- 2.49.1 From 1ae2ee620ad858f78f9a18ab9e0612cce4ab72af Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:13 +0000 Subject: [PATCH 233/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cf34d90..3928c33 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.192+403 +version: 0.0.193+404 environment: sdk: ^3.8.1 -- 2.49.1 From a4d12d5f5c73306bb08c6994fe7425bddb87c10d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:20 +0000 Subject: [PATCH 234/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3928c33..65d8bee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.193+404 +version: 0.0.194+405 environment: sdk: ^3.8.1 -- 2.49.1 From e910d6b907c0dfffd35142da3a3fae9035b3708e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:30 +0000 Subject: [PATCH 235/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 65d8bee..ac6e781 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.194+405 +version: 0.0.195+406 environment: sdk: ^3.8.1 -- 2.49.1 From cd48d1984b0d870bdcfe97bbf6c0a5a97bc7e99f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:39 +0000 Subject: [PATCH 236/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ac6e781..ac59ba1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.195+406 +version: 0.0.196+407 environment: sdk: ^3.8.1 -- 2.49.1 From 5717c236dc4c980be5a23eb0dcd66a97d943ca0f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:47 +0000 Subject: [PATCH 237/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ac59ba1..d3847ae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.196+407 +version: 0.0.197+408 environment: sdk: ^3.8.1 -- 2.49.1 From f850d2d2af4df94866874a63fbc61be34f3a7e81 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:41:55 +0000 Subject: [PATCH 238/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d3847ae..fc07ec1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.197+408 +version: 0.0.198+409 environment: sdk: ^3.8.1 -- 2.49.1 From 8aea58b537a8e3003d4c1c7b417e27d50fc4dd28 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:04 +0000 Subject: [PATCH 239/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fc07ec1..2399e38 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.198+409 +version: 0.0.199+410 environment: sdk: ^3.8.1 -- 2.49.1 From 354034057b523d197eac01e01b8a1ff70011c557 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:11 +0000 Subject: [PATCH 240/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2399e38..d7da197 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.199+410 +version: 0.0.200+411 environment: sdk: ^3.8.1 -- 2.49.1 From 19045d6ca9a746a648965577aad598c435bb7c50 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:21 +0000 Subject: [PATCH 241/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d7da197..000d5ad 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.200+411 +version: 0.0.201+412 environment: sdk: ^3.8.1 -- 2.49.1 From 0628f10356fb612d72acd9ec09d5d367bba0c153 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:29 +0000 Subject: [PATCH 242/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 000d5ad..bcd414c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.201+412 +version: 0.0.202+413 environment: sdk: ^3.8.1 -- 2.49.1 From c21aba569ab9fad31a2605d7e133118453773a39 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:37 +0000 Subject: [PATCH 243/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index bcd414c..9a01d86 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.202+413 +version: 0.0.203+414 environment: sdk: ^3.8.1 -- 2.49.1 From 8d5d5a83b0c4edec3ef607943365ab22b25c2b8f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:46 +0000 Subject: [PATCH 244/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9a01d86..9f073f0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.203+414 +version: 0.0.204+415 environment: sdk: ^3.8.1 -- 2.49.1 From 82472c8fe4084cf0b392475fe74627f0cd1b36b2 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:42:54 +0000 Subject: [PATCH 245/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9f073f0..3a578bc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.204+415 +version: 0.0.205+416 environment: sdk: ^3.8.1 -- 2.49.1 From 2763ee99d396cc14b6b8940da7c2a4f6878ef986 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:43:01 +0000 Subject: [PATCH 246/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3a578bc..776199d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.205+416 +version: 0.0.206+417 environment: sdk: ^3.8.1 -- 2.49.1 From b97071fbf466141cb2ef8bbc36fd9c1d3199183b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:43:10 +0000 Subject: [PATCH 247/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 776199d..cd1c1c9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.206+417 +version: 0.0.207+418 environment: sdk: ^3.8.1 -- 2.49.1 From 44b8aba2bd6f37ec3411710218dc160b151cfb9d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:43:19 +0000 Subject: [PATCH 248/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index cd1c1c9..e31e958 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.207+418 +version: 0.0.208+419 environment: sdk: ^3.8.1 -- 2.49.1 From 8fcf4933be8a573fd30c7a5ed59d956d81ac072e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:43:27 +0000 Subject: [PATCH 249/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e31e958..4dbba4a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.208+419 +version: 0.0.209+420 environment: sdk: ^3.8.1 -- 2.49.1 From 9743781d600490211f147b7fc022315576bed9d9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 12:43:35 +0000 Subject: [PATCH 250/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4dbba4a..3c2f8f6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.209+420 +version: 0.0.210+421 environment: sdk: ^3.8.1 -- 2.49.1 From 99104f91087644894d35dd7e94f1d44d59947883 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:44:37 +0100 Subject: [PATCH 251/316] Wenn das jetzt funktioniert geh ich crashout --- .gitea/workflows/pull_request.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 28da37d..449bb66 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -89,6 +89,8 @@ jobs: - name: Format code if: steps.check_format.outcome == 'failure' + env: + GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} @@ -98,10 +100,10 @@ jobs: if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "Gitea Actions [bot]" - git config --global user.email "actions@gitea.com" + git config --global user.email "" git add lib test git commit -m "Auto-format code" - git push + git push origin HEAD:${{ gitea.head_ref }} else echo "No changes to commit" fi @@ -125,13 +127,13 @@ jobs: strategy: 'patch' path: './pubspec.yaml' - + - name: Commit version update env: GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | - git config --global user.name "Felix Kirchner" - git config --global user.email "felix.kirchner.fk@gmail.com" + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "" git add pubspec.yaml git commit -m "Updated version number" - git push https://flixcoo:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} \ No newline at end of file + git push origin HEAD:${{ gitea.head_ref }} \ No newline at end of file -- 2.49.1 From 43c128455310afadb6766666ed514ba907b6789e Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:44:52 +0000 Subject: [PATCH 252/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3c2f8f6..81ae4ff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.210+421 +version: 0.0.211+422 environment: sdk: ^3.8.1 -- 2.49.1 From 05fad6284222c69cb9b838c25e3cccc87309bca3 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:44:59 +0000 Subject: [PATCH 253/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 81ae4ff..4689965 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.211+422 +version: 0.0.212+423 environment: sdk: ^3.8.1 -- 2.49.1 From 77d710d43e45aeadfa6cfe2800647eb44810f8f2 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:06 +0000 Subject: [PATCH 254/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4689965..5dccd10 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.212+423 +version: 0.0.213+424 environment: sdk: ^3.8.1 -- 2.49.1 From 0ec1be366217cd902fd599bca0e6df7d6780c79a Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:13 +0000 Subject: [PATCH 255/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5dccd10..97f2f22 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.213+424 +version: 0.0.214+425 environment: sdk: ^3.8.1 -- 2.49.1 From ce9c379921e4985dc639a64ea1066d766c72e3d0 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:21 +0000 Subject: [PATCH 256/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 97f2f22..322c08c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.214+425 +version: 0.0.215+426 environment: sdk: ^3.8.1 -- 2.49.1 From 089515d5c916b71a955036123be4707ae4b6aa53 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:28 +0000 Subject: [PATCH 257/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 322c08c..d4949f8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.215+426 +version: 0.0.216+427 environment: sdk: ^3.8.1 -- 2.49.1 From c01b460a0e9c6381664e2b7da4888a9759fa6b8f Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:35 +0000 Subject: [PATCH 258/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d4949f8..80780d1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.216+427 +version: 0.0.217+428 environment: sdk: ^3.8.1 -- 2.49.1 From 2535ac08b94a5204fa1de0ada9892ef521eb1942 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:42 +0000 Subject: [PATCH 259/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 80780d1..dc9f1d4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.217+428 +version: 0.0.218+429 environment: sdk: ^3.8.1 -- 2.49.1 From f870ed1825ec6b83139ea8fef22f4f59d9a4163f Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:49 +0000 Subject: [PATCH 260/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index dc9f1d4..302deda 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.218+429 +version: 0.0.219+430 environment: sdk: ^3.8.1 -- 2.49.1 From 1d98118558ad837f1e3770be6987f00eff5ee44d Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:45:56 +0000 Subject: [PATCH 261/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 302deda..ebbfdc7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.219+430 +version: 0.0.220+431 environment: sdk: ^3.8.1 -- 2.49.1 From 533e897cf5b553d72fcf82744a663a8c12982c64 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:03 +0000 Subject: [PATCH 262/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index ebbfdc7..1c4d7d9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.220+431 +version: 0.0.221+432 environment: sdk: ^3.8.1 -- 2.49.1 From 07a6d27a3796eac6b7a674866389d1beb4bc5180 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:11 +0000 Subject: [PATCH 263/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1c4d7d9..e091e26 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.221+432 +version: 0.0.222+433 environment: sdk: ^3.8.1 -- 2.49.1 From 94a38bca83123fefc5e376c721e2804afc94ad79 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:18 +0000 Subject: [PATCH 264/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index e091e26..73e71ed 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.222+433 +version: 0.0.223+434 environment: sdk: ^3.8.1 -- 2.49.1 From 0acfb8f05b67af638f6495d2b9d4bf734650579d Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:25 +0000 Subject: [PATCH 265/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 73e71ed..2c604a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.223+434 +version: 0.0.224+435 environment: sdk: ^3.8.1 -- 2.49.1 From b7fed29a953b6c76927f846022845852c4fb8a83 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:32 +0000 Subject: [PATCH 266/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2c604a8..a29b3eb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.224+435 +version: 0.0.225+436 environment: sdk: ^3.8.1 -- 2.49.1 From b4e568eb39dedae7b3909a49da04e2a0cd139d25 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:39 +0000 Subject: [PATCH 267/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index a29b3eb..d9fb377 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.225+436 +version: 0.0.226+437 environment: sdk: ^3.8.1 -- 2.49.1 From aa6fce09a1ca72a499bbe03c49aea022a271b475 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:47 +0000 Subject: [PATCH 268/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d9fb377..360ef74 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.226+437 +version: 0.0.227+438 environment: sdk: ^3.8.1 -- 2.49.1 From 471ea1a5a3d27466bf2b1c93b879d437c4cd3ff9 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:46:53 +0000 Subject: [PATCH 269/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 360ef74..3c2c6b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.227+438 +version: 0.0.228+439 environment: sdk: ^3.8.1 -- 2.49.1 From 799b58bf4d657c190c098acc6cbe1fd6594deac2 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:01 +0000 Subject: [PATCH 270/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3c2c6b1..93496a0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.228+439 +version: 0.0.229+440 environment: sdk: ^3.8.1 -- 2.49.1 From 5d8c985434219ae2ad28eded7af0515e008e553f Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:08 +0000 Subject: [PATCH 271/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 93496a0..631d264 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.229+440 +version: 0.0.230+441 environment: sdk: ^3.8.1 -- 2.49.1 From 3afcddf52e57d662ff5e2df64cff727fa8917af7 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:15 +0000 Subject: [PATCH 272/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 631d264..9807074 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.230+441 +version: 0.0.231+442 environment: sdk: ^3.8.1 -- 2.49.1 From 01d5e56c2c5b45701355c8ebcbea2f0aa5e6a1d4 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:22 +0000 Subject: [PATCH 273/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9807074..f074ec0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.231+442 +version: 0.0.232+443 environment: sdk: ^3.8.1 -- 2.49.1 From ca96a41f29925b832d73aba9c94f53ff2a55058c Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:29 +0000 Subject: [PATCH 274/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f074ec0..c320fb6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.232+443 +version: 0.0.233+444 environment: sdk: ^3.8.1 -- 2.49.1 From 0781dbba192d392aa9de091467b1f954bec3cf42 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:36 +0000 Subject: [PATCH 275/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c320fb6..69ad650 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.233+444 +version: 0.0.234+445 environment: sdk: ^3.8.1 -- 2.49.1 From 8b016c26ca5a13ecb20a9e03061d558e1b8d4fd1 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:43 +0000 Subject: [PATCH 276/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 69ad650..2f65d47 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.234+445 +version: 0.0.235+446 environment: sdk: ^3.8.1 -- 2.49.1 From cf8f996ce433eb57a393146ab73ab3a159024309 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:51 +0000 Subject: [PATCH 277/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 2f65d47..fc5f8bd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.235+446 +version: 0.0.236+447 environment: sdk: ^3.8.1 -- 2.49.1 From c0cace698bb07b334f6644ec9d3db206a5bec648 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:47:58 +0000 Subject: [PATCH 278/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index fc5f8bd..1e2e748 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.236+447 +version: 0.0.237+448 environment: sdk: ^3.8.1 -- 2.49.1 From 467ca8043ff6be086e768752aa0aaabd9f69b6b6 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:48:05 +0000 Subject: [PATCH 279/316] Updated version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 1e2e748..3a62edc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.237+448 +version: 0.0.238+449 environment: sdk: ^3.8.1 -- 2.49.1 From a2d1f7fe9abaf7b978281f7ddd844399940c5b07 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:49:51 +0100 Subject: [PATCH 280/316] Implemented skip ci --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 449bb66..ae375bb 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -102,7 +102,7 @@ jobs: git config --global user.name "Gitea Actions [bot]" git config --global user.email "" git add lib test - git commit -m "Auto-format code" + git commit -m "Auto-format code [skip ci]" git push origin HEAD:${{ gitea.head_ref }} else echo "No changes to commit" @@ -135,5 +135,5 @@ jobs: git config --global user.name "Gitea Actions [bot]" git config --global user.email "" git add pubspec.yaml - git commit -m "Updated version number" + git commit -m "Updated version number [skip ci]" git push origin HEAD:${{ gitea.head_ref }} \ No newline at end of file -- 2.49.1 From 85b682da76bc29dc0ada250a26df2645864fabc5 Mon Sep 17 00:00:00 2001 From: "Gitea Actions [bot]" <> Date: Sun, 18 Jan 2026 12:51:02 +0000 Subject: [PATCH 281/316] Updated version number [skip ci] --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3a62edc..5502454 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.238+449 +version: 0.0.239+450 environment: sdk: ^3.8.1 -- 2.49.1 From 99ea863e80382c34f4216208e354c681117db35a Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:52:38 +0100 Subject: [PATCH 282/316] Finalized workflow --- .gitea/workflows/pull_request.yaml | 82 +----------------------------- .gitea/workflows/push.yaml | 55 +++++++++++++++----- 2 files changed, 44 insertions(+), 93 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index ae375bb..4acc507 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -56,84 +56,4 @@ jobs: run: flutter pub get - name: Run tests - run: flutter test - - Format: - runs-on: ubuntu-latest - if: false - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - apt-get update - apt-get install -y jq - - - name: Install Flutter (wget) - run: | - wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path - git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITHUB_PATH - - - name: Get dependencies - run: flutter pub get - - - name: Check code format - id: check_format - continue-on-error: true - run: flutter analyze lib test - - - name: Format code - if: steps.check_format.outcome == 'failure' - env: - GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} - run: | - git fetch origin ${{ gitea.head_ref }} - git checkout ${{ gitea.head_ref }} - - dart fix --apply lib - dart fix --apply test - - if [ -n "$(git status --porcelain lib test)" ]; then - git config --global user.name "Gitea Actions [bot]" - git config --global user.email "" - git add lib test - git commit -m "Auto-format code [skip ci]" - git push origin HEAD:${{ gitea.head_ref }} - else - echo "No changes to commit" - fi - - - name: Verify format - run: flutter analyze lib test - - Update-Version: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - token: ${{ secrets.BOT_TOKEN }} - ref: ${{ gitea.head_ref }} - - - name: Update version - uses: https://github.com/stikkyapp/update-pubspec-version@v2 - with: - strategy: 'patch' - path: './pubspec.yaml' - - - - name: Commit version update - env: - GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} - run: | - git config --global user.name "Gitea Actions [bot]" - git config --global user.email "" - git add pubspec.yaml - git commit -m "Updated version number [skip ci]" - git push origin HEAD:${{ gitea.head_ref }} \ No newline at end of file + run: flutter test \ No newline at end of file diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index eadeede..ef2d71a 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -7,6 +7,33 @@ on: - "main" jobs: + Test: + runs-on: ubuntu-latest + if: false + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install dependencies + run: | + apt-get update + apt-get install -y jq + + - name: Install Flutter (wget) + run: | + wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz + # Set Git safe directory for Flutter path + git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + + - name: Get dependencies + run: flutter pub get + + - name: Run tests + run: flutter test + Format: runs-on: ubuntu-latest if: false @@ -38,6 +65,8 @@ jobs: - name: Format code if: steps.check_format.outcome == 'failure' + env: + GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | git fetch origin ${{ gitea.head_ref }} git checkout ${{ gitea.head_ref }} @@ -47,10 +76,10 @@ jobs: if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "Gitea Actions [bot]" - git config --global user.email "actions@gitea.com" + git config --global user.email "" git add lib test - git commit -m "Auto-format code" - git push + git commit -m "Auto-format code [skip ci]" + git push origin HEAD:${{ gitea.head_ref }} else echo "No changes to commit" fi @@ -58,28 +87,30 @@ jobs: - name: Verify format run: flutter analyze lib test - - Update Version: + Update-Version: runs-on: ubuntu-latest + if: github.ref == 'refs/heads/development' steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 + token: ${{ secrets.BOT_TOKEN }} + ref: ${{ gitea.head_ref }} - name: Update version uses: https://github.com/stikkyapp/update-pubspec-version@v2 with: - strategy: 'minor' + strategy: 'patch' path: './pubspec.yaml' + - name: Commit version update + env: + GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | - git fetch origin ${{ gitea.head_ref }} - git checkout ${{ gitea.head_ref }} - git config --global user.name "Gitea Actions [bot]" - git config --global user.email "actions@gitea.com" + git config --global user.email "" git add pubspec.yaml - git commit -m "Updated version number" - git push \ No newline at end of file + git commit -m "Updated version number [skip ci]" + git push origin HEAD:${{ gitea.head_ref }} \ No newline at end of file -- 2.49.1 From 2966351b5ac927865e379214c306d74cfd7bd201 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:57:16 +0100 Subject: [PATCH 283/316] Resetted version number --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5502454..9f957c2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: game_tracker description: "Game Tracking App for Card Games" publish_to: 'none' -version: 0.0.239+450 +version: 0.0.7+213 environment: sdk: ^3.8.1 -- 2.49.1 From d79e082f78a07fa86f76a0de83b83e6c1533e140 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 13:58:23 +0100 Subject: [PATCH 284/316] Removed 'false' flags --- .gitea/workflows/pull_request.yaml | 2 -- .gitea/workflows/push.yaml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 4acc507..3d3ccfd 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,7 +6,6 @@ on: jobs: Lint: runs-on: ubuntu-latest - if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -33,7 +32,6 @@ jobs: Test: runs-on: ubuntu-latest - if: false steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index ef2d71a..720a6c4 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -9,7 +9,6 @@ on: jobs: Test: runs-on: ubuntu-latest - if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -36,7 +35,6 @@ jobs: Format: runs-on: ubuntu-latest - if: false steps: - name: Checkout code uses: actions/checkout@v4 -- 2.49.1 From 2cce04029a042a64fb6dcf05ab8e823b971a6a35 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:01:22 +0100 Subject: [PATCH 285/316] Changed wget progress --- .gitea/workflows/pull_request.yaml | 4 ++-- .gitea/workflows/push.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 3d3ccfd..8824636 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -17,7 +17,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -43,7 +43,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 720a6c4..e0722c1 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -20,7 +20,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From e6402f294b61ba5d0de6332b913c2878bc8f34cb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:04:20 +0100 Subject: [PATCH 286/316] Condition --- .gitea/workflows/push.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index e0722c1..9d40108 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -87,6 +87,7 @@ jobs: Update-Version: runs-on: ubuntu-latest + needs: Format if: github.ref == 'refs/heads/development' steps: - name: Checkout code -- 2.49.1 From b2a9ab14e067261a15858ae2ecf7ee57c938046c Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:16:45 +0100 Subject: [PATCH 287/316] Tried flutter action instead of wget --- .gitea/workflows/pull_request.yaml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 8824636..2f8f4e5 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -15,14 +15,20 @@ jobs: apt-get update apt-get install -y jq - - name: Install Flutter (wget) - run: | - wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path - git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITEA_PATH + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.19.0 + + # - name: Install Flutter (wget) + # run: | + # wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + # tar xf flutter_linux_3.38.2-stable.tar.xz + # # Set Git safe directory for Flutter path + # git config --global --add safe.directory "$(pwd)/flutter" + # # Set Flutter path + # echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get -- 2.49.1 From aa8471f891d69773d98f921cce59b4b4d438e577 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:17:34 +0100 Subject: [PATCH 288/316] Tried flutter action instead of wget --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 2f8f4e5..550f81c 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -19,7 +19,7 @@ jobs: uses: subosito/flutter-action@v2 with: channel: stable - flutter-version: 3.19.0 + flutter-version: 3.38.6 # - name: Install Flutter (wget) # run: | -- 2.49.1 From 70750e076a5c7bd63342bd6775e577e25ec91bf0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:22:00 +0100 Subject: [PATCH 289/316] Redo changes --- .gitea/workflows/pull_request.yaml | 29 +++++++++-------------------- .gitea/workflows/push.yaml | 6 +++--- 2 files changed, 12 insertions(+), 23 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 550f81c..6dec039 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -10,25 +10,14 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install jq + - name: Install Flutter (wget) run: | - apt-get update - apt-get install -y jq - - - name: Set up Flutter - uses: subosito/flutter-action@v2 - with: - channel: stable - flutter-version: 3.38.6 - - # - name: Install Flutter (wget) - # run: | - # wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - # tar xf flutter_linux_3.38.2-stable.tar.xz - # # Set Git safe directory for Flutter path - # git config --global --add safe.directory "$(pwd)/flutter" - # # Set Flutter path - # echo "$(pwd)/flutter/bin" >> $GITEA_PATH + wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz + # Set Git safe directory for Flutter path + git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get @@ -49,12 +38,12 @@ jobs: - name: Install Flutter (wget) run: | - wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 9d40108..2d46966 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -25,7 +25,7 @@ jobs: # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get @@ -51,7 +51,7 @@ jobs: # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITHUB_PATH + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get @@ -88,7 +88,7 @@ jobs: Update-Version: runs-on: ubuntu-latest needs: Format - if: github.ref == 'refs/heads/development' + if: gitea.ref == 'refs/heads/development' steps: - name: Checkout code uses: actions/checkout@v4 -- 2.49.1 From 07e20e9b9244ba05b12b7d9f1da6a48698dd9516 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:23:41 +0100 Subject: [PATCH 290/316] Updated progress bar --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 6dec039..2426ee7 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget -q --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -38,7 +38,7 @@ jobs: - name: Install Flutter (wget) run: | - wget -q --show-progress https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget -q --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From fe557ffa623faeb217a417f15e20b85832ff16ff Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:24:20 +0100 Subject: [PATCH 291/316] Updated progress bar --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 2426ee7..fb7ddbb 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget -q --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From ee92e72db61bcd73dbe379d8d01f4028abe4ff1d Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:25:30 +0100 Subject: [PATCH 292/316] Updated progress bar --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index fb7ddbb..aee7b95 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From b464c13473b6ac9fb6ef0a50ece01b4b0430c897 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:25:57 +0100 Subject: [PATCH 293/316] Updated progress bar --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index aee7b95..c5e570f 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --show-progress --progress=bar https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From 49ce90bc68789ae5680e972f781e46e665b95ed0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:27:58 +0100 Subject: [PATCH 294/316] Updated progress bar --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index c5e570f..b6504e4 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --show-progress --progress=bar:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=bar:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From 4c60a149b7bca63ab5130021d15e98e875f57bdd Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:30:15 +0100 Subject: [PATCH 295/316] Another progress update --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b6504e4..688e9be 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --progress=bar:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget -q --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From 1a85a17abfb211831044ff251b588e0c2b45fd14 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:31:02 +0100 Subject: [PATCH 296/316] Another progress update --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 688e9be..05b3217 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Install Flutter (wget) run: | - wget -q --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From 2ba53fc393f45b2f8988d7ba04eff46dce5c6aa1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:33:55 +0100 Subject: [PATCH 297/316] Updated progress bar final --- .gitea/workflows/pull_request.yaml | 2 +- .gitea/workflows/push.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 05b3217..26d7202 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -38,7 +38,7 @@ jobs: - name: Install Flutter (wget) run: | - wget -q --show-progress --progress=bar:force:noscroll https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 2d46966..8245b14 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -20,7 +20,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -46,7 +46,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" -- 2.49.1 From 341de5ea1893e11d398c501fc8e29de4f3a0d4cb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:37:58 +0100 Subject: [PATCH 298/316] Updated workflow name --- .gitea/workflows/push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 8245b14..e6b5cda 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -85,7 +85,7 @@ jobs: - name: Verify format run: flutter analyze lib test - Update-Version: + Update Version: runs-on: ubuntu-latest needs: Format if: gitea.ref == 'refs/heads/development' @@ -97,7 +97,7 @@ jobs: token: ${{ secrets.BOT_TOKEN }} ref: ${{ gitea.head_ref }} - - name: Update version + - name: Increment version number uses: https://github.com/stikkyapp/update-pubspec-version@v2 with: strategy: 'patch' -- 2.49.1 From df08591f24f9c1144f88ce60ffc9ef0b6db39480 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 14:38:44 +0100 Subject: [PATCH 299/316] Updated bot email --- .gitea/workflows/push.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index e6b5cda..57c9a8e 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -74,7 +74,7 @@ jobs: if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "Gitea Actions [bot]" - git config --global user.email "" + git config --global user.email "actions@yannick-weigert.de" git add lib test git commit -m "Auto-format code [skip ci]" git push origin HEAD:${{ gitea.head_ref }} @@ -109,7 +109,7 @@ jobs: GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | git config --global user.name "Gitea Actions [bot]" - git config --global user.email "" + git config --global user.email "actions@yannick-weigert.de" git add pubspec.yaml git commit -m "Updated version number [skip ci]" git push origin HEAD:${{ gitea.head_ref }} \ No newline at end of file -- 2.49.1 From 1c0796a621934f7eef3a4ba3bc9e17165f7cde74 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:13:31 +0100 Subject: [PATCH 300/316] Tried without jq --- .gitea/workflows/pull_request.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 26d7202..a68f579 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -31,11 +31,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install dependencies - run: | - apt-get update - apt-get install -y jq - - name: Install Flutter (wget) run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz -- 2.49.1 From daea282213a4b071cbb1a1d63cfd8c23cfb974a4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:13:47 +0100 Subject: [PATCH 301/316] Fixed newline --- lib/presentation/views/main_menu/group_view/groups_view.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/presentation/views/main_menu/group_view/groups_view.dart b/lib/presentation/views/main_menu/group_view/groups_view.dart index 01ddc7c..81922f5 100644 --- a/lib/presentation/views/main_menu/group_view/groups_view.dart +++ b/lib/presentation/views/main_menu/group_view/groups_view.dart @@ -11,9 +11,8 @@ import 'package:game_tracker/presentation/views/main_menu/group_view/group_profi import 'package:game_tracker/presentation/widgets/app_skeleton.dart'; import 'package:game_tracker/presentation/widgets/buttons/main_menu_button.dart'; import 'package:game_tracker/presentation/widgets/tiles/group_tile.dart'; -import 'package:provider/provider.dart'; - import 'package:game_tracker/presentation/widgets/top_centered_message.dart'; +import 'package:provider/provider.dart'; class GroupsView extends StatefulWidget { /// A view that displays a list of groups -- 2.49.1 From 09b3c45311765a6c0c3e39eb72c0bed3ecf181cb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:16:22 +0100 Subject: [PATCH 302/316] Removed jq --- .gitea/workflows/push.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 57c9a8e..b9773c5 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -13,11 +13,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install dependencies - run: | - apt-get update - apt-get install -y jq - - name: Install Flutter (wget) run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz @@ -39,11 +34,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Install dependencies - run: | - apt-get update - apt-get install -y jq - - name: Install Flutter (wget) run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz -- 2.49.1 From af37dbdb33ffe6b4c7bfe70f9dfad387710c48e5 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:27:14 +0100 Subject: [PATCH 303/316] Tried caching --- .gitea/workflows/pull_request.yaml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index a68f579..ab88e0c 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -10,15 +10,31 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Cache Flutter SDK + uses: actions/cache@v4 + with: + path: flutter + key: flutter-linux-3.38.2-stable + - name: Install Flutter (wget) run: | + if [ ! -d "flutter" ]; then wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path + rm flutter_linux_3.38.2-stable.tar.xz + fi git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH + #- name: Install Flutter (wget) + # run: | + # wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + # tar xf flutter_linux_3.38.2-stable.tar.xz + # Set Git safe directory for Flutter path + # git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + # echo "$(pwd)/flutter/bin" >> $GITEA_PATH + - name: Get dependencies run: flutter pub get -- 2.49.1 From 99a8835d2dc26004c65a59146083577b04c7a5d9 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:32:18 +0100 Subject: [PATCH 304/316] Tried caching 2 --- .gitea/workflows/pull_request.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index ab88e0c..095cddc 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -11,18 +11,21 @@ jobs: uses: actions/checkout@v4 - name: Cache Flutter SDK + id: cache-flutter uses: actions/cache@v4 with: path: flutter - key: flutter-linux-3.38.2-stable + key: ${{ runner.os }}-flutter-3.38.2-stable - - name: Install Flutter (wget) + - name: Install Flutter + if: steps.cache-flutter.outputs.cache-hit != 'true' run: | - if [ ! -d "flutter" ]; then wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz rm flutter_linux_3.38.2-stable.tar.xz - fi + + - name: Configure Flutter + run: | git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH -- 2.49.1 From 77b108cb38218219fed0e1a06d66f5beb25543cb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 15:36:43 +0100 Subject: [PATCH 305/316] Tried caching 3 --- .gitea/workflows/pull_request.yaml | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 095cddc..69708e4 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -46,18 +46,38 @@ jobs: Test: runs-on: ubuntu-latest + needs: Lint steps: - name: Checkout code uses: actions/checkout@v4 - - name: Install Flutter (wget) + - name: Cache Flutter SDK + id: cache-flutter + uses: actions/cache@v4 + with: + path: flutter + key: ${{ runner.os }}-flutter-3.38.2-stable + + - name: Install Flutter + if: steps.cache-flutter.outputs.cache-hit != 'true' run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path + rm flutter_linux_3.38.2-stable.tar.xz + + - name: Configure Flutter + run: | git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH + + #- name: Install Flutter (wget) + # run: | + # wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + # tar xf flutter_linux_3.38.2-stable.tar.xz + # Set Git safe directory for Flutter path + # git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + # echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get -- 2.49.1 From 5bd53e88c8b60885b252a1983c6f8c6ee4abef52 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 16:06:49 +0100 Subject: [PATCH 306/316] Tried caching x --- .gitea/workflows/pull_request.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 69708e4..8dee961 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -46,7 +46,6 @@ jobs: Test: runs-on: ubuntu-latest - needs: Lint steps: - name: Checkout code uses: actions/checkout@v4 -- 2.49.1 From 6bae37da12412ad0f42bb6cd314410a299327a23 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 16:11:14 +0100 Subject: [PATCH 307/316] Tried caching 5 --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 8dee961..42c717c 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -33,9 +33,9 @@ jobs: # run: | # wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz # tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path + # # Set Git safe directory for Flutter path # git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path + # # Set Flutter path # echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies -- 2.49.1 From 1272722962e0339d9a0ecc19909c2a0281952484 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 17:13:46 +0100 Subject: [PATCH 308/316] Updated version --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 42c717c..36599fa 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -12,7 +12,7 @@ jobs: - name: Cache Flutter SDK id: cache-flutter - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: flutter key: ${{ runner.os }}-flutter-3.38.2-stable -- 2.49.1 From 9e4a10e763588a641e96dd4a6c71701a8829d176 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 17:20:10 +0100 Subject: [PATCH 309/316] Removed caching again --- .gitea/workflows/pull_request.yaml | 52 ++++-------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 36599fa..f321c7d 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -10,34 +10,15 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - id: cache-flutter - uses: actions/cache@v5 - with: - path: flutter - key: ${{ runner.os }}-flutter-3.38.2-stable - - - name: Install Flutter - if: steps.cache-flutter.outputs.cache-hit != 'true' + - name: Install Flutter (wget) run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - rm flutter_linux_3.38.2-stable.tar.xz - - - name: Configure Flutter - run: | + # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - #- name: Install Flutter (wget) - # run: | - # wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - # tar xf flutter_linux_3.38.2-stable.tar.xz - # # Set Git safe directory for Flutter path - # git config --global --add safe.directory "$(pwd)/flutter" - # # Set Flutter path - # echo "$(pwd)/flutter/bin" >> $GITEA_PATH - - name: Get dependencies run: flutter pub get @@ -50,33 +31,14 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - id: cache-flutter - uses: actions/cache@v4 - with: - path: flutter - key: ${{ runner.os }}-flutter-3.38.2-stable - - - name: Install Flutter - if: steps.cache-flutter.outputs.cache-hit != 'true' + - name: Install Flutter (wget) run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - rm flutter_linux_3.38.2-stable.tar.xz - - - name: Configure Flutter - run: | - git config --global --add safe.directory "$(pwd)/flutter" - echo "$(pwd)/flutter/bin" >> $GITEA_PATH - - #- name: Install Flutter (wget) - # run: | - # wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - # tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path - # git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path - # echo "$(pwd)/flutter/bin" >> $GITEA_PATH + git config --global --add safe.directory "$(pwd)/flutter" + # Set Flutter path + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get -- 2.49.1 From 1b135857183490ef00f993d3b8031726912f54b8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 19:43:55 +0100 Subject: [PATCH 310/316] Added cache variable --- .gitea/workflows/pull_request.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index f321c7d..a44e320 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,6 +6,8 @@ on: jobs: Lint: runs-on: ubuntu-latest + env: + RUNNER_TOOL_CACHE: /toolcache steps: - name: Checkout code uses: actions/checkout@v4 @@ -27,6 +29,8 @@ jobs: Test: runs-on: ubuntu-latest + env: + RUNNER_TOOL_CACHE: /toolcache steps: - name: Checkout code uses: actions/checkout@v4 -- 2.49.1 From cc70a6d01868823f294f12b8688118e20d23128f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 22:01:41 +0100 Subject: [PATCH 311/316] Tried caching again --- .gitea/workflows/pull_request.yaml | 58 +++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index a44e320..b714056 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -8,17 +8,34 @@ jobs: runs-on: ubuntu-latest env: RUNNER_TOOL_CACHE: /toolcache + steps: - name: Checkout code uses: actions/checkout@v4 - - name: Install Flutter (wget) + - name: Cache Flutter SDK + uses: actions/cache@v4 + with: + path: flutter + key: flutter-3.38.2-linux + + - name: Cache Pub packages + uses: actions/cache@v4 + with: + path: ~/.pub-cache + key: pub-${{ hashFiles('**/pubspec.lock') }} + restore-keys: | + pub- + + - name: Install Flutter run: | - wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path + if [ ! -d "flutter" ]; then + wget --show-progress --progress=bar:force:noscroll:giga \ + https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz + fi + git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies @@ -31,21 +48,38 @@ jobs: runs-on: ubuntu-latest env: RUNNER_TOOL_CACHE: /toolcache + steps: - name: Checkout code uses: actions/checkout@v4 - - name: Install Flutter (wget) + - name: Cache Flutter SDK + uses: actions/cache@v4 + with: + path: flutter + key: flutter-3.38.2-linux + + - name: Cache Pub packages + uses: actions/cache@v4 + with: + path: ~/.pub-cache + key: pub-${{ hashFiles('**/pubspec.lock') }} + restore-keys: | + pub- + + - name: Install Flutter run: | - wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path + if [ ! -d "flutter" ]; then + wget --show-progress --progress=bar:force:noscroll:giga \ + https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz + fi + git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path - echo "$(pwd)/flutter/bin" >> $GITEA_PATH + echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies run: flutter pub get - name: Run tests - run: flutter test \ No newline at end of file + run: flutter test -- 2.49.1 From 5ff87ede713e2e684cf8a6ece120904a95b44f4f Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 22:21:36 +0100 Subject: [PATCH 312/316] Tried caching 2 --- .gitea/workflows/pull_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b714056..5e21c36 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -74,7 +74,7 @@ jobs: https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz fi - +# git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH -- 2.49.1 From 9e9223ea82a1575f1a95758dabb7df09a53680c7 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 22:22:07 +0100 Subject: [PATCH 313/316] Tried caching 2 --- .gitea/workflows/pull_request.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 5e21c36..d880bd9 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -74,7 +74,6 @@ jobs: https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz fi -# git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH -- 2.49.1 From 73071c01e92974f519528cc375a05faffc644285 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 19 Jan 2026 23:13:08 +0100 Subject: [PATCH 314/316] Removed caching --- .gitea/workflows/pull_request.yaml | 47 ++++-------------------------- .gitea/workflows/push.yaml | 4 --- 2 files changed, 6 insertions(+), 45 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index d880bd9..9ef76be 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -13,28 +13,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - uses: actions/cache@v4 - with: - path: flutter - key: flutter-3.38.2-linux - - - name: Cache Pub packages - uses: actions/cache@v4 - with: - path: ~/.pub-cache - key: pub-${{ hashFiles('**/pubspec.lock') }} - restore-keys: | - pub- - - - name: Install Flutter + - name: Install Flutter (wget) run: | - if [ ! -d "flutter" ]; then - wget --show-progress --progress=bar:force:noscroll:giga \ - https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - fi - + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH @@ -53,27 +35,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - uses: actions/cache@v4 - with: - path: flutter - key: flutter-3.38.2-linux - - - name: Cache Pub packages - uses: actions/cache@v4 - with: - path: ~/.pub-cache - key: pub-${{ hashFiles('**/pubspec.lock') }} - restore-keys: | - pub- - - - name: Install Flutter + - name: Install Flutter (wget) run: | - if [ ! -d "flutter" ]; then - wget --show-progress --progress=bar:force:noscroll:giga \ - https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - fi + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index b9773c5..8c25752 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -17,9 +17,7 @@ jobs: run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies @@ -38,9 +36,7 @@ jobs: run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies -- 2.49.1 From 76d7bcec90ad379b2bce1f02acedc41026120afb Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 19 Jan 2026 23:13:08 +0100 Subject: [PATCH 315/316] Removed caching --- .gitea/workflows/pull_request.yaml | 49 ++++-------------------------- .gitea/workflows/push.yaml | 4 --- 2 files changed, 6 insertions(+), 47 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index d880bd9..73cecc6 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,35 +6,15 @@ on: jobs: Lint: runs-on: ubuntu-latest - env: - RUNNER_TOOL_CACHE: /toolcache steps: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - uses: actions/cache@v4 - with: - path: flutter - key: flutter-3.38.2-linux - - - name: Cache Pub packages - uses: actions/cache@v4 - with: - path: ~/.pub-cache - key: pub-${{ hashFiles('**/pubspec.lock') }} - restore-keys: | - pub- - - - name: Install Flutter + - name: Install Flutter (wget) run: | - if [ ! -d "flutter" ]; then - wget --show-progress --progress=bar:force:noscroll:giga \ - https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - fi - + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH @@ -53,27 +33,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Flutter SDK - uses: actions/cache@v4 - with: - path: flutter - key: flutter-3.38.2-linux - - - name: Cache Pub packages - uses: actions/cache@v4 - with: - path: ~/.pub-cache - key: pub-${{ hashFiles('**/pubspec.lock') }} - restore-keys: | - pub- - - - name: Install Flutter + - name: Install Flutter (wget) run: | - if [ ! -d "flutter" ]; then - wget --show-progress --progress=bar:force:noscroll:giga \ - https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz - tar xf flutter_linux_3.38.2-stable.tar.xz - fi + wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + tar xf flutter_linux_3.38.2-stable.tar.xz git config --global --add safe.directory "$(pwd)/flutter" echo "$(pwd)/flutter/bin" >> $GITEA_PATH diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index b9773c5..8c25752 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -17,9 +17,7 @@ jobs: run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies @@ -38,9 +36,7 @@ jobs: run: | wget --show-progress --progress=bar:force:noscroll:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz - # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" - # Set Flutter path echo "$(pwd)/flutter/bin" >> $GITEA_PATH - name: Get dependencies -- 2.49.1 From 31ece1b32166612bf45566b016f37c43c0af6153 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 19 Jan 2026 23:15:06 +0100 Subject: [PATCH 316/316] Updated names --- .gitea/workflows/pull_request.yaml | 4 ++-- .gitea/workflows/push.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 73cecc6..5b88cdf 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -4,7 +4,7 @@ on: pull_request: jobs: - Lint: + lint: runs-on: ubuntu-latest steps: @@ -24,7 +24,7 @@ jobs: - name: Analyze Formatting run: flutter analyze lib test - Test: + test: runs-on: ubuntu-latest env: RUNNER_TOOL_CACHE: /toolcache diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 8c25752..dfcee5f 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -7,7 +7,7 @@ on: - "main" jobs: - Test: + test: runs-on: ubuntu-latest steps: - name: Checkout code @@ -26,7 +26,7 @@ jobs: - name: Run tests run: flutter test - Format: + format: runs-on: ubuntu-latest steps: - name: Checkout code @@ -71,7 +71,7 @@ jobs: - name: Verify format run: flutter analyze lib test - Update Version: + update_version: runs-on: ubuntu-latest needs: Format if: gitea.ref == 'refs/heads/development' -- 2.49.1