Skip to content

Commit aaddd85

Browse files
committed
New release: 4.2.0
Updated changelog. Increased version number.
1 parent 0754569 commit aaddd85

File tree

4 files changed

+27
-10
lines changed

4 files changed

+27
-10
lines changed

CHANGELOG.txt

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
11
Changelog of MifareClassicTool (MCT):
22

3-
In development:
3+
Version 4.2.0:
4+
* Choosing the language is now possible.
5+
* Choosing the theme (light/dark) is now possible
6+
(the light theme is not very good yet).
7+
* Bugfix: Export dumps in .mct format without corrupting
8+
(Thanks to "twisteroid ambassador").
9+
* Bugfix: Writing a block with a readable key B.
10+
* Fixed several crashes.
11+
* Updated for Android 14.
12+
* Some minor code cleanup.
413

514
Version 4.1.0:
615
* Added "Hide Identical Sectors" option and show
716
tag data difference in percent for the Diff Tool
8-
(Thanks to Deun Lee)
17+
(Thanks to Deun Lee).
918
* Added French translation
10-
(Thanks to Nicolas "iomega11" André)
19+
(Thanks to Nicolas "iomega11" André).
1120
* Improved Italian translation
1221
(Thanks to Nicolas "iomega11" André and
13-
Erik "ErikPelli" Pellizzon)
14-
* Updated for Android 13
22+
Erik "ErikPelli" Pellizzon).
23+
* Updated for Android 13.
1524

1625
Version 4.0.5:
1726
* Added more well known keys to the extended key file.

Mifare Classic Tool/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "de.syss.MifareClassicTool"
1212
minSdk 19
1313
targetSdk 33
14-
versionCode 64
15-
versionName '4.1.0'
14+
versionCode 65
15+
versionName '4.2.0'
1616
}
1717

1818
androidResources {

Mifare Classic Tool/app/src/main/java/de/syss/MifareClassicTool/Common.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -720,9 +720,8 @@ public static void logUid(String uid) {
720720

721721
/**
722722
* For Activities which want to treat new Intents as Intents with a new
723-
* Tag attached. If the given Intent has a Tag extra, it will be patched
724-
* by {@link MCReader#patchTag(Tag)} and {@link #mTag} as well as
725-
* {@link #mUID} will be updated. The UID will be loged using
723+
* Tag attached. If the given Intent has a Tag extra, {@link #mTag}
724+
* as well as {@link #mUID} will be updated. The UID will be loged using
726725
* {@link #logUid(String)}. A Toast message will be shown in the
727726
* Context of the calling Activity. This method will also check if the
728727
* device/tag supports MIFARE Classic (see return values and

metadata/en-US/changelogs/65.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* Choosing the language is now possible.
2+
* Choosing the theme (light/dark) is now possible
3+
(the light theme is not very good yet).
4+
* Bugfix: Export dumps in .mct format without corrupting
5+
(Thanks to "twisteroid ambassador").
6+
* Bugfix: Writing a block with a readable key B.
7+
* Fixed several crashes.
8+
* Updated for Android 14.
9+
* Some minor code cleanup.

0 commit comments

Comments
 (0)