Skip to content

Commit 8b82d48

Browse files
committed
Update version string to 1.62.3.
1 parent afe8dd9 commit 8b82d48

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.62.2-{build}
1+
version: 1.62.3-{build}
22

33
image: Visual Studio 2022
44

macosx/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
<key>CFBundleExecutable</key>
163163
<string>Snes9x (i386)</string>
164164
<key>CFBundleGetInfoString</key>
165-
<string>Snes9x 1.62.2, Copyright 1996-2023 Snes9x developers.</string>
165+
<string>Snes9x 1.62.3, Copyright 1996-2023 Snes9x developers.</string>
166166
<key>CFBundleHelpBookFolder</key>
167167
<string>Snes9x Help</string>
168168
<key>CFBundleHelpBookName</key>

macosx/en.lproj/InfoPlist.strings

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Localized versions of Info.plist keys */
22

33
CFBundleName = "Snes9x";
4-
CFBundleShortVersionString = "1.62.2";
5-
CFBundleGetInfoString = "Snes9x 1.62.2, Copyright 1996-2023 Snes9x developers.";
4+
CFBundleShortVersionString = "1.62.3";
5+
CFBundleGetInfoString = "Snes9x 1.62.3, Copyright 1996-2023 Snes9x developers.";

snes9x.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define _SNES9X_H_
99

1010
#ifndef VERSION
11-
#define VERSION "1.62.2"
11+
#define VERSION "1.62.3"
1212
#endif
1313

1414
#include "port.h"

unix/configure

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/sh
2-
# From configure.ac Revision: 1.62.2 .
2+
# From configure.ac Revision: 1.62.3 .
33
# Guess values for system-dependent variables and create Makefiles.
4-
# Generated by GNU Autoconf 2.71 for Snes9x 1.62.2.
4+
# Generated by GNU Autoconf 2.71 for Snes9x 1.62.3.
55
#
66
#
77
# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
@@ -608,8 +608,8 @@ MAKEFLAGS=
608608
# Identity of this package.
609609
PACKAGE_NAME='Snes9x'
610610
PACKAGE_TARNAME='snes9x'
611-
PACKAGE_VERSION='1.62.2'
612-
PACKAGE_STRING='Snes9x 1.62.2'
611+
PACKAGE_VERSION='1.62.3'
612+
PACKAGE_STRING='Snes9x 1.62.3'
613613
PACKAGE_BUGREPORT=''
614614
PACKAGE_URL=''
615615

@@ -1318,7 +1318,7 @@ if test "$ac_init_help" = "long"; then
13181318
# Omit some internal or obsolete options to make the list less imposing.
13191319
# This message is too long to be a string in the A/UX 3.1 sh.
13201320
cat <<_ACEOF
1321-
\`configure' configures Snes9x 1.62.2 to adapt to many kinds of systems.
1321+
\`configure' configures Snes9x 1.62.3 to adapt to many kinds of systems.
13221322
13231323
Usage: $0 [OPTION]... [VAR=VALUE]...
13241324
@@ -1389,7 +1389,7 @@ fi
13891389

13901390
if test -n "$ac_init_help"; then
13911391
case $ac_init_help in
1392-
short | recursive ) echo "Configuration of Snes9x 1.62.2:";;
1392+
short | recursive ) echo "Configuration of Snes9x 1.62.3:";;
13931393
esac
13941394
cat <<\_ACEOF
13951395
@@ -1514,7 +1514,7 @@ fi
15141514
test -n "$ac_init_help" && exit $ac_status
15151515
if $ac_init_version; then
15161516
cat <<\_ACEOF
1517-
Snes9x configure 1.62.2
1517+
Snes9x configure 1.62.3
15181518
generated by GNU Autoconf 2.71
15191519
15201520
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1852,7 +1852,7 @@ cat >config.log <<_ACEOF
18521852
This file contains any messages produced by compilers while
18531853
running configure, to aid debugging if configure makes a mistake.
18541854
1855-
It was created by Snes9x $as_me 1.62.2, which was
1855+
It was created by Snes9x $as_me 1.62.3, which was
18561856
generated by GNU Autoconf 2.71. Invocation command line was
18571857
18581858
$ $0$ac_configure_args_raw
@@ -7913,7 +7913,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
79137913
# report actual input values of CONFIG_FILES etc. instead of their
79147914
# values after options handling.
79157915
ac_log="
7916-
This file was extended by Snes9x $as_me 1.62.2, which was
7916+
This file was extended by Snes9x $as_me 1.62.3, which was
79177917
generated by GNU Autoconf 2.71. Invocation command line was
79187918
79197919
CONFIG_FILES = $CONFIG_FILES
@@ -7968,7 +7968,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
79687968
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
79697969
ac_cs_config='$ac_cs_config_escaped'
79707970
ac_cs_version="\\
7971-
Snes9x config.status 1.62.2
7971+
Snes9x config.status 1.62.3
79727972
configured by $0, generated by GNU Autoconf 2.71,
79737973
with options \\"\$ac_cs_config\\"
79747974

unix/configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ([2.71])
2-
AC_INIT([Snes9x],[1.62.2],[],[snes9x])
3-
AC_REVISION([$Revision: 1.62.2 $])
2+
AC_INIT([Snes9x],[1.62.3],[],[snes9x])
3+
AC_REVISION([$Revision: 1.62.3 $])
44

55
AC_CONFIG_SRCDIR([unix.cpp])
66

win32/docs/readme-windows.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Files included in the Snes9x archive:
77
changes.txt
88
snes9x-license.txt
99

10-
version 1.62.2 March, 2023
10+
version 1.62.3 March, 2023
1111
Home page: http://www.snes9x.com/
1212
Source code: https://github.com/snes9xgit/snes9x/
1313

win32/rsrc/snes9x.rc

+2-2
Original file line numberDiff line numberDiff line change
@@ -885,12 +885,12 @@ BEGIN
885885
BEGIN
886886
VALUE "CompanyName", "http://www.snes9x.com"
887887
VALUE "FileDescription", "Snes9x"
888-
VALUE "FileVersion", "1.62.2"
888+
VALUE "FileVersion", "1.62.3"
889889
VALUE "InternalName", "Snes9x"
890890
VALUE "LegalCopyright", "Copyright 1996-2023"
891891
VALUE "OriginalFilename", "Snes9x.exe"
892892
VALUE "ProductName", "Snes9x SNES Emulator"
893-
VALUE "ProductVersion", "1.62.2"
893+
VALUE "ProductVersion", "1.62.3"
894894
END
895895
END
896896
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)