Skip to content

Commit

Permalink
prepare for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hvdwolf committed Apr 3, 2022
1 parent 4e73d2b commit 29c6ad0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 2022-04-03 2.0.0
* Complete rewite of displaying image previews in the interface based on setting of Checkbox "Create Previews":
* Checked: **Displays the images in a resizable image grid**, instead of the table. It allows for instantanious resize.
* Unchecked: In a "filenames only" table in case you really want to load hundreds or more images at the time.
* Improve reading of metadata in background with factor 3-15 (depending on number of images)
* New splashscreen on startup (Thanks to Sebastian Gersbach). Due to Apple "anti-java" policy, this splashscreen can't be displayed in the bundle.
* Screen output from a lot of names and metadata is now HTML-encoded. jExifToolGUI now correctly displays in UTF-8 (2-byte character encoding), also on Windows, but most platforms are not yet UTF-16 (3-byte character encoding) ready unless specifically installed, which means that Chinese and/or Taiwanese texts are not correctly displayed. HTML encoding overcomes this.
* Add enhancement [pull request #223](https://github.com/hvdwolf/jExifToolGUI/issues/223): Added "Save" column with checkbox to User Defined Combination. (Thanks to sossw).
* On image loading display some "placeholder" texts in the grid and the metadata table, to show the user that the program is really doing something.
* Improve exiftool startup and preferences check. It contained a small error but it is also amazing what users manage to select as "exiftool".
* Fix error in search/display of metadata via search button. Errors or corruptions in metadata made JTG crash in the background.
* Updated logback to 1.2.11 to overcome the "Security Vulnerability CVE-2021-45046" (although in this java applcation nothing will happen).
* Hebrew (עִברִית) added as language.Thanks to sufti1323.
* Altered entire application (I hope) to enable "Right-to-Left" languages (like Hebrew).
* Fix [issue #201](https://github.com/hvdwolf/jExifToolGUI/issues/201) (thanks sossw): "Edit data > copy from selected image = NOK"
* Add Feature request [issue #203](https://github.com/hvdwolf/jExifToolGUI/issues/203): "User-defined metadata > Export path unknown" => Program now shows where it is saved"


## 2021-11-13 1.10.0
* Complete rewrite of image loading and metadata.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/hvdw/jexiftoolgui/ProgramTexts.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class ProgramTexts {
*/
public static final String Author = "Harry van der Wolf";
public static final String ProjectWebSite = "http://hvdwolf.github.io/jExifToolGUI";
public static final String Version = "2.0.0-beta2";
public static final String Version = "2.0.0";
public static final String HTML = "<html><body style='width: %1spx'>%1s";
public static final String downloadInstallET = "The program will now open the ExifTool website in your browser and then the program will close itself.<br>"
+"After having downloaded and installed ExifTool you can reopen jExifToolGUI.<br><br>If ExifTool is in your PATH, jExifToolGUI will simply continue.<br><br>"
Expand Down

0 comments on commit 29c6ad0

Please sign in to comment.