Skip to content

Commit 6e81feb

Browse files
committed
release of version 1.8.0
1 parent 67df79e commit 6e81feb

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

Changelog.md

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

3+
## 2020-12-04 1.8.0
4+
* GPS: Add internal OpenStreetMap Nominatim "Find location" with map viewer with "copy coordinates" option back to main GPS tab. (External web search still available)
5+
* Search method for address/POI/place etc. Reverse search via coordinates when right-clicked on map.
6+
* GPS: make "mini-"tab on GPS tab to enable input of decimal degrees (primary tab) or Deg-Min-Sec coordinates. (Coordinates are copied back as decimal degrees and dec-min-sec)
7+
* Fix part 1 of [issue #95](https://github.com/hvdwolf/jExifToolGUI/issues/95): Some commands resulted in errors.
8+
* Fix part 2 of [issue #95](https://github.com/hvdwolf/jExifToolGUI/issues/95): Fix (again) issue with spaces in paths/names in "Renaming images".
9+
* "User defined Metadata Combis" always started with alphabetically first retrieved set from the database. Now starts with 10 empty rows.
10+
* Add "Preferences -> system ->Sort Categories/Tags in View tab alphabetically". Exiftool reads the tags in the order they are stored in the image. This option will allow you to sort them first before display.
11+
* Show popup to users which files have been created upon exporting the several options.
12+
* Fix lens functionality in case users use spaces (by accident) before or after a name. And "fix the fix" (from 1.6.3.1) in the "no description" field.
13+
314
## 2020-11-14 1.7.1
415
* Add "Remove metadata by category". Use the same drop-down as in the main screen to be able to select any possible category and delete the metadata in that category.
516
* Add Spanish online manual (Thanks to mrtngrsbch martingggg)

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 = "1.7.2";
9+
public static final String Version = "1.8.0";
1010
public static final String HTML = "<html><body style='width: %1spx'>%1s";
1111
public static final String cancelledETlocatefromStartup = "<html>You cancelled providing the location of exiftool.<br>I will now exit jExifToolGUI.</html>";
1212
public static final String downloadInstallET = "I will now open the ExifTool website in your browser and then close jExifToolGUI.<br>"

src/main/java/org/hvdw/jexiftoolgui/controllers/ExifToolCommands.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void executeCommands(String Commands, JEditorPane Output, JRadioButton Us
3939
}
4040
Commands = Commands.trim();
4141
String orgCommands = Commands;
42-
logger.info(" Commands \"{}\"", Commands);
42+
logger.debug(" Commands \"{}\"", Commands);
4343
String exiftool = Utils.platformExiftool();
4444

4545
if (Commands.contains("-t ") || Commands.contains("-tab ")) {
@@ -82,13 +82,11 @@ public void executeCommands(String Commands, JEditorPane Output, JRadioButton Us
8282
// for Windows, linux and MacOS
8383
cmdparams.add(tmpcmpstring.toString());
8484

85-
logger.info("cmdparams {}", cmdparams.toString());
85+
logger.debug("cmdparams {}", cmdparams.toString());
8686

8787
Executor executor = Executors.newSingleThreadExecutor();
8888
boolean finalHtmlOutput = htmlOutput;
8989
boolean finalHtmlDump = htmlDump;
90-
int threadCounter = counter;
91-
logger.debug("threadCounter {}", threadCounter);
9290
executor.execute(() -> {
9391
try {
9492
String res = CommandRunner.runCommand(cmdparams);

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.1
1+
1.8.0

0 commit comments

Comments
 (0)