Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db13ea02b6 | ||
|
|
61a44dbfa8 | ||
|
|
aaa92279ca | ||
|
|
365f9723cc |
@@ -13,8 +13,8 @@ android {
|
|||||||
applicationId "com.termux"
|
applicationId "com.termux"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode 64
|
versionCode 65
|
||||||
versionName "0.64"
|
versionName "0.65"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|||||||
5
app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
Normal file
5
app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@mipmap/ic_background"/>
|
||||||
|
<foreground android:drawable="@mipmap/ic_foreground"/>
|
||||||
|
</adaptive-icon>
|
||||||
BIN
app/src/main/res/mipmap/ic_background.png
Normal file
BIN
app/src/main/res/mipmap/ic_background.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 700 B |
BIN
app/src/main/res/mipmap/ic_foreground.png
Normal file
BIN
app/src/main/res/mipmap/ic_foreground.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
@@ -600,7 +600,7 @@ public final class TerminalView extends View {
|
|||||||
if (controlDownFromEvent) keyMod |= KeyHandler.KEYMOD_CTRL;
|
if (controlDownFromEvent) keyMod |= KeyHandler.KEYMOD_CTRL;
|
||||||
if (event.isAltPressed()) keyMod |= KeyHandler.KEYMOD_ALT;
|
if (event.isAltPressed()) keyMod |= KeyHandler.KEYMOD_ALT;
|
||||||
if (event.isShiftPressed()) keyMod |= KeyHandler.KEYMOD_SHIFT;
|
if (event.isShiftPressed()) keyMod |= KeyHandler.KEYMOD_SHIFT;
|
||||||
if (handleKeyCode(keyCode, keyMod)) {
|
if (!event.isFunctionPressed() && handleKeyCode(keyCode, keyMod)) {
|
||||||
if (LOG_KEY_EVENTS) Log.i(EmulatorDebug.LOG_TAG, "handleKeyCode() took key event");
|
if (LOG_KEY_EVENTS) Log.i(EmulatorDebug.LOG_TAG, "handleKeyCode() took key event");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -619,7 +619,7 @@ public final class TerminalView extends View {
|
|||||||
if (LOG_KEY_EVENTS)
|
if (LOG_KEY_EVENTS)
|
||||||
Log.i(EmulatorDebug.LOG_TAG, "KeyEvent#getUnicodeChar(" + effectiveMetaState + ") returned: " + result);
|
Log.i(EmulatorDebug.LOG_TAG, "KeyEvent#getUnicodeChar(" + effectiveMetaState + ") returned: " + result);
|
||||||
if (result == 0) {
|
if (result == 0) {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int oldCombiningAccent = mCombiningAccent;
|
int oldCombiningAccent = mCombiningAccent;
|
||||||
|
|||||||
Reference in New Issue
Block a user