File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
src/main/java/vip/floatationdevice/wordlehelper Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >vip.floatationdevice</groupId >
8
8
<artifactId >wordlehelper</artifactId >
9
- <version >2.0</version >
9
+ <version >2.0.1 </version >
10
10
11
11
<properties >
12
12
<maven .compiler.source>8</maven .compiler.source>
Original file line number Diff line number Diff line change 9
9
10
10
public class Common
11
11
{
12
- public final static String PROGRAM_NAME = "WordleHelper 2.0" ;
12
+ public final static String PROGRAM_NAME = "WordleHelper 2.0.1 " ;
13
13
14
14
//regex: 5 letters
15
15
public final static Pattern validWord = Pattern .compile ("^[a-zA-Z]{5}$" );
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ public GUI()
279
279
}
280
280
281
281
//set main window
282
- setTitle ("WordleHelper 2.0" );
282
+ setTitle (PROGRAM_NAME );
283
283
setSize (640 ,480 );
284
284
setResizable (false );
285
285
setLocationRelativeTo (null );
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ public class StartupWindow extends JFrame
7
7
final static JLabel startupText = new JLabel ("Starting WordleHelper..." );
8
8
public StartupWindow ()
9
9
{
10
+ setTitle ("Starting WordleHelper" );
10
11
startupText .setHorizontalAlignment (SwingConstants .CENTER );
11
12
add (startupText );
12
13
setSize (200 ,50 );
You can’t perform that action at this time.
0 commit comments