diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eb1f2d1..e89d5cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Releases available at https://github.com/emanuele-f/PCAPdroid/releases +## [1.4.8] - 2022-04-22 +- Fix corrupted PCAP file on Android 10+ when overwriting existing file +- Start the capture by tapping "Ready" +- Allow inspecting connections after the capture is stopped +- Support UDP STUN in non-root mode +- Faster uid resolution and other improvements + ## [1.4.7] - 2022-02-10 - Fix unsolicited capture start when swiping the app from recent apps - Fix ForegroundServiceStartNotAllowedException in Android 12 diff --git a/app/build.gradle b/app/build.gradle index 0bca29a3..87a79798 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.emanuelef.remote_capture" minSdkVersion 21 targetSdkVersion 31 - versionCode 47 - versionName "1.4.7" + versionCode 48 + versionName "1.4.8" } buildTypes { diff --git a/docs/app_api.md b/docs/app_api.md index b6782b9e..0be1a46c 100644 --- a/docs/app_api.md +++ b/docs/app_api.md @@ -87,7 +87,7 @@ As shown above, the capture settings can be specified by using intent extras. Th | snaplen | int | 43 | max size in bytes for each individual packet in the PCAP dump | | max_pkts_per_flow | int | 43 | only dump the first max_pkts_per_flow packets per flow | | max_dump_size | int | 43 | max size in bytes for the PCAP dump | -| tls_decryption | bool | 48 | true to enable the built-in TLS decryption | +| tls_decryption | bool | - | true to enable the built-in TLS decryption | The `Ver` column indicates the minimum PCAPdroid version required to use the given parameter. The PCAPdroid version can be queried via the `get_status` action as explained below.