Skip to content

Commit

Permalink
Increased stack size for windows launcher. Version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kristian committed May 31, 2017
1 parent 6e3d08e commit 2bf35d0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.2 (2017-05-31)
### Added
- Added support to load JDigitalSimulator simulations stored with version 1.*

## 2.0.1 (2017-03-16)
### Fixed
- Fixed high cpu-usage while dragging components with grid on
Expand Down
5 changes: 4 additions & 1 deletion 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.1</version>
<version>2.0.2</version>

<name>JDigitalSimulator</name>
<url>http://kra.lc/projects/jdigitalsimulator/</url>
Expand Down Expand Up @@ -97,6 +97,9 @@
<jre>
<minVersion>1.7.0</minVersion>
<jdkPreference>preferJre</jdkPreference>
<opts>
<opt>-Xss4m</opt>
</opts>
</jre>
<versionInfo>
<fileVersion>${project.version}.0</fileVersion>
Expand Down
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 1.1.7
* @version 2.0.2
*/
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.0", COPYRIGHT = "2010-2017", LINES_OF_CODE = "9.509", WORDS_OF_CODE = "36.133", PAGES_OF_CODE = "245";
private static final String VERSION = "2.0.2", COPYRIGHT = "2010-2017", 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 2bf35d0

Please sign in to comment.