Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: prepare for release of version 1.4.0 #12

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project are documented in this file. On the [releases page](https://github.com/Wandmalfarbe/EPUBCheckFX/releases) you can see all released versions of EPUBCheckFX and download the [latest version](https://github.com/Wandmalfarbe/EPUBCheckFX/releases/latest).

## [1.4.0] - 2024-05-03

- Added documentation on building for macOS to the README.
- Build macOS dmg with GitHub Actions.
- Open the currently validated EPUB file in file manager (e.g. Finder or Explorer)
- Updated dependencies

## [1.3.0] - 2023-11-18

- Renamed the tabs *Metadata* and *General Information* to *General Metadata* and *File Metadata*.
Expand Down Expand Up @@ -44,6 +51,7 @@ All notable changes to this project are documented in this file. On the [release

Initial release with different executables for Windows, macOS and Linux.

[1.4.0]: https://github.com/Wandmalfarbe/EPUBCheckFX/compare/v1.3.0...1.4.0
[1.3.0]: https://github.com/Wandmalfarbe/EPUBCheckFX/compare/v1.2.0...1.3.0
[1.2.0]: https://github.com/Wandmalfarbe/EPUBCheckFX/compare/v1.1.0...1.2.0
[1.1.0]: https://github.com/Wandmalfarbe/EPUBCheckFX/compare/v1.0.0...1.1.0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.pascalwagler</groupId>
<artifactId>epubcheckfx</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>

<name>EPUBCheckFX</name>
<description>A graphical interface for EPUBCheck.</description>
Expand Down
8 changes: 4 additions & 4 deletions src/main/assembly/dist-windows/launch4j-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
<opt>-Xss1024k</opt>
</jre>
<versionInfo>
<fileVersion>1.3.0.0</fileVersion>
<txtFileVersion>1.3.0</txtFileVersion>
<productVersion>1.3.0.0</productVersion>
<txtProductVersion>1.3.0</txtProductVersion>
<fileVersion>1.4.0.0</fileVersion>
<txtFileVersion>1.4.0</txtFileVersion>
<productVersion>1.4.0.0</productVersion>
<txtProductVersion>1.4.0</txtProductVersion>

<fileDescription>EPUBCheckFX</fileDescription>
<copyright>Pascal Wagler</copyright>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/pascalwagler/epubcheckfx/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void main(String[] args) {

public static final Preferences userPreferences = Preferences.userNodeForPackage(App.class);

private static final String VERSION = "1.3.0";
private static final String VERSION = "1.4.0";

public static final String PREFERENCES_VERSION = "version";
public static final String PREFERENCES_SEVERITY = "severity";
Expand Down
Loading