Skip to content

Commit

Permalink
chore(main): release 1.7.0 (#861)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored and Feichtmeier committed Aug 19, 2024
1 parent 4c398e1 commit 99f9cee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
FLUTTER_VERSION: '3.24.x'
MACOS_APP_RELEASE_PATH: build/macos/Build/Products/Release

jobs:
build_and_upload_macos_dmg:
Expand Down Expand Up @@ -52,6 +53,8 @@ jobs:
security import certificate.p12 -k build.keychain -P $MACOS_CERTIFICATE_PWD -T /usr/bin/codesign
echo "Set Key Partition"
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $MACOS_CERTIFICATE_PWD build.keychain
echo "Find Identity"
security find-identity
echo "Sign the app"
/usr/bin/codesign --force --deep -s $MACOS_IDENTITY ./$MACOS_APP_RELEASE_PATH/musicpod.app
- name: Create a dmg
Expand All @@ -73,11 +76,13 @@ jobs:
--hdiutil-quiet \
"musicpod.dmg" \
"musicpod.app"
ls -l
pwd
- name: Append Asset
if: steps.createdmg.outcome == 'success'
uses: AButler/[email protected]
with:
files: "$MACOS_APP_RELEASE_PATH/musicpod.app"
files: ${{ env.MACOS_APP_RELEASE_PATH }}/musicpod.dmg
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref_name }}

Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.7.0](https://github.com/ubuntu-flutter-community/musicpod/compare/1.6.0...v1.7.0) (2024-08-19)


### Features

* improved patch notes dialog and single podcast refreshing ([#864](https://github.com/ubuntu-flutter-community/musicpod/issues/864)) ([02d92e9](https://github.com/ubuntu-flutter-community/musicpod/commit/02d92e943af1b69e4c772316e64320c11a748f11))
* update Italian language ([#859](https://github.com/ubuntu-flutter-community/musicpod/issues/859)) ([9019bb2](https://github.com/ubuntu-flutter-community/musicpod/commit/9019bb2cb5d519e57ce7588d9bdd54b0b831872f))


### Bug Fixes

* init radio model before tapping on a tag ([#862](https://github.com/ubuntu-flutter-community/musicpod/issues/862)) ([3754781](https://github.com/ubuntu-flutter-community/musicpod/commit/3754781b86cefb1720f5fc62b6ec4d02ed1c06b6))
* some title of radio is html format, need to convert to human readable format ([#870](https://github.com/ubuntu-flutter-community/musicpod/issues/870)) ([4c398e1](https://github.com/ubuntu-flutter-community/musicpod/commit/4c398e1d7904d2e837cb2fc1c6160539f2bce236)), closes [#866](https://github.com/ubuntu-flutter-community/musicpod/issues/866)

## 1.6.0 (2024-08-16)

## What's Changed
Expand Down
1 change: 1 addition & 0 deletions lib/app/app_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class AppModel extends SafeChangeNotifier {

int? getExtendedVersionNumber(String? version) {
if (version == null) return null;
version = version.replaceAll('v', '');
List versionCells = version.split('.');
versionCells = versionCells.map((i) => int.parse(i)).toList();
return versionCells[0] * 100000 + versionCells[1] * 1000 + versionCells[2];
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: musicpod
description: Ubuntu music, radio and podcast player.
version: 1.6.0
version: 1.7.0

publish_to: "none"

Expand Down

0 comments on commit 99f9cee

Please sign in to comment.