Skip to content

Commit

Permalink
Release tag: beta_v10.9
Browse files Browse the repository at this point in the history
Signed-off-by: sunilpaulmathew <sunil.kde@gmail.com>
  • Loading branch information
sunilpaulmathew committed Apr 25, 2020
1 parent a321af0 commit a0a534a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to the <strong>beta</strong> development channel of SmartPack-Kernel Man
## Download
[<img src="https://i.ibb.co/q0mdc4Z/get-it-on-github.png"
alt=""
height="80">](https://github.com/SmartPack/SmartPack-Kernel-Manager/releases/download/v10.8/com.smartpack.kernelmanager-v10.8-release.apk)
height="80">](https://github.com/SmartPack/SmartPack-Kernel-Manager/releases/download/v10.9/com.smartpack.kernelmanager-v10.9-release.apk)

## Features
* Almost all the features available in Kernel Adiutor.
Expand Down Expand Up @@ -59,6 +59,10 @@ If you like to appreciate my work, please consider donating to me (either via [P

* [Kernel Adiutor](https://github.com/Grarak/KernelAdiutor)

#### John Wu

* [libsu](https://github.com/topjohnwu/libsu), libsu

#### Chris Renshaw

* [Auto-flash](https://github.com/osm0sis)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId "com.smartpack.kernelmanager"
minSdkVersion 21
targetSdkVersion 29
versionCode 107
versionName "10.8"
versionCode 108
versionName "10.9"
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class AboutFragment extends RecyclerViewFragment {
private static final LinkedHashMap<String, String> sTranslations = new LinkedHashMap<>();

static {
sCredits.put("libsu,topjohnwu", "https://github.com/topjohnwu");
sCredits.put("Spectrum,Joe Maples", "https://github.com/frap129/spectrum");
sCredits.put("AndroidX,Google", "https://developer.android.com/jetpack/androidx");
sCredits.put("NavigationView,Google", "https://developer.android.com/reference/com/google/android/material/navigation/NavigationView");
Expand Down Expand Up @@ -234,6 +235,9 @@ private void librariesInit(List<RecyclerViewItem> items) {
for (final String lib : sCredits.keySet()) {
DescriptionView descriptionView = new DescriptionView();
switch (lib.split(",")[1]) {
case "topjohnwu":
descriptionView.setDrawable(getResources().getDrawable(R.drawable.ic_topjohnwu));
break;
case "Joe Maples":
descriptionView.setDrawable(getResources().getDrawable(R.drawable.ic_frap129));
break;
Expand Down
Binary file added app/src/main/res/drawable/ic_topjohnwu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions change-logs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change-logs

## 106. April 25, 2020
*Release-tag: v10.9*<br>
Largely improved manual flashing (includes fix for syntax error). Added Korean translations (Credits: @SmgKhOaRn). Miscellaneous changes.

## 105. April 23, 2020
*Release-tag: v10.8*<br>
Main: Migrated to libsu (Credits: @Lennoard). SmartPack: Added brand new Flashing view. Run Shell Command & Script Manager: Also display stderr. Miscellaneous changes.
Expand Down

0 comments on commit a0a534a

Please sign in to comment.