From aaddd859102ba1eb229d22549d215b1ccd91cba2 Mon Sep 17 00:00:00 2001 From: ikarus Date: Wed, 3 Jan 2024 11:10:48 +0100 Subject: [PATCH] New release: 4.2.0 Updated changelog. Increased version number. --- CHANGELOG.txt | 19 ++++++++++++++----- Mifare Classic Tool/app/build.gradle | 4 ++-- .../de/syss/MifareClassicTool/Common.java | 5 ++--- metadata/en-US/changelogs/65.txt | 9 +++++++++ 4 files changed, 27 insertions(+), 10 deletions(-) create mode 100644 metadata/en-US/changelogs/65.txt diff --git a/CHANGELOG.txt b/CHANGELOG.txt index df9caacc..3e255274 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,17 +1,26 @@ Changelog of MifareClassicTool (MCT): -In development: +Version 4.2.0: + * Choosing the language is now possible. + * Choosing the theme (light/dark) is now possible + (the light theme is not very good yet). + * Bugfix: Export dumps in .mct format without corrupting + (Thanks to "twisteroid ambassador"). + * Bugfix: Writing a block with a readable key B. + * Fixed several crashes. + * Updated for Android 14. + * Some minor code cleanup. Version 4.1.0: * Added "Hide Identical Sectors" option and show tag data difference in percent for the Diff Tool - (Thanks to Deun Lee) + (Thanks to Deun Lee). * Added French translation - (Thanks to Nicolas "iomega11" André) + (Thanks to Nicolas "iomega11" André). * Improved Italian translation (Thanks to Nicolas "iomega11" André and - Erik "ErikPelli" Pellizzon) - * Updated for Android 13 + Erik "ErikPelli" Pellizzon). + * Updated for Android 13. Version 4.0.5: * Added more well known keys to the extended key file. diff --git a/Mifare Classic Tool/app/build.gradle b/Mifare Classic Tool/app/build.gradle index 9abaec24..d273d85c 100755 --- a/Mifare Classic Tool/app/build.gradle +++ b/Mifare Classic Tool/app/build.gradle @@ -11,8 +11,8 @@ android { applicationId "de.syss.MifareClassicTool" minSdk 19 targetSdk 33 - versionCode 64 - versionName '4.1.0' + versionCode 65 + versionName '4.2.0' } androidResources { diff --git a/Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Common.java b/Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Common.java index ff80d612..624ead74 100644 --- a/Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Common.java +++ b/Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Common.java @@ -720,9 +720,8 @@ public static void logUid(String uid) { /** * For Activities which want to treat new Intents as Intents with a new - * Tag attached. If the given Intent has a Tag extra, it will be patched - * by {@link MCReader#patchTag(Tag)} and {@link #mTag} as well as - * {@link #mUID} will be updated. The UID will be loged using + * Tag attached. If the given Intent has a Tag extra, {@link #mTag} + * as well as {@link #mUID} will be updated. The UID will be loged using * {@link #logUid(String)}. A Toast message will be shown in the * Context of the calling Activity. This method will also check if the * device/tag supports MIFARE Classic (see return values and diff --git a/metadata/en-US/changelogs/65.txt b/metadata/en-US/changelogs/65.txt new file mode 100644 index 00000000..076c9ba0 --- /dev/null +++ b/metadata/en-US/changelogs/65.txt @@ -0,0 +1,9 @@ + * Choosing the language is now possible. + * Choosing the theme (light/dark) is now possible + (the light theme is not very good yet). + * Bugfix: Export dumps in .mct format without corrupting + (Thanks to "twisteroid ambassador"). + * Bugfix: Writing a block with a readable key B. + * Fixed several crashes. + * Updated for Android 14. + * Some minor code cleanup.