Compare commits

...

2 Commits

Author SHA1 Message Date
zarzet 97e366b5ef chore: bump version to 1.0.2 2026-01-01 20:13:47 +07:00
zarzet 3a4019a55e fix: trigger release workflow directly from auto-release 2026-01-01 20:12:53 +07:00
4 changed files with 13 additions and 6 deletions
+8 -1
View File
@@ -41,12 +41,13 @@ jobs:
echo "changed=false" >> $GITHUB_OUTPUT
fi
create-tag-and-release:
create-tag-and-trigger-release:
needs: check-version
if: needs.check-version.outputs.version_changed == 'true'
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
steps:
- name: Checkout repository
@@ -60,3 +61,9 @@ jobs:
git push origin ${{ needs.check-version.outputs.new_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Release workflow
run: |
gh workflow run release.yml -f version=${{ needs.check-version.outputs.new_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+2 -2
View File
@@ -132,11 +132,11 @@ class SettingsScreen extends ConsumerWidget {
ListTile(
leading: Icon(Icons.info, color: colorScheme.primary),
title: const Text('About'),
subtitle: const Text('SpotiFLAC v1.0.1'),
subtitle: const Text('SpotiFLAC v1.0.2'),
onTap: () => showAboutDialog(
context: context,
applicationName: 'SpotiFLAC',
applicationVersion: '1.0.1',
applicationVersion: '1.0.2',
applicationLegalese: '© 2024 SpotiFLAC',
),
),
+2 -2
View File
@@ -139,11 +139,11 @@ class _SettingsTabState extends ConsumerState<SettingsTab> with AutomaticKeepAli
ListTile(
leading: Icon(Icons.info, color: colorScheme.primary),
title: const Text('About'),
subtitle: const Text('SpotiFLAC v1.0.1'),
subtitle: const Text('SpotiFLAC v1.0.2'),
onTap: () => showAboutDialog(
context: context,
applicationName: 'SpotiFLAC',
applicationVersion: '1.0.1',
applicationVersion: '1.0.2',
applicationLegalese: '© 2024 SpotiFLAC',
),
),
+1 -1
View File
@@ -1,7 +1,7 @@
name: spotiflac_android
description: Download Spotify tracks in FLAC from Tidal, Qobuz & Amazon Music
publish_to: 'none'
version: 1.0.1+2
version: 1.0.2+3
environment:
sdk: ^3.10.0