mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-05 21:04:28 +08:00
Bump version to 1.9.0
This commit is contained in:
parent
2d66f8a8eb
commit
88923e1277
16
CHANGELOG.md
16
CHANGELOG.md
@ -2,6 +2,22 @@
|
||||
|
||||
Releases available at https://github.com/emanuele-f/PCAPdroid/releases
|
||||
|
||||
## [1.9.0] - 2026-02-12
|
||||
- New HTTP requests view
|
||||
- Export HTTP data in the HAR format
|
||||
- Add Portuguese (BR) translation
|
||||
- Support the zstd compression
|
||||
- Fix HTTP/2 handling (possible mismatch of requests and replies)
|
||||
- Fix WebSocket data loading from PCAP file
|
||||
- Fix buffer overruns and leaks when decrypting PCAP files
|
||||
- New language selector on Android 12 and below
|
||||
- Select and export individual connections
|
||||
- Pretty-print JSON in HTTP data
|
||||
- Support using domain names in port mapping
|
||||
- Add toggle to show system apps
|
||||
- Export data in background threads to avoid UI hangs
|
||||
- Fix ushark crash on x86_64 when decrypting PCAP files (F-Droid only)
|
||||
|
||||
## [1.8.8] - 2025-09-03
|
||||
- Support 16 KB page size devices
|
||||
- Make PCAP/CSV file name prefix configurable
|
||||
|
||||
@ -8,8 +8,8 @@ android {
|
||||
minSdkVersion 21
|
||||
compileSdk 35
|
||||
targetSdk 35
|
||||
versionCode 89
|
||||
versionName "1.8.8"
|
||||
versionCode 90
|
||||
versionName "1.9.0"
|
||||
|
||||
// only include full translations
|
||||
// NOTE: keep in sync with locales_config.xml
|
||||
|
||||
@ -167,7 +167,7 @@ public class MainActivity extends BaseActivity implements NavigationView.OnNavig
|
||||
finish();
|
||||
return;
|
||||
} else {
|
||||
if (appver < 79)
|
||||
if (appver < 90)
|
||||
showWhatsNew();
|
||||
|
||||
Prefs.refreshAppVersion(mPrefs);
|
||||
@ -329,12 +329,12 @@ public class MainActivity extends BaseActivity implements NavigationView.OnNavig
|
||||
new AlertDialog.Builder(this)
|
||||
.setTitle(R.string.whats_new)
|
||||
.setMessage(
|
||||
"- Android 15 support with edge-to-edge UI\n" +
|
||||
(PCAPdroid.getInstance().isUsharkAvailable() ?
|
||||
"- Decrypt PCAP/Pcapng files (Wireshark integration)\n" : "") +
|
||||
"- New firewall rules: block by country and by CIDR\n" +
|
||||
"- Add support for PCAPdroid extensions in Pcapng\n" +
|
||||
"- Reduced RAM usage of malware blacklists\n"
|
||||
"- New HTTP requests view\n" +
|
||||
"- Export HTTP data in the HAR format\n" +
|
||||
"- Add Portuguese (BR) translation\n" +
|
||||
"- Support the zstd compression\n" +
|
||||
"- Pretty-print JSON in HTTP data\n" +
|
||||
"- Fix HTTP/2 and WebSocket handling\n"
|
||||
)
|
||||
.setNeutralButton(R.string.ok, (dialogInterface, i) -> {})
|
||||
.show();
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 996a45cdc91ea8d5c6d15cef9a964118d0cc2fd1
|
||||
Subproject commit debf1ad9b31fdb4c56bfa3cb28fe39c5a3cf9503
|
||||
Loading…
Reference in New Issue
Block a user