From b42ec86e231a7424b5464b783235f7926f7a98a1 Mon Sep 17 00:00:00 2001 From: Mandresy Randrianarinjaka Date: Thu, 6 Feb 2025 15:49:24 +0300 Subject: [PATCH 1/2] chore: Update changelog --- .gitea/workflows/versioning.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/versioning.yml b/.gitea/workflows/versioning.yml index d8c87c7..eae654c 100644 --- a/.gitea/workflows/versioning.yml +++ b/.gitea/workflows/versioning.yml @@ -158,23 +158,23 @@ jobs: echo "${FEATURES:-No features found.}" echo "" echo "### Bug Fixes" - BUG_FIXES=$(echo "$COMMITS" | grep "fix:" | sed -E 's/^([a-f0-9]+) fix: /- (#\1) /g') + BUG_FIXES=$(echo "$COMMITS" | grep "fix:" || true | sed -E 's/^([a-f0-9]+) fix: /- (#\1) /g') echo "${BUG_FIXES:-No bug fixes found.}" echo "" echo "### Refactors" - REFACTOR=$(echo "$COMMITS" | grep "refactor:" | sed -E 's/^([a-f0-9]+) refactor: /- (#\1) /g') + REFACTOR=$(echo "$COMMITS" | grep "refactor:" || true | sed -E 's/^([a-f0-9]+) refactor: /- (#\1) /g') echo "${REFACTOR:-No refactors found.}" echo "" echo "### Style Changes" - STYLE=$(echo "$COMMITS" | grep "style:" | sed -E 's/^([a-f0-9]+) style: /- (#\1) /g') + STYLE=$(echo "$COMMITS" | grep "style:" || true | sed -E 's/^([a-f0-9]+) style: /- (#\1) /g') echo "${STYLE:-No style changes found.}" echo "" echo "### Chores" - CHORES=$(echo "$COMMITS" | grep "chore:" | sed -E 's/^([a-f0-9]+) chore: /- (#\1) /g') + CHORES=$(echo "$COMMITS" | grep "chore:" || true | sed -E 's/^([a-f0-9]+) chore: /- (#\1) /g') echo "${CHORES:-No chores found.}" echo "" echo "### Miscellaneous" - MISC=$(echo "$COMMITS" | grep -v -E "breaking:|feat:|fix:|refactor:|style:|chore:" | sed -E 's/^([a-f0-9]+) /- (#\1) /g') + MISC=$(echo "$COMMITS" | grep -v -E "breaking:|feat:|fix:|refactor:|style:|chore:" || true | sed -E 's/^([a-f0-9]+) /- (#\1) /g') echo "${MISC:-No miscellaneous changes found.}" echo "" cat "$CHANGELOG_FILE" From 7faf2f5d8671b34bdb65684a9c8f063d4106427a Mon Sep 17 00:00:00 2001 From: Mandresy Randrianarinjaka Date: Thu, 6 Feb 2025 15:49:44 +0300 Subject: [PATCH 2/2] chore: Remove comment --- lib/main.dart | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 4f46e62..7e8674b 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -48,19 +48,6 @@ class _MyHomePageState extends State { ), body: Center( child: Column( - // Column is also a layout widget. It takes a list of children and - // arranges them vertically. By default, it sizes itself to fit its - // children horizontally, and tries to be as tall as its parent. - // - // Column has various properties to control how it sizes itself and - // how it positions its children. Here we use mainAxisAlignment to - // center the children vertically; the main axis here is the vertical - // axis because Columns are vertical (the cross axis would be - // horizontal). - // - // TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint" - // action in the IDE, or press "p" in the console), to see the - // wireframe for each widget. mainAxisAlignment: MainAxisAlignment.center, children: [ const Text(