Skip to content

Commit

Permalink
Bump version to 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anandnet committed Jan 11, 2024
1 parent 2ff00ab commit d4635ef
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 11 deletions.
24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 1.8.0
* Added feature to switch to Bottom Navigation Bar (Major Change) #95 #58
* Synced Lyrics feature added #66 #116 #98 (Data provided by lrclib.net)
* Added x button to clear search query #92
* Added Search history #128
* Sleep Timer feature added #118 #109
* Added feature to ensure offline availability of bookmarked Album/playlists #113
* Highlight for now playing song in playlists #97
* Changes made for remember last session selection for loop mode #127
* Added functionality to remove invalid char from file name to fix issue #129
* Downloaded thumbnail support for downloaded song
* Added option to set no of homescreen content (approx)
* Fixed app flagged as TROJEN in virustotal #122
* Fixed song album id issue for songs in album
* Fixed playlist sort issue
* Fixed null album issue
* Improved app animation #83
* fixed thumbnail url issue
* New language support Interlingua, Esperanto and updated other langs thanks to @softinterlingua, @Kjev666, @maboroshin, @trunars, @gallegonovato, @nexiRS, @WaldiSt, @MattSolo451, @


## 1.7.0
* Added feature to download whole playlist/album #79 & #100
* Added Replay on previous feature #101
Expand All @@ -6,9 +27,6 @@
* Fixed (increased) Lockscreen's album art image quality #96
* Translation completed Azerbaijani,Indonesian,Japanese,Portuguese,Chinese and some correction in other lang translation. Thanks to @Qaz-6,@Hada45,@maboroshin,@S4r4h-O,@raymond-nee,@siggi1984,@PonyJohnny,@MattSolo451,@hoabuiyt




## 1.6.0
* App language support #21 #54
* Selective song download feature #40
Expand Down
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ An app for music streaming made with Flutter(Currently support Android only).
* Language support
* Skip silence
* Dynamic Theme
* Flexibility to switch between Bottom & Side Nav bar
* Equalizer support
* Android Auto support
* Lyrics support
* Synced & Plain Lyrics support
* Sleep Timer
* No Advertisment
* No Login required
* Piped playlist integration
Expand Down Expand Up @@ -59,19 +61,26 @@ This project is not sponsored or affiliated with, funded, authorized, endorsed b
Any Song, content, trademark used in this app are intellectual property of their respective owners.
Harmony music is not responsible for any infringement of copyright or other intellectual property rights that may result
from the use of the songs and other content available through this app.
This Software is released "as-is", without any warranty, responsibility or liability.
In no event shall the Author of this Software be liable for any special, consequential,
incidental or indirect damages whatsoever (including, without limitation, any
other pecuniary loss) arising out of the use of inability to use this product, even if
Author of this Sotware is aware of the possibility of such damages and known defect.
```

# Learning References & Credits
<a href = 'https://docs.flutter.dev/'>Flutter documentation</a> - a best guide to learn cross platform Ui/app developemnt<br/>
<a href = 'https://suragch.medium.com/'>Suragch</a>'s Article related to Just audio & state management,architectural style<br/>
<a href = 'https://github.com/sigma67'>sigma67</a>'s unofficial ytmusic api project<br/>
App UI inspired by <a href = 'https://github.com/vfsfitvnm'>vfsfitvnm</a>'s ViMusic<br/>
Synced lyrics provided by <a href = 'https://lrclib.net' >LRCLIB</a> <br/>

#### Major Packages used
* just_audio: ^0.9.32 - provide audio player to play song
* audio_service: ^0.18.9 - manage background music & platform audio services
* get: ^4.6.5 - package for high-performance state management, intelligent dependency injection, and route management
* youtube_explode_dart: ^1.12.4 - Third party package to provide song url
* just_audio: ^0.9.35 - provide audio player to play song
* audio_service: ^0.18.12 - manage background music & platform audio services
* get: ^4.6.6 - package for high-performance state management, intelligent dependency injection, and route management
* youtube_explode_dart: ^2.0.2 - Third party package to provide song url
* hive: ^2.2.3 - offline db used
* hive_flutter: ^1.1.0

Expand Down
11 changes: 11 additions & 0 deletions fastlane/metadata/android/changelogs/12.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- Added feature to switch to Bottom Navigation Bar (Major Change)
- Synced Lyrics feature added (Data provided by lrclib.net)
- Added x button to clear search query
- Added Search history
- Sleep Timer feature added
- Added feature to ensure offline availability of bookmarked Album/playlists
- Highlight for now playing song in playlists
- Changes made for remember last session selection for loop mode
- Added functionality to remove invalid char from file name to fix issue
- Downloaded thumbnail support for downloaded song
- Added option to set no of homescreen content (approx)
4 changes: 3 additions & 1 deletion fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@
* Language support
* Skip silence
* Dynamic Theme
* Flexibility to switch between Bottom & Side Nav bar
* Equalizer support
* Lyrics support
* Synced & Plain Lyrics support
* Sleep Timer
* Android Auto support
* No Advertisment
* No Login required
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/screens/Settings/settings_screen_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SettingsScreenController extends GetxController {
final downloadingFormat = "".obs;
final hideDloc = true.obs;
final isBottomNavBarEnabled = false.obs;
final currentVersion = "V1.7.0";
final currentVersion = "V1.8.0";

@override
void onInit() {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.7.0+11
version: 1.8.0+12

environment:
sdk: ">=3.1.5 <4.0.0"
Expand Down

0 comments on commit d4635ef

Please sign in to comment.