diff --git a/app/build.gradle b/app/build.gradle
index b8f1de318..cffa0617f 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -32,8 +32,8 @@ android {
vectorDrawables.useSupportLibrary = true
applicationId "code.name.monkey.retromusic"
- versionCode 272
- versionName '3.0.501'
+ versionCode 273
+ versionName '3.0.511'
multiDexEnabled true
@@ -167,7 +167,6 @@ dependencies {
implementation 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5'
implementation 'com.github.jetradarmobile:android-snowfall:1.2.0'
- implementation 'com.github.javiersantos:PiracyChecker:1.2.4'
kapt 'com.github.bumptech.glide:compiler:4.8.0'
}
diff --git a/app/src/main/assets/retro-changelog.html b/app/src/main/assets/retro-changelog.html
index f29254401..1bacc4501 100644
--- a/app/src/main/assets/retro-changelog.html
+++ b/app/src/main/assets/retro-changelog.html
@@ -1 +1 @@
-
v3.0.501
Highlights
- Kotlin conversion from Good old Java
- Outline style system icons
- New Material Design principles and Guide lines
- Holiday Theme
Changelog
- By default theme will be dark
- Now you can add search app shortcut in home screen
- Last selected Lyrics options saved
- Now you can add plain text home screen widget
- Good old side navigation bar for options
- Bug report for better tracking with milestones
- Snow fall effect can be enable from other settings(Works only one normal theme)
- Click new music mix to play songs
- Gradient image option for gird list
- Clear button for playing queue
- Folder list back button
- New theme Fit
- On library click on toolbar for accessing main menu
- On home click on toolbar for accessing search
- BottomSheetDialogue is now adaptable to screens, background colour and text size
consistency.
- Removed coloured navigation bar option to making app adapt the primary colour
- Swipe up gesture for now playing removed, replaced with "tap to open", To achieve
transparent navigation bar for desired themes.
- Improved tablet UI and home screen by adding suggestions toggle banner issues.
- Improving lyrics page
- Updated image loading libraries(might loose your current artist images)
If you see entire app white or dark or black select same theme in settings to fix
FAQ's
*If you face any UI related issues you clear app data and cache, if its
not working try to
uninstall and install again.
\ No newline at end of file
+
v3.0.501
Highlights
- Kotlin conversion from Good old Java
- Outline style system icons
- New Material Design principles and Guide lines
- Holiday Theme
Changelog
- By default theme will be dark
- Now you can add search app shortcut in home screen
- Last selected Lyrics options saved
- Fonts are removed to make it fast loading
- Now you can add plain text home screen widget
- Good old side navigation bar for options
- Bug report for better tracking with milestones
- Snow fall effect can be enable from other settings(Works only one normal theme)
- Click new music mix to play songs
- Gradient image option for gird list
- Clear button for playing queue
- Folder list back button
- New theme Fit
- On library click on toolbar for accessing main menu
- On home click on toolbar for accessing search
- BottomSheetDialogue is now adaptable to screens, background colour and text size
consistency.
- Removed coloured navigation bar option to making app adapt the primary colour
- Swipe up gesture for now playing removed, replaced with "tap to open", To achieve
transparent navigation bar for desired themes.
- Improved tablet UI and home screen by adding suggestions toggle banner issues.
- Improving lyrics page
- Updated image loading libraries(might loose your current artist images)
If you see entire app white or dark or black select same theme in settings to fix
FAQ's
*If you face any UI related issues you clear app data and cache, if its
not working try to
uninstall and install again.
\ No newline at end of file
diff --git a/app/src/main/java/code/name/monkey/retromusic/ui/activities/AlbumDetailsActivity.kt b/app/src/main/java/code/name/monkey/retromusic/ui/activities/AlbumDetailsActivity.kt
index 2b854ebff..6dfd17f45 100644
--- a/app/src/main/java/code/name/monkey/retromusic/ui/activities/AlbumDetailsActivity.kt
+++ b/app/src/main/java/code/name/monkey/retromusic/ui/activities/AlbumDetailsActivity.kt
@@ -243,7 +243,7 @@ class AlbumDetailsActivity : AbsSlidingMusicPanelActivity(), AlbumDetailsContrac
.transition(RetroGlideExtension.getDefaultTransition())
.songOptions(album!!.safeGetFirstSong())
.dontAnimate()
- .into(object : RetroMusicColoredTarget(image) {
+ .into(object : RetroMusicColoredTarget(image as ImageView) {
override fun onColorReady(color: Int) {
setColors(color)
}
diff --git a/app/src/main/java/code/name/monkey/retromusic/util/PiracyCheckerUtils.java b/app/src/main/java/code/name/monkey/retromusic/util/PiracyCheckerUtils.java
deleted file mode 100644
index 842acd604..000000000
--- a/app/src/main/java/code/name/monkey/retromusic/util/PiracyCheckerUtils.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package code.name.monkey.retromusic.util;
-
-import android.content.Context;
-
-import com.github.javiersantos.piracychecker.utils.LibraryUtilsKt;
-
-public class PiracyCheckerUtils {
-
- public static String getAPKSignature(Context context) {
- return LibraryUtilsKt.getCurrentSignature(context);
- }
-
-}
\ No newline at end of file
diff --git a/app/src/main/java/code/name/monkey/retromusic/views/LyricView.java b/app/src/main/java/code/name/monkey/retromusic/views/LyricView.java
index ba73c15c7..6f29edf2a 100644
--- a/app/src/main/java/code/name/monkey/retromusic/views/LyricView.java
+++ b/app/src/main/java/code/name/monkey/retromusic/views/LyricView.java
@@ -593,8 +593,6 @@ public class LyricView extends View {
mTextPaint = new TextPaint();
mTextPaint.setDither(true);
mTextPaint.setAntiAlias(true);
- Typeface typeface = ResourcesCompat.getFont(getContext(), R.font.font);
- mTextPaint.setTypeface(typeface);
switch (mTextAlign) {
case LEFT:
diff --git a/app/src/main/res/drawable/bg_circular_top_corners.xml b/app/src/main/res/drawable/bg_circular_top_corners.xml
index bba9e2a1f..d01965cbe 100644
--- a/app/src/main/res/drawable/bg_circular_top_corners.xml
+++ b/app/src/main/res/drawable/bg_circular_top_corners.xml
@@ -1,12 +1,10 @@
+ android:color="?attr/cardBackgroundColor" />
\ No newline at end of file
diff --git a/app/src/main/res/drawable/ic_person_white_24dp.xml b/app/src/main/res/drawable/ic_person_white_24dp.xml
new file mode 100644
index 000000000..f182b8d4c
--- /dev/null
+++ b/app/src/main/res/drawable/ic_person_white_24dp.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/app/src/main/res/font/font.xml b/app/src/main/res/font/font.xml
deleted file mode 100644
index 4fe9ca2da..000000000
--- a/app/src/main/res/font/font.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/font/sans_bold.ttf b/app/src/main/res/font/sans_bold.ttf
deleted file mode 100755
index 80497666e..000000000
Binary files a/app/src/main/res/font/sans_bold.ttf and /dev/null differ
diff --git a/app/src/main/res/font/sans_regular.ttf b/app/src/main/res/font/sans_regular.ttf
deleted file mode 100755
index ab605f9e2..000000000
Binary files a/app/src/main/res/font/sans_regular.ttf and /dev/null differ
diff --git a/app/src/main/res/layout/fragment_card_player_playback_controls.xml b/app/src/main/res/layout/fragment_card_player_playback_controls.xml
index 04d94f036..3353165e1 100644
--- a/app/src/main/res/layout/fragment_card_player_playback_controls.xml
+++ b/app/src/main/res/layout/fragment_card_player_playback_controls.xml
@@ -90,7 +90,6 @@
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:ellipsize="end"
- android:fontFamily="@font/font"
android:maxLines="1"
android:textSize="16sp" />
diff --git a/app/src/main/res/layout/item_list.xml b/app/src/main/res/layout/item_list.xml
index 05fbf2adf..bfd77fccd 100755
--- a/app/src/main/res/layout/item_list.xml
+++ b/app/src/main/res/layout/item_list.xml
@@ -53,7 +53,6 @@
android:id="@+id/image_text"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:fontFamily="@font/font"
android:gravity="center"
android:maxLines="1"
android:minHeight="40dp"
@@ -82,7 +81,6 @@
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:ellipsize="end"
- android:fontFamily="@font/font"
android:maxLines="1"
android:textSize="16sp"/>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
index 52ddaf01a..1165e5426 100644
--- a/app/src/main/res/values/styles.xml
+++ b/app/src/main/res/values/styles.xml
@@ -42,7 +42,6 @@
@@ -51,7 +50,6 @@
- wrap_content
- wrap_content
- - @font/font
- bold
- center
- center
@@ -62,7 +60,6 @@
- wrap_content
- wrap_content
- - @font/font
- bold
- center
- center
@@ -70,7 +67,6 @@
@@ -111,7 +106,6 @@
diff --git a/app/src/main/res/values/styles_parents.xml b/app/src/main/res/values/styles_parents.xml
index 31cfffd5c..96ae44154 100644
--- a/app/src/main/res/values/styles_parents.xml
+++ b/app/src/main/res/values/styles_parents.xml
@@ -26,7 +26,6 @@
- @transition/grid_exit
- @transition/grid_exit
- - @font/font
diff --git a/app/src/sans/res/font/font.xml b/app/src/sans/res/font/font.xml
deleted file mode 100644
index 00bae1c33..000000000
--- a/app/src/sans/res/font/font.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/sans/res/font/product_sans_bold.ttf b/app/src/sans/res/font/product_sans_bold.ttf
deleted file mode 100755
index d847195c7..000000000
Binary files a/app/src/sans/res/font/product_sans_bold.ttf and /dev/null differ
diff --git a/app/src/sans/res/font/product_sans_regular.ttf b/app/src/sans/res/font/product_sans_regular.ttf
deleted file mode 100644
index 544857870..000000000
Binary files a/app/src/sans/res/font/product_sans_regular.ttf and /dev/null differ