From 8977a3739e61a5bc91a07e64f41fdd2c8a54fa3d Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:12:18 +0530 Subject: [PATCH 1/8] fix: flutter ci to ignore irrelevant files --- .github/workflows/flutterci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 047ad0bf..41691f54 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -5,11 +5,14 @@ on: branches: - main - reports + paths: + - '!**.md' pull_request: branches: - main - reports - + paths: + - '!**.md' jobs: build: runs-on: ubuntu-latest From 94ad82d6163b7049db7ab8bdf5ddf55ae95b3700 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:37:01 +0530 Subject: [PATCH 2/8] fixes CI to ignore for files with .md ext --- .github/workflows/flutterci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 047ad0bf..6d5bbe96 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,14 +2,19 @@ name: Flutter CI on: push: + paths: + - '!**.md' + branches: - main - reports pull_request: + + paths: + - '!**.md' branches: - main - reports - jobs: build: runs-on: ubuntu-latest From fda4dbcb303aa5dc5a18e72bef735e99ec973060 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:44:44 +0530 Subject: [PATCH 3/8] tabs error fix --- .github/workflows/flutterci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 6d5bbe96..36d9c0ad 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,16 +2,14 @@ name: Flutter CI on: push: - paths: - - '!**.md' - + paths: + - '!**.md' branches: - main - reports pull_request: - - paths: - - '!**.md' + paths: + - '!**.md' branches: - main - reports From 00eab08a60069894931da2d91a0badd767af70aa Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:56:11 +0530 Subject: [PATCH 4/8] some fix --- .github/workflows/flutterci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 36d9c0ad..27e8e6a8 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -2,14 +2,14 @@ name: Flutter CI on: push: - paths: - - '!**.md' + paths-ignore: + - '**.md' branches: - main - reports pull_request: - paths: - - '!**.md' + paths-ignore: + - '**.md' branches: - main - reports From cfd28fed0bdd40380986cf25d5ecc223a9ce7d4c Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:19:45 +0530 Subject: [PATCH 5/8] also ignore other unrelated files --- .github/workflows/flutterci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 27e8e6a8..41716eb3 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,12 +4,16 @@ on: push: paths-ignore: - '**.md' + - '.vscode' + - 'LICENSE' branches: - main - reports pull_request: paths-ignore: - '**.md' + - '.vscode' + - 'LICENSE' branches: - main - reports From c353bdfc378f320f2055e876f8cf4f978118aa36 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:45:31 +0530 Subject: [PATCH 6/8] fix .vscode ignore --- .github/workflows/flutterci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 41716eb3..81d64261 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,7 +4,7 @@ on: push: paths-ignore: - '**.md' - - '.vscode' + - '.vscode/' - 'LICENSE' branches: - main @@ -12,7 +12,7 @@ on: pull_request: paths-ignore: - '**.md' - - '.vscode' + - '.vscode/' - 'LICENSE' branches: - main From 9942fa6fcfe68f4688da4928153615a3f6ce7295 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 12:49:24 +0530 Subject: [PATCH 7/8] fix .vscode --- .github/workflows/flutterci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flutterci.yml b/.github/workflows/flutterci.yml index 81d64261..d64d4de0 100644 --- a/.github/workflows/flutterci.yml +++ b/.github/workflows/flutterci.yml @@ -4,7 +4,7 @@ on: push: paths-ignore: - '**.md' - - '.vscode/' + - '.vscode/**' - 'LICENSE' branches: - main @@ -12,7 +12,7 @@ on: pull_request: paths-ignore: - '**.md' - - '.vscode/' + - '.vscode/**' - 'LICENSE' branches: - main From 2d815572b7cb79827e624edbe86b8eab11878985 Mon Sep 17 00:00:00 2001 From: Shubham Ingale <77089227+SGI-CAPP-AT2@users.noreply.github.com> Date: Fri, 3 Jan 2025 13:03:31 +0530 Subject: [PATCH 8/8] 2 changes --- README.md | 2 ++ lib/main.dart | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 705c7bf0..498001b1 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ [![Slack](https://img.shields.io/badge/chat-on_slack-purple.svg?style=for-the-badge&logo=slack)](https://slackinvite.ccextractor.org/) +# also change +
Table of Contents diff --git a/lib/main.dart b/lib/main.dart index a88ff580..1490e7b6 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -4,6 +4,8 @@ import 'package:taskwarrior/app/utils/app_settings/app_settings.dart'; import 'package:taskwarrior/app/utils/permissions/permissions_manager.dart'; import 'app/routes/app_pages.dart'; +// CHANGE + void main() async { WidgetsFlutterBinding.ensureInitialized(); await AppSettings.init();