v0.51.0 - 2025-03-29 07:10
Commit history: Add Enhance The following options have been added. Check ( Add Add Termux:API app settings activity directly in the app itself so that the main Termux app is not required. Currently, it allows changing the log level. ( Add Add opus audio encoder. ( Add monochrome icon. ( Add Add Add support for unix filesystem sockets for API communication. ( Add Add Request disable battery optimizations and grant draw over apps permission. ( Add support to send crash notifications if exceptions are caught in Add launcher icon/activity. This must not be allowed to be disabled since there is no other way to start Termux:API app again if it crashes multiple times and gets marked as bad process by android. This is also required to bypass OEM battery restrictions like DuraSpeed. This also easily allows users to know if the app is installed or not. Related issue termux/termux-widget#56. Related issue #447. ( Add storage permissions since Declare Request Add dual sim feature to CallLog api. ( Notification channel support. Implemented by @tareksander in #477. (
Add The Send plugin error notification instead of crash notification for uncaught exceptions for API calls. ( Rename Do not hang indefinitely when exceptions are thrown in Fix potential NullPointerException in Fix potential NullPointerException in Use Remove hardcoded Use night-mode instead of use-black-ui termux.properties property for setting DialogActivity theme as per termux/termux-app@6631599f. ( Protect Add 5G NR radio support and additional fields for LTE for
! Fix exception in Fix usb fd not being sent due to refactoring in 3c1a6be. Closes #643. ( Fix vibration not happening if duration is under 1000ms and touch vibration is disabled. Closes #666. ( Fix exception in ResultReturner while setting result for a non-ordered broadcast. ( Fix bool extras parsing for Fix termux-call-log api Handle unexpected socket client disconnects. ( Text not visible when in dark mode for bottom sheet dialog. ( Fix crash if input or output socket extras are not set. ( Fix exception for missing Fix typo in Fix Prevent multiple calls to Catch IllegalStateException "Broadcast already finished" and any other exceptions thrown while finishing ResultSender. ( Fix NullPointerException when running bell/vibrate on Samsung devices on android 8 and handled deprecated code.
Apparently occurs on only Samsung android 8 devices and there is no fix for vibrator except catching the exception so that app doesn't crash. ( Fix raw use of parameterized class 'Pair' for NotificationAPI. ( Fix potential NullPointerException in NotificationAPI $REPLY parsing. ( Exit loop after "android.nfc.tech.Ndef" found in tech list. ( Fallback from cellular to unmetered on Android < 9 for JobSchedulerAPI network requirement. ( Check for READ_PHONE_STATE for SmsSend API. ( Add missing return statement after error in onReceiveTelephonyCall() for Fix socket connection. Implemented by @tareksander in #487. (
v0.50.1...v0.51.0
Changelog
Added
SAFAPI
. Implemented by @tareksander in #476. (a546eeb5
)
SmsInboxAPI
with new options and fix errors for non existent columns.
termux-sms-list --help
for examples and more info.
conversation-limit=<limit>
: The SQL limit for returned SMS conversations.
conversation-offset=<offset>
: The SQL offset for returned SMS conversations.
conversation-return-multiple-messages
: Return multiple SMS messages per conversation.
conversation-return-nested-view
: Return a nested object view of conversations where each conversation contains an array of SMS messages with the conversation id as the key.
conversation-return-no-order-reverse
: Return SMS conversations without reversing order of conversation sort.
conversation-selection=<selection>
: The SQL selection for returned SMS conversations.
conversation-sort-order=<order>
: The SMS conversations sort order as per SQL 'ORDER BY col1, col2, ... ASC|DESC' clause. Default value: 'date DESC'.
message-return-no-order-reverse
: Return SMS messages without reversing order of message sort.
message-selection=<selection>
: The SQL selection for returned SMS messages.
message-sort-order=<order>
: The SMS messages sort order as per SQL 'ORDER BY col1, col2, ... ASC|DESC' clause. Default value: 'date DESC'.
1b60b23c
)
present
, technology
, voltage
, current_avg
, level
, scale
, charge_counter
, energy
and cycle
properties to battery API. Fix BATTERY_PROPERTY_CURRENT_NOW
unit if required. Use percentage
returned by BATTERY_PROPERTY_CAPACITY
instead of using scale and level as suggested by @Wetitpig in #630. (d5364ef3
)
ed867bc3
)
last_modified
attribute for termux-saf-stat
and termux-saf-ls
. Co-authored-by: @BryanJacobs and @agnostic-apollo (3f743003
)
992ce17d
)
0eae9395
)
DUMP
and PACKAGE_USAGE_STATS
permissions. (989a19b7
)
INTERNET
permission. The internet permission may solve problems for Termux app not having internet access if Termux:API app is installed first due to Android sharedUserId
bugs which shares permissions across all apps. (ea094b0a
)
fe6e3d48
)
workflow_dispatch
and cron
schedule for "00:15 on 1st of every 2nd month" to github_action_build
workflow triggers. (f60affe5
)
capabilities
field to termux-wifi-scaninfo
output. Closes #676. (cff225e4
)
ba2836ba
)
TermuxApiReceiver
and ResultReturner
. This will allow users to know if an exception caused an API command to fail instead of having to check logcat
. Currently, Termux:API
app is broken a lot and crash reports from users for edge case exceptions or device specific exceptions will help solve such issues. In future, likely stderr
will be used instead, once support is added. (6112bf67
)
f2c1342f
)
PermissionUtils.checkPermissions()
will check if app has requested them before checking if permission is granted. (ec390259
)
READ_PRIVILEGED_PHONE_STATE
permission for TelephonyAPI
IMEI and MEID. (8d6c6ce1
)
ACCESS_BACKGROUND_LOCATION
as required by android 10+.(7ef6b206
)
a8574836
)
75a5ffe3
)
Changed
UsbService
to process usb api requests and fix multiple exceptions for Android 12+ and hang up for Android 14+. Co-authored-by: @agnostic-apollo and @9hm2. Closes #675. (15d5fb62
)
TermuxAPILauncherActivity
activity alias has been added for TermuxAPIMainActivity
. This will allow disabling the launcher activity, but still allow the main activity to be launched from Termux app. The launcher activity will also now be allowed to be enabled again without having to reinstall the app with the Enable Launcher Icon
button in the main activity if its currently disabled. (280e5c7c
, bab9ef3a
)
1f4a3f2c
)
PhotoAPI
to CameraPhotoAPI
. (ac967e8a
)
TermuxApiReceiver
and ResultReturner
. (3c1a6be8
)
StorageGetAPI
and use FileUtils for missing permissions check. (950f9be3
)
PhotoAPI
and use FileUtils for photo directory creation. (cc186d03
)
TERMUX_API_FILE_SHARE_URI_AUTHORITY
for content provided uri and fix sharing paths with "#". (9a9e3eae
)
com.termux
values. (3bea1942
)
5c71e2df
)
ShareAPI.ContentProvider
write access with permission in case it was allowed in future without setting permission. (2968854f
)
TelephonyAPI
. (dc89cd69
)
Deprecated
phone
key for message info and replace it with address
as address column can be a name like service provider instead of a number. (603f6d7c
)
Fixed
SmsInboxAPI
for message address/from selection and use exact match. Users can use %
wildcards in the address passed if they want to do prefix/contains/suffix matching. (12e7b651
)
4c6a5196
)
a9abc964
)
e994de52
)
SocketListener
. (8bd22936
)
IllegalArgumentException: Invalid token LIMIT
on Android 11+ since limit and offset are being passed as sort parameters instead of query parameters. Closes #434. (11eff565
)
a0809090
)
df3cb50b
)
3b85bc1e
)
android.nfc.action.TECH_DISCOVERED
meta-data for NfcAPI$NfcActivity
. (fab68728
)
CameraPhotoAPI
and StorageGetAPI
that was getting basename instead of dirname of file paths for parent dir. (24fbea78
)
NullPointerException
triggered when trying to show keyboard without dialog view in focus by pressing outside of bottom sheets dialog. Closes #486. (30a58d7e
)
ResultReturner.returnData()
in DialogAPI
button press which throws IOException
due to connecting to output socket again. (166595c8
)
4c5c27bb
)
99080bab
)
237d36a5
)
94d478d2
)
cfdcab92
)
58c272ba
)
bf6d834a
)
TelephonyAPI
. (feb568c2
)
f88a6a58
)