Skip to content

Commit bf0598b

Browse files
committed
final changes for 2.0.2 release
1 parent 2a5538b commit bf0598b

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
## 2023-01-xx 2.0.2
3+
## 2023-03-18 2.0.2
4+
* Adapt MacOS bundle creation script to enable both a native x86_64 bundle and a native aarch64 ("new" M1) bundle. Note that this aach64 bundle is 125MB bigger due to the included java.
45
* Added Portuguese Brazilian language (40% translated). Thanks to fnogcps
56
* Add Indonesian language/translation (bahasa Indonesia) (60% translated). Thanks to kodra. Required some extra work as java expects the long outdated "in_ID" instead of "id" or "id_ID".
67
* Added Russian language (70% translated). Thanks to AHOHNMYC
7-
* Adapt MacOS bundle creation script to enable both a native x86_64 bundle and a native aarch64 ("new" M1) bundle.
88
* Fix [issue #286](https://github.com/hvdwolf/jExifToolGUI/issues/286): "Search through metadata - reload images has path twice".
99
* Fix [issue #281](https://github.com/hvdwolf/jExifToolGUI/issues/281): "ExifTool Commands panel > Help window []" -> Add additional link in exiftool commands to more examples.
1010
* Improvement [issue #280](https://github.com/hvdwolf/jExifToolGUI/issues/280): "CreateDate and other EXIF properties not set on quicktime movies". Exif info is diffult to save into videos, apart from some xmp-exif. Some users use the (specific) exif edit pane, but this does not work. Added new menu item "Date/Time -> "Modify All dates & times". It uses the exiftool "-AllDates" and "track1"/"track2" dates to update any date tag be it exif, xmp, pdf, quicktime, etc.

packaging/macos/create_macos_dmg.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ else
4444
dd if=/dev/zero of=jExifToolGUI.dmg bs=1M count=300
4545
fi
4646

47-
printf "do the /sbin/mkfs.hfsplus -v \"jExifToolGUI-$arch $Version\" jExifToolGUI.dmg"
47+
printf "do the /sbin/mkfs.hfsplus -v \"jExifToolGUI-$arch $Version\" jExifToolGUI.dmg\n"
4848
/sbin/mkfs.hfsplus -v "jExifToolGUI-$arch $Version" jExifToolGUI.dmg
4949

50-
printf "do the sudo mount -o loop jExifToolGUI.dmg tmp"
50+
printf "do the sudo mount -o loop jExifToolGUI.dmg tmp\n"
5151
sudo mount -o loop -t hfsplus jExifToolGUI.dmg tmp
5252
sudo cp -a jExifToolGUI.app tmp
5353
#sudo mv jExifToolGUI.app tmp/dmg/
@@ -57,7 +57,7 @@ cd tmp
5757
sudo ln -s /Applications Applications
5858
cd ..
5959

60-
printf "sudo umount tmp"
60+
printf "sudo umount tmp\n"
6161
sudo umount tmp
6262
mv jExifToolGUI.dmg ./"jExifToolGUI-$arch-macos-$Version-with_jre.dmg"
6363
zip -9 ./"jExifToolGUI-$arch-macos-$Version-with_jre.dmg.zip" ./"jExifToolGUI-$arch-macos-$Version-with_jre.dmg"

src/main/java/org/hvdw/jexiftoolgui/ProgramTexts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class ProgramTexts {
66
*/
77
public static final String Author = "Harry van der Wolf";
88
public static final String ProjectWebSite = "http://hvdwolf.github.io/jExifToolGUI";
9-
public static final String Version = "2.0.1";
9+
public static final String Version = "2.0.2";
1010
public static final String HTML = "<html><body style='width: %1spx'>%1s";
1111
public static final String downloadInstallET = "The program will now open the ExifTool website in your browser and then the program will close itself.<br>"
1212
+"After having downloaded and installed ExifTool you can reopen jExifToolGUI.<br><br>If ExifTool is in your PATH, jExifToolGUI will simply continue.<br><br>"
-44.5 KB
Loading

0 commit comments

Comments
 (0)