Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob van Mourik committed Feb 11, 2017
1 parent 567207f commit 2019557
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .inno.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define AppName "i18n-editor"
#define AppVersion "1.0.0-beta.4"
#define AppVersion "1.0.0"
#define AppPublisher "JvMs Software"
#define AppURL "https://github.com/jcbvm/i18n-editor"
#define AppExeName "i18n-editor.exe"
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>com.jvms</groupId>
<artifactId>i18n-editor</artifactId>
<version>1.0.0-beta.4</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down
Binary file modified screenshot-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/java/com/jvms/i18neditor/editor/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class Editor extends JFrame {
private final static Logger log = LoggerFactory.getLogger(Editor.class);

public final static String TITLE = "i18n-editor";
public final static String VERSION = "1.0.0-beta.4";
public final static String VERSION = "1.0.0";
public final static String GITHUB_REPO = "jcbvm/i18n-editor";
public final static String DEFAULT_RESOURCE_NAME = "translations";
public final static String PROJECT_FILE = ".i18n-editor-metadata";
Expand All @@ -89,7 +89,7 @@ public class Editor extends JFrame {

private EditorProject project;
private EditorSettings settings = new EditorSettings();
private ExecutorService executor = Executors.newFixedThreadPool(1);
private ExecutorService executor = Executors.newFixedThreadPool(2);
private boolean dirty;

private EditorMenuBar editorMenu;
Expand Down

0 comments on commit 2019557

Please sign in to comment.