Skip to content

Commit 62a7808

Browse files
committed
bump version
1 parent fbc0fba commit 62a7808

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>vip.floatationdevice</groupId>
88
<artifactId>wordlehelper</artifactId>
9-
<version>2.0</version>
9+
<version>2.0.1</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>

src/main/java/vip/floatationdevice/wordlehelper/Common.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
public class Common
1111
{
12-
public final static String PROGRAM_NAME = "WordleHelper 2.0";
12+
public final static String PROGRAM_NAME = "WordleHelper 2.0.1";
1313

1414
//regex: 5 letters
1515
public final static Pattern validWord = Pattern.compile("^[a-zA-Z]{5}$");

src/main/java/vip/floatationdevice/wordlehelper/GUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public GUI()
279279
}
280280

281281
//set main window
282-
setTitle("WordleHelper 2.0");
282+
setTitle(PROGRAM_NAME);
283283
setSize(640,480);
284284
setResizable(false);
285285
setLocationRelativeTo(null);

src/main/java/vip/floatationdevice/wordlehelper/gui/StartupWindow.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ public class StartupWindow extends JFrame
77
final static JLabel startupText = new JLabel("Starting WordleHelper...");
88
public StartupWindow()
99
{
10+
setTitle("Starting WordleHelper");
1011
startupText.setHorizontalAlignment(SwingConstants.CENTER);
1112
add(startupText);
1213
setSize(200,50);

0 commit comments

Comments
 (0)