Releases: termux/termux-tasker
v0.6.0
[v0.6.0] - 2022-02-21 09.22
Changelog
Added
-
Add support for
stdin
for background commands. Users can now pass scripts viastdin
, like abash
script to the$PREFIX/bin/bash
shell and apython
script to the$PREFIX/bin/python
shell or any other commands. Note that if passing script viastdin
, do not pass arguments, since it will fail depending on shell, at least will forbash
. Max length of script supported is45K
characters as per Tasker plugin bundle limits, checkEditConfigurationActivity.setStdinView()
for details. Closes #46. (05af1af1
) -
Add support for custom log level for background commands. Values must be between
Logger.LOG_LEVEL_OFF (0)
andLogger.MAX_LOG_LEVEL
(currentlyLogger.LOG_LEVEL_VERBOSE (3)
as pertermux/termux-app@60f37bde
. (5bf15189
) -
Add support for session action for foreground commands. Valid values are defined by
TermuxConstants.TERMUX_APP.TERMUX_SERVICE.VALUE_EXTRA_SESSION_ACTION_*
, currently, between0
and3
at https://github.com/termux/termux-app/blob/v0.117/termux-shared/src/main/java/com/termux/shared/termux/TermuxConstants.java#L856. (6f6ddd0d
) -
Add support for waiting for foreground session command results. Previously configured actions will behave the same, i.e wait for only background commands. For new or edited actions, the
Wait for result for commands
toggle value will be used to decide whether to wait for result of commands. It will apply to both foreground session and background commands. Note that for foreground commands, only the session transcript is returned which will contain bothstdout
andstderr
combined in%stdout
variable, basically anything sent to the the pseudo terminal/dev/pts
, includingPS1
prefixes for interactive sessions. For foreground commands that exited with failure will requiretermux-app
version>=0.118
for sessions to automatically close without waiting for user to press enter as pertermux/termux-app@c19e01fc
. Closes #39. (fecba503
) -
Add support for
%stdout_original_length
and%stderr_original_length
result variables as pertermux/termux-app@f62febbf
andtermux/termux-app@a2209ddd
. (1c1567f2
) -
Add launcher icon/activity that can optionally be disabled. This allows users to know if they have installed the termux plugin without having to go to android settings app list and should help reduce issues created when users shift termux installation source and get signatures do not match previously installed version errors. This is also required on some phones to allow the user to opt out the app from OEM background killers like DuraSpeed. Related issue
termux/termux-widget#56
. (8a78f282
) -
Add explicit exported attribute for app components as required by Android
12
. https://developer.android.com/about/versions/12/behavior-changes-12#exported. (50e20b22
) -
Add Day/Night theme support for
EditConfigurationActivity
based onnight-mode
termux.properties
value. The stdinTextIOActivity
will always use light theme since it doesn't currently support dark mode. Support will be added in future whentermux-shared
is updated with media viewer support. (b2cc90b6
) -
Send plugin github repo url to
TermuxService
to be shown in case of failure. (2eca337f
) -
Automatically attach debug APKs when a release is created. (
705361ec
) -
Add LICENSE.md. (
cf1eda49
) -
Added crash handler so that crash notifications can be shown in
termux-app
at startup. (63e76458
)
Changed
-
Redesign plugin configuring views with
CardView
support. Forstdin
, theTextIOActivity
provided bytermux-shared
will be used temporarily. (05af1af1
,b52db047
,9c287360
) -
Enable background mode and wait for results toggle for new plugin configs. (
70d97e7a
) -
Keep plugin config values when saving even if they wont be used since stdin scripts may be deleted accidentally. (
26e1f5ea
) -
Move to semantic versioning for app version and add commit hash and
github
to APK file names.(4920bcd2
) -
Trim arguments length to
20
in blurb. (a80fe8fb
) -
Increase blurb length from
60
to120
since Tasker doesn't have that limit. If it affects other plugin host apps, it should be reported so that conditional blurb size can be used. (a5bcd56a
) -
Disable
shrinkResources
and obfuscation for testing reproducible builds and maintaining stacktraces of crashes. (93555047
) -
Do not automatically open keyboard when opening plugin configuring. (
267cf61c
) -
Remove all hardcoded
com.termux
constants and use the values defined byTermuxConstants
andTermuxPreferenceConstants
intermux-shared
library. (63e76458
) -
Use extra constants returned by
TermuxService
defined inTermuxConstants
forPluginUtils
. (63e76458
) -
Use
FileUtils
andTermuxFileUtils
provided bytermux-shared
to handle all file related functionality which has better, safer and more updated code. (63e76458
) -
Use
TermuxTaskerAppSharedPreferences
provided bytermux-shared
for handlingSharedPreferences
functionality. (63e76458
) -
Use
Logger
provided bytermux-shared
for logging. Log level will not be got fromSharedPreferences
for each log entry but will be loaded fromSharedPreferences
into theLogger.CURRENT_LOG_LEVEL
variable at application startup and also inFireReceiver
which runs as a separate process and maintains separateLogger
instance. Thetermux-app
can also set the log level from its settings. (63e76458
) -
Fix issue where log level was not being read from file, which has been fixed in
TermuxTaskerAppSharedPreferences
in upstream. (63e76458
) -
Previously working directory would only be created automatically if it was under
TermuxConstants.TERMUX_HOME_DIR_PATH
but now it will be created even if its underTermuxConstants.TERMUX_FILES_DIR_PATH
. (63e76458
) -
Use
ExecutionCommand
class to handle intent extras inFireReceiver
since they are consistent with that ofTermuxService
ACTION_SERVICE_EXECUTE
intent. (63e76458
) -
Use
TermuxUtils
andPackageUtils
provided bytermux-shared
and remove existingTermuxUtils
. TheTermuxUtils.isTermuxAppAccessible()
will also check iftermux-tasker
can accesstermux-app
packageContext
. (63e76458
)
Fixed
-
Fix potential conflicting
PendingIntent
for execution commands sent toTermuxService
due to same request code being used. (d9a172d7
) -
Fix
android.view.WindowManager$BadTokenException: Unable to add window exception
when switching to landscape mode. (d0e88055
) -
Fix wrong error string returned for
null
plugin bundle. (a0aaf8e8
) -
Fix
NullPointerException
if arguments extra is not passed toFireReceiver
. (49acd107
) -
Handle unlikely case where failed to get version code to generate plugin result bundle. (
f6e33687
)
Docs
v0.5 (F-Droid only)
- Proper parsing of the arguments.
- Now uses permission
com.termux.permission.RUN_COMMAND
. - Added support for paths outside of
~/.termux/tasker/
if propertyallow-external-apps
is set totrue
. - Added support for working directory.
- Adding support for users to set plugin logcat log levels.
- more