mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
Changelog for v1.1.0 added
appdmg build script added
This commit is contained in:
parent
4f7aed4685
commit
fb083d9911
6
.github/workflows/flutter-build.yml
vendored
6
.github/workflows/flutter-build.yml
vendored
@ -62,7 +62,11 @@ jobs:
|
|||||||
- run: flutter config --enable-macos-desktop
|
- run: flutter config --enable-macos-desktop
|
||||||
- run: flutter build macos
|
- run: flutter build macos
|
||||||
- run: du -sh build/macos/Build/Products/Release/spotube.app
|
- 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
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: Spotube-Macos-Bundle
|
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
|
||||||
|
27
CHANGELOG.md
27
CHANGELOG.md
@ -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
|
# v1.0.1
|
||||||
|
|
||||||
### Improved
|
### Improved
|
||||||
|
8
appdmg.json
Normal file
8
appdmg.json
Normal 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" }
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user