Skip to content

Commit

Permalink
Merge branch 'z-huang:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrashCrafter authored Nov 25, 2023
2 parents 0dbee97 + e549420 commit 6c54062
Show file tree
Hide file tree
Showing 135 changed files with 4,781 additions and 2,887 deletions.
11 changes: 7 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ body:
id: checklist
attributes:
label: Checklist
description: You should ensure the completion of the task before proceeding to check it off the checklist. Neglecting to do so may impede the efficiency of the issue resolution process. The developer has the right to delete the issue directly if you check the list blindly.
options:
- label: I am able to reproduce the bug with the [latest DEBUG version](https://github.com/z-huang/InnerTune/actions).
- label: I am able to reproduce the bug with the [latest debug version](https://github.com/z-huang/InnerTune/actions).
required: true
- label: I've checked that there is no issue about this bug.
- label: I've checked that there is no open or closed issue about this bug.
required: true
- label: This issue contains only one bug.
required: true
Expand Down Expand Up @@ -64,7 +65,9 @@ body:
attributes:
label: Logs
description: |
If your bug includes a crash, please use `adb logcat` or other ways to provide logs.
Please use `adb logcat` or other ways to provide logs. This field is strongly recommended to be filled. Without this information, it's likely that the developer is unable to take any meaningful action or provide further assistance.
validations:
required: true

- type: input
id: app-version
Expand All @@ -73,7 +76,7 @@ body:
description: |
You can find your InnerTune version in **Settings**.
placeholder: |
Example: "0.2.1-beta"
Example: "0.5.3"
validations:
required: true

Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ body:
id: checklist
attributes:
label: Checklist
description: You should ensure the completion of the task before proceeding to check it off the checklist. Neglecting to do so may impede the efficiency of the issue resolution process. The developer has the right to delete the issue directly if you check the list blindly.
options:
- label: I've checked that there is no other issue about this feature request.
required: true
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@

A Material 3 YouTube Music client for Android

[![Latest release](https://img.shields.io/github/v/release/z-huang/InnerTune?include_prereleases)](https://github.com/z-huang/music/releases)
[![License](https://img.shields.io/github/license/z-huang/InnerTune)](https://www.gnu.org/licenses/gpl-3.0)
[![Downloads](https://img.shields.io/github/downloads/z-huang/InnerTune/total)](https://github.com/z-huang/InnerTune/releases)

[<img src="https://github.com/machiav3lli/oandbackupx/blob/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png" alt="Get it on GitHub" height="80">](https://github.com/z-huang/InnerTune/releases/latest)
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/packages/com.zionhuang.music)
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" height="80">](https://apt.izzysoft.de/fdroid/index/apk/com.zionhuang.music)

[![Latest release](https://img.shields.io/github/v/release/z-huang/InnerTune?include_prereleases)](https://github.com/z-huang/music/releases)
[![License](https://img.shields.io/github/license/z-huang/InnerTune)](https://www.gnu.org/licenses/gpl-3.0)
[![Downloads](https://img.shields.io/github/downloads/z-huang/InnerTune/total)](https://github.com/z-huang/InnerTune/releases)
[Compare versions](https://github.com/z-huang/InnerTune/wiki/App-Versions)

## Features

Expand All @@ -21,6 +23,7 @@ A Material 3 YouTube Music client for Android
- Library management
- Cache and download songs for offline playback
- Synchronized lyrics
- Lyrics translator (experimental)
- Skip silence
- Audio normalization
- Adjust tempo/pitch
Expand Down
10 changes: 6 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,18 @@ android {
applicationId = "com.zionhuang.music"
minSdk = 24
targetSdk = 33
versionCode = 17
versionName = "0.5.1"
versionCode = 19
versionName = "0.5.3"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
resValue("string", "app_name", "InnerTune")
}
debug {
applicationIdSuffix = ".debug"
resValue("string", "app_name", "InnerTune Debug")
}
}
flavorDimensions += "version"
Expand Down Expand Up @@ -107,6 +105,7 @@ dependencies {
implementation(libs.compose.ui.tooling)
implementation(libs.compose.animation)
implementation(libs.compose.animation.graphics)
implementation(libs.compose.reorderable)

implementation(libs.viewmodel)
implementation(libs.viewmodel.compose)
Expand Down Expand Up @@ -145,6 +144,9 @@ dependencies {
"fullImplementation"(libs.firebase.crashlytics)
"fullImplementation"(libs.firebase.config)
"fullImplementation"(libs.firebase.perf)
"fullImplementation"(libs.mlkit.language.id)
"fullImplementation"(libs.mlkit.translate)
"fullImplementation"(libs.opencc4j)

implementation(libs.timber)
}
Loading

0 comments on commit 6c54062

Please sign in to comment.