From 05bb399893994d6cd596687fa7b4fedc294ef2b4 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 17 Jan 2021 19:40:29 +0200 Subject: [PATCH 1/3] terminal-view: fix array indexing --- terminal-view/src/main/java/com/termux/view/TerminalView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminal-view/src/main/java/com/termux/view/TerminalView.java b/terminal-view/src/main/java/com/termux/view/TerminalView.java index 43392523..41fe31da 100644 --- a/terminal-view/src/main/java/com/termux/view/TerminalView.java +++ b/terminal-view/src/main/java/com/termux/view/TerminalView.java @@ -1547,8 +1547,8 @@ public final class TerminalView extends View { }; propsFile = new File(possiblePropLocations[0]); - int i = 1; - while (!propsFile.exists() && i <= possiblePropLocations.length) { + int i = 0; + while (!propsFile.exists() && i < possiblePropLocations.length) { propsFile = new File(possiblePropLocations[i]); i += 1; } From 92570bee06fc86573354d5c1f0e3eb61d7f0d864 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 17 Jan 2021 19:45:19 +0200 Subject: [PATCH 2/3] version 0.106 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 7eaad417..591d83ea 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,8 +17,8 @@ android { applicationId "com.termux" minSdkVersion project.properties.minSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger() - versionCode 105 - versionName "0.105" + versionCode 106 + versionName "0.106" externalNativeBuild { ndkBuild { From 32c3ffd57b3a9042d2083e030af1c583c77a2180 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sun, 17 Jan 2021 20:01:05 +0200 Subject: [PATCH 3/3] readme: still need to clarify that app is "not maintained" Please note that I do not review changes made by project collaborators. Before submitting changes to branch 'master' ensure they are working properly. I may not find the issue and fix it in time, like in case with v0.105 release. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3cf831b3..8f43c191 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,15 @@ Note that this repository is for the app itself (the user interface and the terminal emulation). For the packages installable inside the app, see [termux/termux-packages](https://github.com/termux/termux-packages) +*** + +**@termux is looking for Termux Application maintainer for implementing new features, +fixing bugs and reviewing pull requests since current one (@fornwall) is inactive.** + +Issue https://github.com/termux/termux-app/issues/1072 needs extra attention. + +*** + ## Installation Termux application can be obtained from: