David Kramer
05ed7b750b
Fix possible crash in SensorAPI due to null command ( #171 )
2018-06-06 00:06:11 +02:00
Cem
30b21b2fe2
Added 'data_enabled' and 'sim_subscriber_id' fields to 'termux-telephony-deviceinfo' ( #175 )
2018-06-06 00:04:36 +02:00
Cem
4de411b720
Fixed notifications not displaying on Oreo ( #173 )
2018-06-05 23:14:11 +02:00
tomty89
6b5122c2ba
MediaPlayerAPI: Some more minor improvements ( #160 )
...
* MediaPlayerAPI: revert commit 299d557
The error message won't be displayed anyway:
$ touch empty
$ dd if=/dev/urandom of=random count=2048
2048+0 records in
2048+0 records out
1048576 bytes (1.0MB) copied, 0.190185 seconds, 5.3MB/s
$ termux-media-player play empty
setDataSourceFD failed.: status=0x80000000
$ termux-media-player play random
Prepare failed.: status=0x1
$
* MediaPlayerAPI: catch NullPointerException for -a play
* MediaPlayerAPI: use getCanonicalPath() instead
* MediaPlayerAPI: use proper values for setVolume()
* MediaPlayerAPI: fix play and stop from pause
* MediaPlayerAPI: add trackName for info and resume
Suggested by Auxilus (#162 )
2018-04-12 01:36:41 +02:00
David Kramer
fa9373ab1e
Fix possible crash in NotificationAPI from invalid LED color value ( #164 )
2018-04-12 01:21:06 +02:00
David Kramer
efcafdf579
Fixes incorrect error message being displayed when playing track / ( #157 )
...
possible crash when playing another track after other finished
2018-04-09 01:04:45 +02:00
David Kramer
0aeb960680
Add MicRecorderAPI ( #158 )
2018-04-09 01:04:37 +02:00
David Kramer
e7fa1d2498
Add WallpaperAPI
2018-04-09 01:03:10 +02:00
landfillbaby
d4660a3ce9
MediaPlayerApi playHandler: prepare synchronously, don't always print failure
...
the isPlaying() call was completing before the prepareAsync() call, always returning "Failed to play: "
2018-04-07 01:53:26 +02:00
Tom Yan
34c6841a05
AudioAPI: updates for AudioTrack methods
...
There are several changes in the commit:
1. Use instance methods to get sample rate and buffer size info
on Android N or above only instead of Android M, since both
AudioAttributes.FLAG_LOW_LATENCY (256) and the implicitly used
AudioFormat.SAMPLE_RATE_UNSPECIFIED (0) are available only since
API 24 (N).
2. Use setPerformanceMode() on Android O, as FLAG_LOW_LATENCY is
deprecated since API 26 (O).
3. Create AudioTrack instance of both the fast (LOW_LATENCY) and
deep buffer (POWER_SAVING) mixer path. The two paths can be using
different subdevices on different rate and buffer size (or same
subdevice on same rate but different buffer size). For example on
my phone:
AUDIOTRACK_SAMPLE_RATE: 192000
AUDIOTRACK_BUFFER_SIZE_IN_FRAMES: 23046
AUDIOTRACK_SAMPLE_RATE_LOW_LATENCY: 48000
AUDIOTRACK_BUFFER_SIZE_IN_FRAMES_LOW_LATENCY: 192
4. Get info on sample rate with the getNativeOutputSampleRate()
static method (static in Java's sense; the value is still sink-
based) on builds older than N only. The rate appears to be of the
fast (LOW_LATENCY) mixer path if it is available.
5. A note on the static method getMinBufferSize(). The reason it
is not used even for older devices is, it returns buffer size info
of the deep buffer (POWER_SAVING) mixer path, while NOSR is the
rate of the fast (LOW_LATENCY) mixer path, so the value we can get
with it is not always sensical.
2018-04-07 00:41:37 +02:00
Tom Yan
299d55789b
MediaPlayerAPI: check whether playback has been successfully started
2018-04-07 00:38:55 +02:00
Tom Yan
7bdd53008a
MediaPlayerAPI: eliminate pointless toUpperCase()
...
Fixes #154 .
2018-04-07 00:38:55 +02:00
Tom Yan
9c104aac36
MediaPlayerAPI: prevent NullPointerException
...
Fixes #154 .
2018-04-07 00:38:55 +02:00
Tom Yan
1be62a5c91
MediaPlayerAPI: remove extension pattern check
...
There are way more possibilities and extension doesn't guarantee
anything about the file.
2018-04-07 00:38:55 +02:00
David Kramer
89e2b1ed95
Add MediaPlayerAPI ( #146 )
2018-04-02 01:27:13 +02:00
Fredrik Fornwall
efc06c4a32
Remove unused import
2018-04-02 00:55:13 +02:00
David Kramer
eab70c318f
Add SensorAPI ( #147 )
2018-04-02 00:51:14 +02:00
tomty89
11b84d9f9c
AudioAPI: fix build-time error ( #145 )
2018-04-02 00:49:35 +02:00
tomty89
9552c418ba
AudioAPI: avoid redundant code ( #134 )
2018-03-23 00:41:42 +01:00
David Kramer
91b8ed4249
Adds TorchAPI implementation ( #137 )
2018-03-23 00:22:43 +01:00
Fredrik Fornwall
adfc184011
Fix typo
2018-02-05 01:03:35 +01:00
Fredrik Fornwall
1f3eee8e2e
Format code
2018-02-05 00:53:01 +01:00
its-pointless
7d54c4d629
Update Audiotrack API ( #129 )
2018-02-05 00:46:01 +01:00
Ian Brunelli
32c2781664
Add MediaScannerAPI ( #123 )
2018-02-05 00:41:27 +01:00
its-pointless
a544de8c1b
gets info for fast_mixer ( #126 )
2018-02-01 22:22:07 +01:00
Fredrik Fornwall
9e67ca2a57
termux-dialog: Make sure to close client
2017-04-09 23:26:12 +02:00
Fredrik Fornwall
ee5ed49fd7
Suport termux-telephony-call
2017-04-09 19:36:33 +02:00
Fredrik Fornwall
b72a223b4c
termux-notification: Support --on-delete action
...
This makes it possible to act on the notification being dismissed.
Server side part of https://github.com/termux/termux-api/issues/81
2017-04-09 19:13:24 +02:00
Fredrik Fornwall
3e1bbea265
termux-dialog: Exit when back is pressed
...
This treats pressing the back button the same as pressing cancel.
Fixes #78 .
2017-04-07 00:17:43 +02:00
Fredrik Fornwall
341e5f395a
Add comment about default tts audio stream
2017-02-20 02:03:48 +01:00
Alain Kalker
56b5a1257c
termux-tts-speak: Use STREAM_MUSIC as default stream ( #67 )
...
This fixes #66 .
2017-02-20 01:59:02 +01:00
Wetitpig
cff02a5614
Correct Typo ( #57 )
...
"Overhead" changed to "Overheat"
2017-01-26 07:54:19 +01:00
Fredrik Fornwall
3d2ff5fe60
Hack to make led work without vibrating
...
It seems that led coloring does not work without vibration. So if
the led color has been specified but not vibration, default to a
dummy vibrate={0}.
2017-01-10 00:39:52 +01:00
Fredrik Fornwall
adc9b4eccc
Update the NotificationAPI
2017-01-05 03:47:52 +01:00
Fredrik Fornwall
fe51705dde
Add WifiAPI
2017-01-05 03:46:46 +01:00
Fredrik Fornwall
79a2c03676
Update to new Termux icon
2017-01-05 02:33:20 +01:00
Fredrik Fornwall
41341bd0ca
Clean up log calls
2016-12-04 17:36:33 +01:00
Fredrik Fornwall
85180038e3
Add the roundIcon to the manifest
2016-12-04 04:27:53 +01:00
Fredrik Fornwall
6e532522aa
Use the new vector icon
2016-12-04 04:26:18 +01:00
Fredrik Fornwall
899a7e353c
Add options to control notifictions
2016-12-04 04:24:29 +01:00
Fredrik Fornwall
8927dd540b
Start a command to request a file from the system
...
Using the Storage Access Framework through something like
termux-storage-get output-file
will allow one to get files from e.g. usb memory sticks.
2016-12-04 02:42:55 +01:00
Fredrik Fornwall
378d4f19d5
Better flow for requesting permissions
2016-11-29 22:36:10 +01:00
Zepp Lu
05a9ad60bd
now able to send message longer than the maximum size
2016-09-26 00:15:12 +08:00
garwiz
50672b0d51
Added optional region and variant params to TTS intent
2016-09-04 15:07:34 +02:00
Fredrik Fornwall
1f57769116
Manifest file cleanup
2016-08-22 14:43:06 +02:00
Eduardo Pereira de Sousa
c927b7d5a5
Fixed unended JSON object for TelephonyDeviceInfo
2016-08-09 23:39:29 -03:00
Fredrik Fornwall
1a85aeffb5
Format code (mostly tab -> whitespace diff)
2016-06-06 00:23:00 +02:00
Fredrik Fornwall
c8b6bb67d2
Mark used hardware features as optional
2016-04-26 03:11:00 +02:00
Fredrik Fornwall
6be2b473af
Add infrared and telephony api:s
2016-04-26 03:05:39 +02:00
Fredrik Fornwall
a83a77c508
Support multiple recipients when sending SMS
2016-04-24 23:52:55 +02:00
Fredrik Fornwall
151717e2fb
TextToSpeechAPI: Make stream configurable
2016-04-23 15:14:02 +02:00
Fredrik Fornwall
0fd66d37e3
termux-tts-speak: Use STREAM_NOTIFICATION
2016-04-20 11:24:02 +02:00
Fredrik Fornwall
6563446522
termux-tts-speak: Use STREAM_ALARM ( fixes #13 )
2016-04-20 00:31:01 +02:00
Fredrik Fornwall
0efb8bc1ee
termux-camera-photo: Drop attempt to use previews
...
This doesn't work reliable across devices and is of questionable
value. Fixes #11 . Fixes #15 .
2016-04-20 00:18:40 +02:00
Fredrik Fornwall
7f050bded3
Request runtime permissions as necessary on 6.0+
...
Fixes #19 .
2016-04-20 00:16:57 +02:00
Fredrik Fornwall
bf5dec5c0d
termux-vibrate: Do not vibrate when in silent mode
...
Do not vibrate when in silent mode unless the -f/--force option is
given.
2016-01-12 14:13:59 +01:00
Fredrik Fornwall
7170f8dcde
Remove unused annotations
2016-01-12 14:13:59 +01:00
Fredrik Fornwall
631401f1fb
Add a v2 of termux-clipboard for using stdin
2016-01-12 14:13:59 +01:00
Ted Stein
4b3a1528b0
PhotoAPI: Take sensor orientation into account.
...
On a Nexus 5X, the old code would take pictures that were upside-down.
Apparently, the Android device standards require that the long edge of the
sensor must align with the long edge of the device, but doesn't say which of the
two ways to satisfy this manufacturers should pick. This change makes PhotoAPI
generate right-side-up pictures in both conditions.
Tested on a Nexus 7 (second-gen) and a Nexus 5X.
2015-11-29 01:27:21 -08:00
Fredrik Fornwall
f9f439feb0
Improve ShareAPI to work in more cases
2015-11-28 23:38:34 +01:00
Fredrik Fornwall
d5549938df
Cleanup build.gradle
2015-11-28 11:56:37 +01:00
Fredrik Fornwall
1fb834ca98
Improve termux-dialog to support password and titles
...
Also bump version to 0.5.
See https://github.com/termux/termux-app/issues/3
2015-10-27 02:16:01 +01:00
Fredrik Fornwall
7719bd7c59
Remove stray char
2015-10-27 01:45:33 +01:00
Fredrik Fornwall
d5768dc4e5
Add support for password input dialogs
2015-10-27 00:13:06 +01:00
Fredrik Fornwall
2880427dfe
Improve PhotoAPI
2015-09-20 22:35:02 +02:00
Fredrik Fornwall
b3e5882bc6
Compare against correct variable
2015-09-20 22:21:51 +02:00
Fredrik Fornwall
26801a68cf
termux-share: Default to application/octet-stream
...
Also expose the file name in query().
2015-09-20 22:09:54 +02:00
Fredrik Fornwall
fe98a42faa
Bump version to 0.4
2015-09-04 16:43:37 +02:00
Fredrik Fornwall
0ea0f250ba
Update camera photo API
...
Try to warmup the camera sensor and focus machinery before
saving JPEG. Should hopefully fix problems with black/empty
images.
2015-09-04 16:42:10 +02:00
Fredrik Fornwall
ead1b8d168
Add information about camera jpeg output size
2015-09-04 15:59:47 +02:00
Fredrik Fornwall
7b32995f9f
Lower case file extension before mimetype lookup
2015-09-04 15:46:14 +02:00
Fredrik Fornwall
20252cf9a7
Minor formatting changes only
2015-09-04 14:40:00 +02:00
Fredrik Fornwall
5515c401ce
Remove PhotoActivity
2015-08-01 02:43:56 +02:00
Fredrik Fornwall
5880d40624
Android Studio warnings cleanups
2015-08-01 02:43:20 +02:00
Fredrik Fornwall
2d6babcc29
Android Studio warnings cleanups
2015-08-01 02:39:22 +02:00
Fredrik Fornwall
ab1af8b244
Remove unused variables
2015-08-01 02:34:39 +02:00
Fredrik Fornwall
8305dc73a8
Add android:supportsRtl="true"
2015-08-01 02:31:21 +02:00
Fredrik Fornwall
9f90f6fc10
Secure the sharedfiles content provider
2015-08-01 02:26:19 +02:00
Fredrik Fornwall
a107af7568
Project config fixes
2015-08-01 01:56:34 +02:00
Fredrik Fornwall
f510b39d74
Remove log spam
2015-07-31 03:10:23 +02:00
Fredrik Fornwall
9f5d2b37b7
Center toasts
2015-07-31 01:14:18 +02:00
Fredrik Fornwall
9d1a918d03
Add PhotoAPI, ShareAPI and ToastAPI
2015-07-29 04:19:45 +02:00
Fredrik Fornwall
c4ef079206
Bump version to 0.3
2015-07-26 02:26:33 +02:00
Fredrik Fornwall
1f2e562ac7
Initial push
...
The project was just converted from Eclipse to Android Studio, so
there may be some glitches.
2015-07-26 02:23:21 +02:00