Skip to content

Commit

Permalink
Version 3.2.4 (Timestamp step setting, LRC creator metadata, crash fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spikatrix committed Jul 22, 2020
1 parent 96d3f26 commit eb5adb7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# LRC Editor   [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![Version: 3.2.3](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=3.2.3)
# LRC Editor   [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![Version: 3.2.4](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=3.2.3)

<img src="https://i.stack.imgur.com/KSovE.png" alt="LRC Editor App Icon" align="left" style="margin: 10px 20px 10px 10px; border-radius: 15%; box-shadow: 0 6px 20px 2px black">

Expand Down Expand Up @@ -27,8 +27,7 @@ You can then use the LRC files in Karaoke applications, Music players etc that s

## Screenshots

![](https://lh3.googleusercontent.com/R-6CVuGEe2q8FD60-aVjd87ZNIiHL0Kzl9AWqNN8k-uHoJFlAmHZHgW0EDiga3cwzZ3-=w720-h310-rw) &nbsp; &nbsp;
![](https://lh3.googleusercontent.com/_gCKRLjlcvNC-DzbcE43aAYMSnWxFbIfQctuhm14RUcVnHlgfeko71QjaSp-UsY2sQ=w720-h310-rw)
<img src="https://raw.githubusercontent.com/Spikatrix/LRC-Editor/master/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png" height="300px" /> &nbsp; &nbsp; <img src="https://raw.githubusercontent.com/Spikatrix/LRC-Editor/master/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png" height="300px" />

More screenshots are available in the [Google Play Store page][play_store_page]

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.cg.lrceditor"
minSdkVersion 21
targetSdkVersion 29
versionCode 51
versionName "3.2.3"
versionCode 52
versionName "3.2.4"

// Targeting Android 11 (API level 30) or above might result in the app not being able
// to read/write to storage because of the "Scoped Storage" enforcement
Expand Down
6 changes: 6 additions & 0 deletions app/src/main/java/com/cg/lrceditor/SettingsActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ public void adjustTimestampStep(View v) {
String.format(Locale.getDefault(), "%d ms", preferences.getInt(Constants.TIMESTAMP_STEP_AMOUNT_PREFERENCE, 100)));

ImageButton increase = view.findViewById(R.id.increase_button);
if (isDarkTheme) {
increase.setImageDrawable(getDrawable(R.drawable.ic_add_light));
}
increase.setOnClickListener(view1 -> {
String timestampStepVal = timestamp.getText().toString();
int value = Integer.parseInt(timestampStepVal.substring(0, timestampStepVal.length() - 3));
Expand All @@ -175,6 +178,9 @@ public void adjustTimestampStep(View v) {
});

ImageButton decrease = view.findViewById(R.id.decrease_button);
if (isDarkTheme) {
decrease.setImageDrawable(getDrawable(R.drawable.ic_minus_light));
}
decrease.setOnClickListener(view1 -> {
String timestampStepVal = timestamp.getText().toString();
int value = Integer.parseInt(timestampStepVal.substring(0, timestampStepVal.length() - 3));
Expand Down
Binary file modified fastlane/metadata/android/en-US/images/phoneScreenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fastlane/metadata/android/en-US/images/phoneScreenshots/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit eb5adb7

Please sign in to comment.