Bump version to 1.4.8

This commit is contained in:
emanuele-f
2022-04-22 22:07:19 +02:00
parent f22a07f989
commit efce847438
3 changed files with 10 additions and 3 deletions
+7
View File
@@ -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
+2 -2
View File
@@ -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 {
+1 -1
View File
@@ -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.