Releases: termux/termux-app
v0.119.0-beta.1
v0.119.0-beta.1 - 2024-06-18 00.11
Commit history: v0.118.0...v0.119.0-beta.1
NOTICE: Use apt-android-7 variant for Android >= 7 and apt-android-5 variant for Android 5/6 and do not mix. Use universal variant if device/Android architecture is unknown. Basically, use termux-app_v0.119.0-beta.1+apt-android-7-github-debug_universal.apk for Android >= 7 if in doubt. Check install and GitHub install source docs for more info.
v0.118.1
v0.118.1 - 2024-06-18 00.05
Commit history: v0.118.0...v0.118.1
Changelog
Added
-
Add support for Termux bootstrap second stage by running
termux-bootstrap-second-stage.sh. (2c82a558) -
Request
SET_ALARMpermission to allow broadcasting an intent to set an alarm or timer in an alarm clock app. Closes #3990. (9735ae28)
Changed
-
Update support and donate users to
termux.devdomain. (2a008d83) -
Use black or white cursor color based on terminal background instead of always white if
colors.propertiesdidn't have cursor color set. Credit for algorithm link belong to @Jamie-Landeg-Jones. Closes #2653. (160ab68e) -
Update
WcWidth.javato Unicode15.0.0. (63833d9c,fc8245bb,6ece249c)
Fixed
-
Limit max combining characters in TerminalRow to
15characters to prevent buffer overflows. Closes #3839. (0813e463) -
Fix shared terminal transcript joining back lines. (
c9e2a75e) -
Ensure CSI parameter value is not greater than
9999as pervt510. (9433f107) -
Fix CSI parameters parsing like for SGR sequences that start with a
;or have sequential;characters. Credits for finding the issue belongs to @Screwtapello. Closes #2272, Closes mawww/kakoune#4339. (fbf55fd4) -
Fix message dialog button text not showing in day mode due to white text. (
903f2496) -
Fix wrong input type selected if toolbar is switched back to extra keys after tapping terminal if in text input mode. Closes #2503. (
2dc7381b) -
Change extra keys and terminal input view background to black. Required for day/night theming and should fix issues where both views were translucent with light terminal color themes. (
e55639e4) -
Fix issue where a colour tint/highlight would be added to the terminal on activity re-creation. (
087da0b5) -
Fix termux app restarting on samsung dex version
< 3.0when switching modes. (d7f22982) -
Fix
ArrayIndexOutOfBoundsExceptionwhen setting zero width terminal character. (f222315b) -
Log exception instead of crashing app on
NumberFormatExceptionfor invalid termcap/terminfo string requested. (e11bcfc9) -
Fix
CSIDeletePsColumn(s) (DECDC). (af5fef4c) -
Fix
ArrayIndexOutOfBoundsExceptionthrown because length was less than 0 when selecting text from terminal buffer. (03e31d19) -
Fix issue where menu wouldn't show when text on bottom row of terminal was selected. Closes #2233. (
d24a04a1)
v0.118.0
[v0.118.0] - 2022-01-07 22.35
Changelog
Added
-
Allow users to directly open URL links in terminal transcript when clicked or tapped. The user can add
terminal-onclick-url-open=trueentry totermux.propertiesfile to enable opening of URL links in terminal transcript when clicked or tapped. The default value isfalse. Runningtermux-reload-settingscommand will also update the behaviour instantaneously if changed. Implemented by @trygveaa in #2146. (af16e79b,1a5a66d0) -
Allow users to disable auto capitalization of extra keys text. The user can add
extra-keys-text-all-caps=falseentry totermux.propertiesfile to disable auto capitalization of extra keys text for both normal and popup buttons. The default value istrue. Runningtermux-reload-settingscommand will also update the behaviour instantaneously if changed. (5c72c3ca) -
Allow users to adjust terminal horizontal and vertical margin. The
terminal-margin-horizontalkey can be used to adjust the terminal left/right margin and theterminal-margin-verticalcan be used to adjust the terminal top/bottom margin. This will also affect drawer. The user can set an integer value between0and100asdpunits. The default value is still3for horizontal and0for vertical margin. So adding an entry liketerminal-margin-horizontal=10totermux.propertiesfile will allow users to set a horizontal margin of10dp. After updating the value, either restart termux or runtermux-reload-settingsfor changes to take effect.This was added since for some users text on edges would not be shown on the screen or they had screen protectors/cases that covered screen edges (Of course, that would require fixing every single app and android system UI itself, so kinda stupid to use). Moreover, horizontal margin of like
10dpmay be helpful with peek-and-slide for people having gesture navigation enabled on android10+since they won't be to touch at exactly the edge of the screen to trigger peek (#1325).
Closes #2210(
63504f0a) -
Allow users to disable hardware keyboard shortcuts. The user can add
disable-hardware-keyboard-shortcuts=trueentry totermux.propertiesfile to disable hardware keyboard shortcuts. The default value isfalse. Runningtermux-reload-settingscommand will also update the behaviour instantaneously if changed. Note that forctrl+alt+pto work, you need to unsetshortcut.rename-session = ctrl + n. https://wiki.termux.com/wiki/Terminal_Settings. Closes #1825. (829cc398,fcc0d362) -
Request
android.permission.PACKAGE_USAGE_STATSpermission. The permission can be granted fromAndroid Settings->System->Usage Access. Closes #2269. (865f29d4) -
Add
TERMUX_API_VERSIONto termux shell environment. This can be used to check ifTermux:APIis installed and enabled for cases where users try to runtermux-apicommands and it hangs. (0cf3cef7) -
Add
TERMUX_IS_DEBUGGABLE_BUILD,TERMUX_APK_RELEASEandTERMUX_APP_PIDto termux shell environment.The
TERMUX_IS_DEBUGGABLE_BUILDenv variable will be set to1if termux APK is a debuggable APK and0otherwise. Note that thedev_keystore.jksshipped with termux app and plugin source code can also be used to create a release APK even though its mainly used for Github Debug Builds, in which case value will be0.The
TERMUX_APK_RELEASEwill be set toGITHUB,F_DROIDorGOOGLE_PLAY_STOREdepending on release type. It will be set toUNKNOWNif signed with a custom key.The
TERMUX_APP_PIDwill be set to the process of the main app process of the termux app package (com.termux), assuming its running when shell is started, like fortermux-float. This variable is included sincepidof com.termuxdoes not return anything for release builds. It does work for debug builds and over adb/root. However, you still won't be able to get additional process info withps, like that of threads, even with the pid and will need to use adb/root. However,kill $TERMUX_APP_PIDwill work fromtermux-appandtermux-float.These variables can be used by termux devs and users for custom logic in future depending on release type.
-
Add support for
~/.termux/termux.float.properties. (bc779d2f) -
! Convert
extra-keysto agnosticism by moving them totermux-sharedlibrary so that they can be imported and used by other apps for their own needs as long as they comply with GPLv3 license. Almost everything is customizable and has no dependency on termux specific logic. (2a74d43c) -
Add support for
SHIFTorSHFTextra-keys. Closes #1038. (2a74d43c,91172409) -
Add support for
PASTEextra-keysfor pasting text from clipboard. (7d76e8b1) -
Add support to long hold on
CTRL,ALT,SHIFTandFNto lock those control keys. They will not be released when you press another key and will only be released by pressing the respective control key again. Closes #2049, Closes #1861.2a74d43c) -
Add support for
com.termux.execute.background_custom_log_levelandcom.termux.RUN_COMMAND_BACKGROUND_CUSTOM_LOG_LEVEL. Check the commit and https://github.com/termux/termux-tasker#custom-log-level for details. (60f37bde,e889d84d,1259a212,197979fd) -
Add warning that hax support is not provided and asking questions will likely result in issue automatically closed or even ban. (
6409019a) -
Add warning reports with (partial) screenshots of error reports instead of text will likely be automatically closed/deleted. (
7047bbef) -
Add
termux-apilog level settings in termux app settings. (582e5693) -
Add
termux-floatlog level settings in termux app settings. (d55c1001) -
Add
termux-widgetlog level settings in termux app settings. (4953b126) -
Add
isTermuxAppInstalled()andisTermuxAppAccessible()functions toTermuxUtils. TheTermuxUtils.isTermuxAppInstalled()function can be used by external apps to check if termux app is installed and enabled. TheTermuxUtils.isTermuxAppAccessible()function can be used by termux plugin apps to check if termux app is installed, enabled, accessible as persharedUserIdandTERMUX_PREFIX_DIR_PATHis accessible and has read, write and execute permission. (e5c05489) -
Bootstrap error and report issue (optionally) will contain primary termux files
statinfo andlogcatdumpUsers have been reporting issues with bootstrap installation (and
loginfile access) failure on email and github but "most" have been useless since they don't follow instructions to debug the issue and report back. The real reason may depend on device. One could be that/data/data/com.termuxdoes not exist on the device in which case termux won't work on the device, at least without root. Other reasons could be wrong ownership or selinux context, selinux denials or attempting to install on external sd card (as reported by a user) where likely files dir was different from/data/data/com.termux/files.This commit will save dev and possibly user time and automatically generate the required info to debug such issues. The
lscommand will generatestatinfo for all the major termux directories and files so that existence or ownership issues can be shown. It will also runlogcatcommand to take a dump (last3000lines) in case other failures are being logged, like selinux denials as peravcentries. It will also show if app is installed on external sd card. This info will automatically be shown on bootstrap install failure report.Moreover, users can generate termux files
statinfo andlogcatdump manually too with terminal's long hold options menuMore->Report Issueoption and selectingYESin the prompt shown to add debug info. This can be helpful for reporting and debugging other issues. If the report generated is too large, thenSave To Fileoption in context menu (3 dots on top right) ofReportActivitycan be used and the file viewed/shar...
v0.117 (F-Droid only)
0.117 - 2021-07-08
Changelog
Added
-
Enable split apks for debug builds. APKs for each architecture and a universal APK that is compatible for all architectures will now be available from Github Actions page from the workflow runs labeled
Build. The APKs will be available as zips under the Artifact section namedtermux-app-*. Architecture specific APKs can be used by users with low disk space since F-Droid releases are universal (since it doesn't support split APKs #1904) and their install+bootstrap installation size is~180MBinstead of~120MBif an architecture specific APK is used. This should also reduce bandwidth usage and download time for debug builds users if they download an architecture specific zip instead of the universal one. Related #2153. (dccd155, b90d594) -
Add app and device info too for crash notification shown when bootstrap installation or setup storage fails. (56c3826)
-
Trigger termux library builds on jitpack on releases. (d49fd6b)
Changed
- Allow users to disable terminal margin adjustment from termux settings. Previously in
v0.115(3213502) support was added withdisable-terminal-margin-adjustmenttermux.propertiesproperty to disable terminal margin adjustment in case in causes screen flickering or other issues on some devices. It has now been removed in (7aefd94) and moved to Termux Settings since if it causes issues at startup and users can't accesstermux.propertiesfile from the terminal, they will have to useSAFor root to access it, which will require an external app. Users can set the value from theTermux Settings->Termux->Terminal View->Terminal Margin Adjustmenttoggle. TheTermux Settingscan be accessed from left drawer in termux and from the android launcher shortcut for TermuxSettings, usually accessible by long holding on Termux icon. (e0ad9ff)
Fixed
-
Fix
java.lang.AbstractMethodError: androidx.window.sidecar.SidecarInterface$SidecarCallback.onDeviceStateChanged. The crash was reported forMicrosoft Surface Duo, which would affect some Samsung and other devices as well, mainly dual screens/foldables. It was caused byandroidx:windowlibrary that has been used bytermux-sharedsincev0.115having a typo in its proguard rules which didn't stop the removal of the required method for release builds (not debug) by proguard. For people who are getting the crash inv0.115andv0.116should setdisable-terminal-margin-adjustment=trueintermux.propertiescreated as per instructions here and then start termux again and see if it fixes the issue. If you had termux installed before updating, you should be able to directly access the~/.termux/termux.propertiesfile withSAF. The property will not work inv0.117as mentioned inChangedsection above. (4361c5e) -
Fix issue where a colour tint/highlight would be added to the terminal. This would happen when soft keyboard was to be disabled or hidden at startup and a hardware keyboard was attached and user started typing on hardware keyboard without tapping on the terminal first. (c6b4114)
-
Fix issue where
RUN_COMMANDintent was failing forcoreutils/busyboxapplets. (cce6dfe) -
Attempt to fix bootstrap installation failure that may be caused by invalid
mkdirsreturn value. (dc8bdfe)
Github Build APK. Check Installation for more info on Github Build APKs.
v0.116 (F-Droid only)
0.116 - 2021-07-01
Changelog
Fixed
-
Jitpack library publishing failed for initial
v0.115release so 886e52d was done to fix it andv0.115was re-released but jitpack kept building pre-fix initial release as per commitDateinbuild.log, likely due to one time download. So releasingv0.116so that it gets picked up. Users can import library based on entries like the following. The one mentioned in b7b12eb are invalid. -
implementation 'com.termux.termux-app:termux-shared:0.116' -
implementation 'com.termux.termux-app:termux-shared:master-SNAPSHOT' -
implementation 'com.termux.termux-app:termux-shared:e547c15481' -
implementation 'com.github.termux.termux-app:termux-shared:0.116'
Note that the first time someone imports a new version, it will take some time to build and you may get errors like Unable to resolve dependency for ':app@debug/compileClasspath'. It will take a few minutes for builds to be downloadable even after build.log shows them to have succeeded, run Sync Project with Gradle Files again to try to redownload. You can check builds and their logs at https://jitpack.io/#termux/termux-app and the API at e.g https://jitpack.io/api/resolve/com.termux/termux-app/master-SNAPSHOT.
Github Build APK. Check Installation for more info on Github Build APKs.
v0.115 (F-Droid only)
[0.115] - 2021-07-01
Changelog
Added
-
Add support to send back or store
RUN_COMMANDintent command results in files and provide way to fix argument splitting sent withamcommand caused by commas,in arguments itself. Native support has been added inside termux to store results of both foreground and background commands inside files, that also sends back internalerrmsgsas long as result files extras are valid. This can be used to run synchronous commands from inside termux, with other apps that haveRun commands in Termux environment(com.termux.permission.RUN_COMMAND) like Tasker, from pc overadbor insideadb shellif you have a rooted device, or from pc if you have setup termuxsshd. TheRUN_COMMANDintent can only be sent by thetermuxuser itself, by an app that has the permission or by therootuser. Theshelluser ofadbcannot send it. A script will be provided at a later time that will automatically detect these cases to easily runRUN_COMMANDintent commands which will also automatically create temp directories and do cleanup. This can also be useful inside termux itself, like if you want to start a new foreground session and to automatically store its output to a log file when you exit. Support can also be added for this to be done fortermux-bootandtermux-widgetas well but will require updates for them. Check the commit message for full details and examples for this since too long to be added here. (2aafcf8) -
Add termux settings button to left drawer too since apparently people can't find the one in context menu. (59877a0)
-
Allow users to disable terminal margin adjustment. The user can add
disable-terminal-margin-adjustment=trueentry totermux.propertiesfile to disable terminal view margin adjustment that is done to prevent soft keyboard from covering bottom part of terminal view on some devices. Margin adjustment may cause screen flickering on some devices and so should be disabled. The default value isfalse. So adding the entrydisable-terminal-margin-adjustment=truetotermux.propertiesfile will disable margin adjustment. Exit termux and restart for changes to take affect after updating value. In case e5a9b99 did not fix screen flickering issues for #2127, then this can be used to disable it. Closes #2127. -
Show crash notification when bootstrap installation or setup storage failures. Sometimes users report that bootstrap installation failed on their devices but provide no details. Since they don't check logcat for the exception or exception is one time only, we can't know what happened. Although, reasons are likely root ownership files. The notification will show the full stacktrace including suppressed ones for why failure occurred and hopefully be easier to find the problems and we can get reports too. (e408fdc)
-
Updated
bootstrapto2021.06.30-r1. (5670128)
Changed
-
Move from github packages to https://jitpack.io for hosting termux library packages. Github Package hosting is considered a private repository since it requires github APIs keys if a hosted library needs to be imported as a dependency. Importing from private repositories is not allowed as per
F-Droidpolicy so termux plugin apps can't import termux libraries as dependencies so hence we move toJitpack. Usage details for importing termux libraries in your own app as dependencies are in the commit message. (b7b12eb, 69e5dee, 886e52d) -
Change license for non-termux utils from
GPLv3toMITso that they can be used by other termux plugin apps or apps that may be released under a different license. Termux is already using a lot of libraries that are not GPL and such general utils shouldn't be restrictive anyways. Moreover,TermuxConstantsandTermuxPropertyConstantsshould beMITlicensed as well so that other non-FOSS or non-GPLv3 apps can use them, like forRUN_COMMANDintent. Any code not listed in exceptions ofLICENSE.mdfiles is still underGPLv3, mainly termux specific code and it will and should remain that way. All code in files whose license is changed was authored by me (@agnostic-apollo) as far as I can tell, but if any code in them is not that I missed, let me know, so that changes can be made since I can't and won't change the license of code authored by someone else. If some other objection is raised, let me know too. Future contributors should check theLICENSE.mdfiles and see if they are okay with contributing code asMITand if they are not, then they should create separate file/package intermux-shared. Checktermux-app/LICENSE.mdandtermux-app/termux-shared/LICENSE.mdfor exceptions. (70e1acc, 4926516) -
Implement
Errnosystem. This commit adds onto 679e0de. NowErrorclass has been implemented which will used to return errors, including suppressed throwables. Requirement forContextobject has been removed fromFileUtilsso that they can be called from anywhere in code instead of having to pass aroundContextobjects. Previously,string.xmlwas used to store error messages in case multi language support had to be added in future since error messages are displayed to users and not just for dev usage. However, now this will have to handled in java code if needed, based on locale. (4494bc6) -
The
ExecutionCommandhas been updated and command result variables have been moved toResultDataand result configuration toResultConfigsince the later two should be agnostic of what type of command there are for. They don't necessarily have to be for terminal/shell commands and can be used for plugin APIs, etc. TheResultDatainstead of aStringerrmsgnow stores a list ofErrorobjects. This is necessary since multiple errors may be picked up while a command is run, like say working directory is invalid and an error is returned by FileUtils and while sending the result to the caller, theResultSenderreturns an additional error because result configuration like result directory or result output format was invalid. In these situationsPluginUtilswill show a notification to the user with info of each error thrown. In addition to above, inResultData, thestdoutandstderrare converted toStringBuilderinstead of aStringso that data can appended to each from various places in code. This commit also adds onto 679e0de and 4494bc6. (2aafcf8) -
Move
ReportActivitytotermux-sharedso that other termux plugins can use it too. (7f36d7b) -
Move storage permission logic to
PermissionUtilsand add disable battery optimizations code. Option to disable battery optimizations will be added in termux settings later. (80b495e) -
Make
TermuxTaskandTermuxSessionagnostic to termux environment. Those classes shouldn't be tied to termux environment like variables, interpreters and working directory since commands may need to be executed with a different environment like android's or with a different logic. (53c1a49) -
Move termux related file utils from
FileUtilstoTermuxFileUtils. (4494bc6) -
Move Termux app specific logic out of
PermissionUtils. (12f910c) -
Move Android specific utils from
TermuxUtilstoAndroidUtils. (6bca378) -
Divide
DialogUtils. (553913c) -
Move Termux app specific logic out of
NotificationUtils. (1c7f916) -
Move Termux app specific logic out of
CrashHandler. (23a900c)
Fixed
-
Fix issues with
TermuxActivityRootViewmargin adjustment. Margin adjustment was causing screen flickering due to invalid values being calculated in landscape and split screen mode. Attempts to fix issue #2127. (e5a9b99) -
Redo fix for execution commands exceptions not being logged or sent back to plugin. The f62febb commit mentioned that it solved
the bug where Termux:Tasker would hang indefinitely if Runtime.getRuntime().exec raised an exception, like for invalid or missing interpreter errors and Termux:Tasker wasn't notified of it. Now the errmsg will be used to send any exceptions back to Termux:Tasker and other 3rd party calls.. This however was still broken due to local design changes made toTermuxTaskafter testing was already done. This commit should solve that problem. Moreover, now a notification will be shown if execution commands fail to start that are run by plugins that don't expect the result back, like withtermux-widget,termux-bootorRUN_COMMANDintent. This should make it easier for users to debug problems, since otherwiselogcatneeds to be looked. Butlogcatwould still need to be looked if commands/scripts fail after they have started due to internal errors. Notifications can be disabled from Termux Settings by disabling thePlugin Error Notificationstoggle. (5f2ccca) -
Fix issue where terminal cursor blinking would not automatically start again if termux activity is started after device display timeout with double tap and not power button. Fixes #2138. (f77c886)
-
Fix issue where cursor blinker wouldn't automatically start after session change. (d3c34ad)
-
Fix issue where cursor blinker wouldn't automatically start after terminal reset if it was disabled before reset. (00f805f)
-
Fix suppressed exceptions not being logged and long logcat message being truncated. If an exception is thrown, the exception message might not contain the full errors. Individual failures may get added to suppressed throwables which can be extracted from the exception obj...
v0.114 (F-Droid only)
0.114 - 2021-06-11
Changelog
Added
-
Allow users to adjust terminal transcript rows with termux.properties. The
terminal-transcript-rowskey can be used to adjust the terminal transcript rows. The user can set an integer value between100and50000. The default value is still2000. So adding an entry liketerminal-transcript-rows=10000totermux.propertiesfile will allow users to scroll back~10000lines of command output. After updating the value, termux must be restarted. You can also runtermux-reload-settingscommand so that termux loads the updated value, but only new sessions will use the updated value, existing sessions will not be affected. Be advised that using large values may have a performance impact depending on your device capabilities, so use at your own risk. Closes #2071. (0b4bbaf) -
Allow users to set terminal cursor style with termux.properties. The
terminal-cursor-stylekey can be used to set the terminal cursor style. The user can set a string value toblockfor■,underlinefor_orbarfor|cursor style. The default value is stillblock. So adding an entry liketerminal-cursor-style=bartotermux.propertiesfile will allow users to change to thebarcursor style. After updating the value, termux must be restarted. You can also runtermux-reload-settingscommand so that termux loads the updated value, but only new sessions will use the updated value, existing sessions will not be affected unless you Reset them from terminal's long hold options menuMore->Resetor restart termux activity after double back press to exit. Closes #2075. (f545ebf) -
Allow users to disable terminal session change toast. The user can add
disable-terminal-session-change-toast=trueentry totermux.propertiesfile to disable terminal session change toast. The default value isfalse. Runningtermux-reload-settingscommand will also update the behaviour instantaneously if changed. Closes #2118. (7ac62c9) -
Updated
bootstrapto2021.06.04-r1. (7620800)
Changed
- Change default extra keys style. If a user does not define a custom value in termux.properties file, then by default
2rows will be shown with all arrow keys (up/down/left/right) for ease of terminal use. (fd80cda)
Fixed
-
Do not close soft keyboard when toolbar text input view is focused on. Fixes #2077. (e08e3b5)
-
Fix issue where soft keyboard would not show in some cases. Fixes #2111, Fixes #2112. (1ad038e)
-
Fix issue where soft keyboard overlaps extra keys or terminal in some cases. Check TermuxActivityRootView javadocs for the details. This affected people who had set
enforce-char-based-input=trueintermux.propertiesand Gboard clipboard suggestions covered part of extra keys/terminal, but only when text is copied and clipboard suggestions and number keys row toggles are enabled in its settings. Reports have been received for other keyboards as well, like for SwiftKey number key rows overlapping, but hopefully it should be fixed now. If not, then report it. Related #538 and #1539. (e7dd0ee) -
Remove hardcoded wiki.termux.com url from
HelpActivity. (7ef9255) -
Fix issue where terminal cursor blinking would not automatically start again if termux activity was restarted after exiting it with double back press. (e119d34)
-
Fix issue where if termux installer failed with an exception after prefix directory was already created, then try again would load a broken environment. (19c690d)
Github Build APK. Check Installation for more info on Github Build APKs.
v0.113 (F-Droid only)
0.113 - 2021-05-16
Changelog
Added
- Allow users to
enable/disablekeyboard instead of justshow/hidewithKEYBOARDtoggle buttons. Thissoft-keyboard-toggle-behaviourkey can be used to change the behaviour. The default behaviour isshow/hide. The user can add a linesoft-keyboard-toggle-behaviour=enable/disablein~/termux.propertiesfile to change default behaviour of keyboard toggle buttons toenable/disable. In this mode, tapping the keyboard toggle button will disable (and hide) the keyboard and tapping on the terminal view will not open the keybaord automatically, until the keyboard toggle button is pressed again manually. This applies to split screen and floating keyboard as well. The keyboard can also be enabled fromTermux Settings->Termux->Terminal I/O->Soft Keyboard Enabledtoggle. Runningtermux-reload-settingscommand will also update the behaviour instantaneously if changed. Also fixes #1098. (e4e638b) - Allow users to disable soft keyboard automatically if hardware keyboard is connected. Users can enable this behaviour by enabling the
Termux Settings->Termux->Terminal I/O->Soft Keyboard Only If No Hardwaretoggle. (90c9a7b) - Allow users to enable terminal cursor blinking with termux.properties. This
terminal-cursor-blink-ratekey can be used to enable terminal cursor blinking. The user can set an int value between100and2000which will be used as blink rate in millisecond. The default value is0, which disables cursor blinking. So adding an entry liketerminal-cursor-blink-rate=600to~/termux.propertiesfile will make the cursor attempt to blink every 600ms. Runningtermux-reload-settingscommand will also update the cursor blinking rate instantaneously if changed.
This will have a performance impact, so use wisely and at your own risk. Note that you can also change the cursor color by addingcursorproperty to~/colors.propertiesfile, likecursor=#FFFFFFfor a white cursor. Closes #153. (31298b8, 89a1e02) - Add in-app Donation link in Termux Settings for non google playstore releases. We require donations due to bintray shutdown to pay for termux apt repository hosting costs. Related issue termux-packages#6348. (6de3713)
- Moved
Termuxapp settings into dedicated "directory" inTermux Settingsand addedAboutpage to show info of all termux apps installed and important links. (d42514d) - Added support for showing
APKrelease type inApp Inforeports andAboutpage. (1e30022) - Add support for setting
Termux:Taskerlog level fromTermux Settings. (339b2a2) - All invalid values stored in
termux.propertiesfile during load time will be logged. (f8ccbb4) - Updated
bootstrapto2021.05.16-r1. (6524a61)
Fixed
- Disable error flashes when clearing
TMPDIRdirectory on termux app exit. (b268b6e) - Fixed
NullPointerException on com.termux.app.TermuxService.wantsToStop(). Fixes #2026. (42ad372) - Attempt to fix issues where soft keyboard was not shown in some cases when hardware keyboard was attached. The extra keys and drawer
KEYBOARDtoggle button andctrl+alt+khardware keyboard shortcut will all behave the same now and may help in showing soft keyboard forcefully. Related issues #1995. (Requires testers). (4d1851e, 39c69db) - Release terminal beep
SoundPoolresources on activity stop to attempt to prevent exception. (58d5770) - Generate potentially long running reports in background threads instead of main UI thread. (2f82825)
Github Build APK. Check Installation for more info on Github Build APKs.
v0.112 (F-Droid only)
0.112 - 2021-04-22
Fixed
- Reverted the versioning logic change done in a6ae656 since that caused F-Droid bot and Github Packages to fail to pick up new releases. The versions must be bumped directly in
build.gradlefile in future and not through other files likegradle.properties. Thanks to @jspricke for notifying us. (0aa5a12)
Github Build APK. Check Installation for more info on Github Build APKs.
v0.111 (F-Droid only)
0.111 - 2021-04-21 (RE-RELEASED)
Changed
- Bumped gradle wrapper to 7.0. (1d06ff9)
Fixed
- Fixed
termux-resetnot working properly since v0.109. (d6eb5e3) - Fixed cases where bootstrap was not reinstalled even if
PREFIXwas broken, i.e if it was empty or only contained thetmpdirectory. (107927f, b34f60b)
Github Build APK. Check Installation for more info on Github Build APKs.