- You can now set screen JPEG quality with the
SCREEN_JPEG_QUALITY
environment variable at launch time. Can be useful for slow networks. - Switched to yargs for option parsing to make it easier to modify the CLI.
- Almost all command line options can now be specified with environment variables.
- Internal commands are now hidden from help output but can still be used.
- Running the
stf
binary without a command now errors and shows help output (previously there was no output whatsoever). - Improved help messages for various options.
- Fixed Lenovo A806 and most likely other cheap Lenovo devices as well by updating adbkit.
- Fixed ZUK Z1, Z2 and others by adding an alternate install location for our binaries, since
/data/local/tmp
is mounted as noexec on those devices. Thanks @dkw72n! - Updated adbkit-apkreader to resolve issues with certain APK files that were unparseable and therefore failed installation. We've only seen a single a single APK with this issue, but there could be more.
- Updated adbkit-apkreader to resolve another unrelated parsing issue with slightly malformed manifest files.
- Updated adbkit to resolve an issue where trailing spaces in an adb public key would cause an error during adb connect.
- Updated adbkit to resolve issues with log parsing on Android 7.0 and later, caused by Android no longer transforming
\n
to\r\n
.
- We now use please-update-dependencies to check for outdated dependencies when running from source. It's a super quick local check that compares
package.json
with installed dependencies. Should help avoid unnecessary issues caused by forgetting to runnpm install
aftergit pull
.
- Node v6.9.x or later is now required. Earlier versions will not work. To avoid a sudden flood of issues about this change, please-update-dependencies enforces the minimum version and tells you if you need to update.
- The
-C
shortcut for the--no-cleanup
option has been removed due to the switch to yargs. Please use the full--no-cleanup
option instead. - Although likely not used by anyone, it was possible to give multiple ZeroMQ endpoints to options such as
--connect-push
by separating them with commas. This is still possible but now works in a different way due to the switch to yargs. Comma-separated hosts in a single value are no longer accepted. If you need to specify multiple hosts, simply use the option as many times as you like. This change is unlikely to have any impact whatsoever on most users. - The
--devices
option ofstf doctor
has been removed due to unnecessary complexity.
Minor release addressing the following:
- Fixed minicap on various devices running Android 4.2, incl. Qumo Quest 405, Yoga Tablet 8 etc. There may still be some that do not work, as 4.2 was customized pretty heavily by some makers. Thanks to @dkw72n for tracking down the issue and coming up with a fix! And as always, please let us know if you find any device (running any Android version) that does not work.
Minor release addressing the following:
- Fixed minicap on some/all Samsung devices running Android 5.1.1, which did not work previously. Thanks to @dkw72n for tracking down the issue and coming up with a fix!
- The openstf/stf-armv7l Docker image is being built again. Our previous armv7l build server died and Scaleway did not have more available until recently.
Minor release addressing the following:
- Android 7.1 support!
- STFService.apk now uses abstract sockets instead of TCP sockets. This fixes stability issues with devices connected in RNDIS mode.
- Updated adbkit to fix
logcat
issues on newer Android versions. - General reliability improvements in adbkit.
- Fixed minitouch on Alcatel Idol 3.
No changes, just a retag due to issues with NPM tags.
Major release addressing the following:
- Added a simple REST API. Huge thanks to @vbanthia!
- Also, we have an example showing how to use the API with Appium.
- The API server is a new app unit that must be added to your deployment. Please see the deployment guide for up to date instructions.
Minor release addressing the following:
- Added Android N Developer Preview 5 support (earlier only available by building from master).
- Added an easier to access button to stop using a device from the control screen. Thanks @miss0110!
- Updated the official Docker image to Ubuntu 16.04 and Node v6.3.0.
- Added a
--no-cleanup
option to disable the default behavior of apps getting cleaned up automatically when a user stops using the device. - Added ESLint rules for easily checking pull requests.
- Added a Slack notifier unit.
- Added an
stf doctor
command to check and output external dependencies. Very useful for issues. - Added an OpenID auth unit. Thanks @codeskyblue!
- Added optional HTTP Basic auth to the mock auth unit, for when you can't set up a proper auth adapter but still want at least a tiny bit of added security.
- Considerably smaller and up to date official Docker image for armv7l with automated nightly builds on Scaleway. May occasionally break for a while but we aim to always keep it fully up to date.
- Added instructions for using Google OAuth 2.0 login to the deployment guide, making it possible to sign in using your Google account.
- Added a configurable username field to the LDAP auth unit. Thanks @bananayong!
- Updated and added various translations.
- Fixed screen area not being visible in latest versions of Chrome.
- Fixed Meizu Note 2 and similar devices which did not work due to non-standard output.
- Fixed ports getting leaked causing the provider unit to completely run out of ports if devices die a lot. Thanks @skyline-gleb!
Patch release addressing the following:
- Disabled Nagle Algorithm in adbkit connection to improve remote debugging speed
Minor release addressing the following:
- Android 6.0 support
- Added translation support for Chinese, Korean, Russian and Spanish
- Added File Explorer feature in device controller where you can access device file system
- Added optional storage-s3 unit which can store storage data in Amazon S3 bucket instead of local
- Now, "Notes" column of device list is editable.
- Experimental armv7l support
- Added stf-setup-examples using Vagrant and Virtual Box
- DEPLOYMENT doc fixes