Skip to content

Commit

Permalink
Update pom.xml bump launch4j, release 2.1.0
Browse files Browse the repository at this point in the history
Bumped launch4j version to 2.1.0 to fix failing maven build
  • Loading branch information
baranator authored and kristian committed Jan 25, 2022
1 parent 193227b commit cc53ce1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 2.0.3 (20120-03-04)
## 2.1.0 (2022-01-25)
### Fixed
- Bumped launch4j to version 2.1.0

## 2.0.3 (2020-03-04)
### Fixed
- Fixed the (very buggy) 74181 ALU, thanks to Frank Möbius

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>lc.kra.jds</groupId>
<artifactId>jds</artifactId>
<version>2.0.3</version>
<version>2.1.0</version>

<name>JDigitalSimulator</name>
<url>http://kra.lc/projects/jdigitalsimulator/</url>
Expand Down Expand Up @@ -75,7 +75,7 @@
<plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId>
<version>1.7.15</version>
<version>2.1.0</version>
<executions>
<execution>
<id>l4j-clui</id>
Expand Down Expand Up @@ -203,4 +203,4 @@
</build>
</profile>
</profiles>
</project>
</project>
4 changes: 2 additions & 2 deletions src/main/java/lc/kra/jds/gui/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@
/**
* JDigitalSimulator
* @author Kristian Kraljic
* @version 2.0.3
* @version 2.1.0
*/
public class Application extends JFrame {
private static final long serialVersionUID = -4693271310855486553L;

public static final String FILE_EXTENSION = "jdsim";
public static File pluginDirectory, currentDirectory;

private static final String VERSION = "2.0.3", COPYRIGHT = "2010-2020", LINES_OF_CODE = "9.509", WORDS_OF_CODE = "36.133", PAGES_OF_CODE = "245";
private static final String VERSION = "2.1.0", COPYRIGHT = "2010-2022", LINES_OF_CODE = "9.509", WORDS_OF_CODE = "36.133", PAGES_OF_CODE = "245";

private static final String[]
TOOLBAR_FRAME_FOCUS = new String[]{"save", "print", "print_level", "simulate", "left", "right", "up", "down", "grid", "secure", "zoom_default", "zoom", "zoom_in", "zoom_out"},
Expand Down

0 comments on commit cc53ce1

Please sign in to comment.