Skip to content

Commit

Permalink
Show current version in standalone's About dialog, and bump to 1.44
Browse files Browse the repository at this point in the history
There were some relatively important changes to warrant another minor
version bump.
  • Loading branch information
AShiningRay committed Feb 20, 2025
1 parent dd54747 commit f9a31a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libretro/freej2me_libretro.c
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ void retro_get_system_info(struct retro_system_info *info)
{
memset(info, 0, sizeof(*info));
info->library_name = "FreeJ2ME-Plus";
info->library_version = "1.43";
info->library_version = "1.44";
info->valid_extensions = "jar|jad";
info->need_fullpath = true;
}
Expand Down
4 changes: 3 additions & 1 deletion src/org/recompile/freej2me/AWTGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@

public final class AWTGUI
{
final String VERSION = "1.44";
/* This is used to indicate to FreeJ2ME that it has to call "settingsChanged()" to apply changes made here */
private boolean hasPendingChange;

Expand Down Expand Up @@ -250,10 +251,11 @@ public AWTGUI(Config config)
awtDialogs[1].setBackground(Color.white);
awtDialogs[1].setLayout( new FlowLayout(FlowLayout.CENTER, 200, 0));
awtDialogs[1].setUndecorated(true); /* Whenever a Dialog is undecorated, it's because it's meant to look like an internal menu on FreeJ2ME's main Frame */
awtDialogs[1].setSize(230, 225);
awtDialogs[1].setSize(230, 235);
awtDialogs[1].setResizable(false);
awtDialogs[1].setLocationRelativeTo(main);
awtDialogs[1].add(new Label("FreeJ2ME-Plus - A free J2ME emulator"));
awtDialogs[1].add(new Label("Version " + VERSION));
awtDialogs[1].add(new Label("--------------------------------"));
awtDialogs[1].add(new Label("Original Project Authors:"));
awtDialogs[1].add(new Label("David Richardson (Recompile)"));
Expand Down

0 comments on commit f9a31a1

Please sign in to comment.