Skip to content

Commit eff178b

Browse files
committed
Bump version to 1.53.0
1 parent 44017f7 commit eff178b

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl Initialise Autoconf
22
AC_PREREQ([2.69])
33
AC_INIT(
44
[nestopia],
5-
[1.52.1])
5+
[1.53.0])
66
AC_CONFIG_SRCDIR([source])
77
AC_LANG([C++])
88

source/fltkui/version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
# https://semver.org/
66
VERSION_MAJOR=1
7-
VERSION_MINOR=52
8-
VERSION_PATCH=1
7+
VERSION_MINOR=53
8+
VERSION_PATCH=0
99
#endif
1010

1111
#ifndef JG_VERSION
12-
#define JG_VERSION "1.52.1"
12+
#define JG_VERSION "1.53.0"
1313
#endif

source/win32/NstDialogAbout.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace Nestopia
5656
ibool About::OnInitDialog(Param&)
5757
{
5858
dialog.SetItemIcon( IDC_ABOUT_ICON, Application::Instance::GetIconStyle() == Application::Instance::ICONSTYLE_NES ? IDI_APP : IDI_APP_J );
59-
dialog.Control( IDC_ABOUT_NAMEVERSION ).Text() << "Nestopia UE 1.52.1";
59+
dialog.Control( IDC_ABOUT_NAMEVERSION ).Text() << "Nestopia UE 1.53.0";
6060
return true;
6161
}
6262

source/win32/language/language.rc

+2-2
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ CAPTION "About Nestopia"
372372
FONT 8, "MS Shell Dlg", 400, 0, 1
373373
{
374374
GROUPBOX "", IDC_STATIC, 7, 7, 147, 141, 0, WS_EX_LEFT
375-
LTEXT "Nestopia UE 1.52.1", IDC_ABOUT_NAMEVERSION, 47, 14, 63, 9, SS_LEFT, WS_EX_LEFT
375+
LTEXT "Nestopia UE 1.53.0", IDC_ABOUT_NAMEVERSION, 47, 14, 63, 9, SS_LEFT, WS_EX_LEFT
376376
ICON "", IDC_ABOUT_ICON, 70, 36, 21, 20, SS_ICON, WS_EX_LEFT
377377
CTEXT "Copyright � 2003-2008 Martin Freij\nCopyright � 2012-2024 R. Danbrook\nCopyright � 2020-2024 Rupert Carmichael", IDC_STATIC, 12, 69, 139, 25, SS_CENTER, WS_EX_LEFT
378378
LTEXT "Homepage", IDC_STATIC, 13, 124, 8, 1, SS_LEFT, WS_EX_LEFT
@@ -1932,7 +1932,7 @@ VS_VERSION_INFO VERSIONINFO
19321932
VALUE "LegalCopyright", "Copyright � 2003-2008 Martin Freij"
19331933
VALUE "OriginalFilename", "English.nlg"
19341934
VALUE "ProductName", "Nestopia Language Plugin - English (US)"
1935-
VALUE "ProductVersion", "1.52.1"
1935+
VALUE "ProductVersion", "1.53.0"
19361936
}
19371937
}
19381938
BLOCK "VarFileInfo"

source/win32/language/resource.h

-2
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,6 @@
249249
#define IDM_LAUNCHER_OPTIONS_COLORS 1015
250250
#define IDC_SOUND_DEVICE 2001
251251
#define IDC_SOUND_SAMPLE_RATE 2002
252-
#define IDC_SOUND_8_BIT 2003
253-
#define IDC_SOUND_16_BIT 2004
254252
#define IDC_SOUND_LATENCY 2005
255253
#define IDC_SOUND_LATENCY_ONE 2006
256254
#define IDC_SOUND_LATENCY_TEN 2007

0 commit comments

Comments
 (0)