Skip to content

Commit

Permalink
Merge pull request #37 from emreesen27/develop
Browse files Browse the repository at this point in the history
v1.0.1 is completed.
  • Loading branch information
emreesen27 authored Dec 8, 2024
2 parents 81dd49d + 767d766 commit a8b5f0a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
## v1.0.1-Stable (08.12.2024)
* Minor UI improvements.
* [FIX] Resolved a crash caused by releasing the media session instance multiple times.

## v1.0.0-Stable (24.11.2024)
* Stable version !
* The interface has been completely redesigned for a sleeker and more intuitive user experience.
* Performance enhancements have been implemented to ensure a smoother and faster experience.
* The music player has been improved for a better listening experience.
* Shuffle playback feature has been added for a more dynamic music experience
* Shuffle playback feature has been added for a more dynamic music experience.

## v1.0.0-Beta3 (09.10.2024)
* [FIX] The version was upgraded due to an issue in the Explode module.
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId = "com.snstudio.hyper"
minSdk = 26
targetSdk = 34
versionCode = 5
versionName = "1.0.0"
versionCode = 6
versionName = "1.0.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,15 @@ class MusicPlayerService : MediaLibraryService() {
super.onTaskRemoved(rootIntent)
stopSelf()
stopForeground(STOP_FOREGROUND_REMOVE)
player.release()
session.release()
}

override fun onGetSession(controllerInfo: MediaSession.ControllerInfo): MediaLibrarySession {
return session
}

override fun onDestroy() {
super.onDestroy()
player.release()
session.release()
super.onDestroy()
}
}
3 changes: 2 additions & 1 deletion app/src/main/res/layout/item_add_music.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
app:layout_constraintTop_toTopOf="parent" />

<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/_8sdp"
android:text="@string/search_and_download_music"
android:textAlignment="center"
android:textColor="@color/text_color"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/layout/item_highlights.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:paddingHorizontal="@dimen/_3sdp"
android:paddingVertical="@dimen/_1sdp"
android:text="@string/app_name"
android:textAlignment="center"
android:textColor="@color/text_color"
Expand Down

0 comments on commit a8b5f0a

Please sign in to comment.