Skip to content

Commit

Permalink
Version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qligier committed Dec 27, 2022
1 parent 630f07f commit fb0943d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.0.3 (SNAPSHOT)
## 1.0.3 (2022-12-27)

- Improve performance by keeping multiple ExifTool instances open
- Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You'll also need the JRE (or JDK) 17 to run the application from the JAR or sour
Run the fat JAR:

```bash
java -jar pixel-dng-fixer-1.0.2.jar
java -jar pixel-dng-fixer-1.0.3.jar
```

Or run the application from sources:
Expand Down
2 changes: 1 addition & 1 deletion conveyor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ app {
license = MIT
icons = "icons/icons-*.png"

inputs += target/pixel-dng-fixer-1.0.3-SNAPSHOT.jar
inputs += target/pixel-dng-fixer-1.0.3.jar

site {
base-url = "github.com/qligier/PixelDngFixer/releases/latest/download"
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>ch.qligier.app</groupId>
<artifactId>pixel-dng-fixer</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.0.3</version>
<name>Pixel DNG Fixer</name>
<description>An application that fixes broken metadata of DNG (RAW) files generated by the Google Camera app built
on top of JavaFX.
Expand Down Expand Up @@ -112,7 +112,8 @@
</executions>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>${main.class}</mainClass>
</transformer>
</transformers>
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/ch/qligier/app/pixeldngfixer/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@
**/
public class Config {

public static final String APP_NAME = "Pixel DNG Fixer";
public static final String APP_VERSION = "1.0.3";
/**
* This class is not instantiable.
*/
private Config() {
}

public static final String APP_NAME = "Pixel DNG Fixer";
public static final String APP_VERSION = "1.0.3-SNAPSHOT";
}

0 comments on commit fb0943d

Please sign in to comment.