Changelog for v1.1.0 added

appdmg build script added
This commit is contained in:
Kingkor Roy Tirtho 2022-01-27 10:49:00 +06:00
parent 4f7aed4685
commit fb083d9911
3 changed files with 40 additions and 1 deletions

View File

@ -62,7 +62,11 @@ jobs:
- run: flutter config --enable-macos-desktop
- run: flutter build macos
- run: du -sh build/macos/Build/Products/Release/spotube.app
- run: npm install -g appdmg
- run: appdmg appdmg.json build/Spotube-macos-x86_64.dmg
- uses: actions/upload-artifact@v2
with:
name: Spotube-Macos-Bundle
path: build/macos/Build/Products/Release/spotube.app
path: |
build/macos/Build/Products/Release/spotube.app
build/Spotube-macos-x86_64.dmg

View File

@ -1,3 +1,30 @@
# v1.1.0
### New
- MacOS support https://github.com/KRTirtho/spotube/pull/7
- Download currently playing track to `/home/<user>/Downloads/Spotube` (Linux, MacOS) or `C:\Users\<user>\Downloads\Spotube` (Windows)
- Play playlist from any song (index) instead of only the first track
- AlbumCard for showing album's metadata
- AlbumView aka show album tracks
- Play an album
- ArtistCard for showing artist metadata on the fly
- ArtistProfile for showing complete details of the artist
- Play artist's top tracks
- View Artist's "Fans also like" section
- Search page
- Play tracks from search result
- Click to open artist-profile/album everywhere in the application
### Improved
- UserLibrary album & artist tab
- PlaylistView simplified layout with `ListView` instead of `TableView`
- Control Theme from settings manually
- `PageWindowTitleBar` now acts as `appBar`
### Bug fixes
- Unsafe access to album art/artist/user Images with `.first` or `.last` causing accessing empty List error
- `url_launcher`'s unstable `canLaunch` method blocks OAuth login in certain *nix OSs
- Refresh token gets revoked & doesn't get renewed automatically
# v1.0.1
### Improved

8
appdmg.json Normal file
View File

@ -0,0 +1,8 @@
{
"title": "Spotube",
"icon": "assets/spotube-logo.png",
"contents": [
{ "x": 448, "y": 344, "type": "link", "path": "/Applications" },
{ "x": 192, "y": 344, "type": "file", "path": "build/macos/Build/Products/Release/spotube.app" }
]
}