Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.2.8 #20

Merged
merged 22 commits into from
Dec 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cd7efae
Fix long ringtone names overflowing
AhsanSarwar45 Dec 15, 2023
1b9ef37
Merge pull request #7 from vicolo-dev/fix-audio-field-overflow
AhsanSarwar45 Dec 15, 2023
925c5c6
Update test workflow
AhsanSarwar45 Dec 15, 2023
9405b12
Add more date formats
AhsanSarwar45 Dec 15, 2023
55d646d
Merge pull request #10 from vicolo-dev/enhancement-add-date-fmts
AhsanSarwar45 Dec 15, 2023
802dad7
Add backup for settings
AhsanSarwar45 Dec 15, 2023
44bd9e6
Refactor backup implementation
AhsanSarwar45 Dec 15, 2023
55245d7
Merge pull request #15 from vicolo-dev/feature-backup
AhsanSarwar45 Dec 15, 2023
d06e1cd
Add build workflow
AhsanSarwar45 Dec 15, 2023
a39da6f
Update build workflow
AhsanSarwar45 Dec 15, 2023
67ddad8
Fix date chips error
AhsanSarwar45 Dec 16, 2023
321ccc3
Fix date chip styles
AhsanSarwar45 Dec 16, 2023
2b8582a
Fix tests for date chips
AhsanSarwar45 Dec 16, 2023
deb739c
Fix workflows
AhsanSarwar45 Dec 16, 2023
e21a74d
Fix date chips tests
AhsanSarwar45 Dec 16, 2023
3d3cb02
Merge pull request #18 from vicolo-dev/bug-date-chips-rendering
AhsanSarwar45 Dec 16, 2023
e4549e3
Add changelog labels
AhsanSarwar45 Dec 16, 2023
a42375d
Fix duplicates in vendor screen
AhsanSarwar45 Dec 16, 2023
55355f7
Merge pull request #19 from vicolo-dev/bug-duplicate-vendors
AhsanSarwar45 Dec 16, 2023
3629063
Bump pubspec version to 0.2.8+4
AhsanSarwar45 Dec 16, 2023
f8bab0d
Fix weekly schedule not getting enabled after disabling
AhsanSarwar45 Dec 16, 2023
145c5c0
Merge pull request #22 from vicolo-dev/bug-weekly-schedule
AhsanSarwar45 Dec 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add changelog labels
  • Loading branch information
AhsanSarwar45 committed Dec 16, 2023
commit e4549e3fbe3fd1677fe1bbd7af17a9bece69261f
25 changes: 24 additions & 1 deletion .github/workflows/android-release.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,6 @@ jobs:

- uses: subosito/flutter-action@v2
with:
# 11
flutter-version: "3.16.3"
channel: 'stable'
cache: true
@@ -65,6 +64,30 @@ jobs:
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
configurationJson: |
{
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>",
"categories": [
{
"title": "## 🚀 Features",
"labels": ["feature"]
},
{
"enhancements": "## ✨ Enhancements"
"labels": ["enhancement"]
},
{
"title": "## 🐛 Fixes",
"labels": ["bug"]
},
{
"key": "tests",
"title": "## 🧪 Tests",
"labels": ["test"]
},
],
}

- name: Create Github Release
uses: ncipollo/release-action@v1
4 changes: 2 additions & 2 deletions lib/settings/data/settings_schema.dart
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@ SettingGroup appSettings = SettingGroup(
(context) async {
try {
//check auto-start availability.
var test = await isAutoStartAvailable ?? false;
var test = (await isAutoStartAvailable) ?? false;
//if available then navigate to auto-start setting page.
if (test) {
await getAutoStartPermission();
@@ -136,7 +136,7 @@ SettingGroup appSettings = SettingGroup(
}
},
description:
"Enable auto start to allow alarms to go off when the app is closed",
"Some devices require Auto Start to be enabled for alarms to ring while app is closed.",
)
]),
],