pull/216/head 6.0.3
Felipe Herranz 2019-02-23 19:14:53 +01:00
rodzic 050ffb8730
commit 1e6b5d3938
3 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -1,6 +1,11 @@
CHANGELOG
=========
Release 6.0.2
--------------------------------------
- VID/PID pairs are sorted and searched in a faster way.
- FTDI driver improved.
Release 6.0.2
--------------------------------------
- Solved issue when disconnecting multiple serial ports.
@ -9,6 +14,6 @@ Release 6.0.1
--------------------------------------
- Internal serial buffer now uses [Okio](https://github.com/square/okio). This erases the 16kb write
limitation from previous versions and reduces memory footprint.
- Improved CP2102 driver and added more VID/PID pairs
- Added a [utility class for handling the common problem of split received information in some chipsets](https://github.com/felHR85/UsbSerial/blob/master/usbserial/src/main/java/com/felhr/utils/ProtocolBuffer.java)
- Improved CP2102 driver and added more VID/PID pairs.
- Added a [utility class for handling the common problem of split received information in some chipsets](https://github.com/felHR85/UsbSerial/blob/master/usbserial/src/main/java/com/felhr/utils/ProtocolBuffer.java).

Wyświetl plik

@ -192,7 +192,7 @@ Then add the dependency to your module's build.gradle:
/app/build.gradle
```groovy
implementation 'com.github.felHR85:UsbSerial:6.0.2'
implementation 'com.github.felHR85:UsbSerial:6.0.3'
```
TO-DO

Wyświetl plik

@ -1,4 +1,4 @@
VERSION_NAME=6.0.2
VERSION_NAME=6.0.3
VERSION_CODE=1
ANDROID_BUILD_MIN_SDK_VERSION=12
ANDROID_BUILD_TARGET_SDK_VERSION=27