From 3b06db1733f73496ec13752e885134790cf2f97e Mon Sep 17 00:00:00 2001 From: emanuele-f Date: Wed, 16 Jun 2021 19:50:15 +0200 Subject: [PATCH] Bump version to 1.3.9 --- CHANGELOG.md | 9 +++++++++ app/build.gradle | 4 ++-- app/src/main/jni/pcapd/CMakeLists.txt | 1 + 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86ef3ab81..38bb807bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ Releases available at https://github.com/emanuele-f/PCAPdroid/releases +## [1.3.9] - 2021-06-16 +This release brings a set of new features to make it easier to spot unwanted connections! + +- Long press a connection to whitelist it, making it easy to filter out background traffic +- Add ability to search connections +- Most netd DNS connections are now resolved into actual apps +- Add Brazilian translation (credits: mezysinc) +- Add Japanese translation (credits: Akihiro Nagai) + ## [1.3.8] - 2021-06-03 - Fix monodirectional connections with LINUX_SLL in root mode - Show plaintext request data (e.g. HTTP headers) in the connection details diff --git a/app/build.gradle b/app/build.gradle index bd438e193..156d2bfbd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.emanuelef.remote_capture" minSdkVersion 21 targetSdkVersion 30 - versionCode 30 - versionName "1.3.8" + versionCode 32 + versionName "1.3.9" } buildTypes { diff --git a/app/src/main/jni/pcapd/CMakeLists.txt b/app/src/main/jni/pcapd/CMakeLists.txt index 0cdc7caec..15e75cdcc 100644 --- a/app/src/main/jni/pcapd/CMakeLists.txt +++ b/app/src/main/jni/pcapd/CMakeLists.txt @@ -30,6 +30,7 @@ ADD_LIBRARY(pcap STATIC ${LIBPCAP_ROOT}/missing/strlcpy.c) # Executables must be names as libraries to be stored into corresponding native folder +# NOTE: only works if extractNativeLibs is true add_executable(libpcapd.so pcapd.c nl_utils.c) # Better to link static libs to avoid changing the library path