mirror of https://github.com/snes9xgit/snes9x.git
Update version strings from 1.62.3 to 1.63.
This commit is contained in:
parent
d62f14212e
commit
6dd6f1945b
|
@ -1,4 +1,4 @@
|
|||
version: 1.62.3-{build}
|
||||
version: 1.63-{build}
|
||||
|
||||
image: Visual Studio 2022
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.18)
|
||||
project(snes9x-gtk VERSION 1.62.3)
|
||||
project(snes9x-gtk VERSION 1.63)
|
||||
|
||||
option(USE_SLANG "Build support for Vulkan output and .slangp shaders" ON)
|
||||
option(USE_XV "Build support for XVideo output" ON)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Snes9x 1.62.3\n"
|
||||
"Project-Id-Version: Snes9x 1.63\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-29 23:56+0100\n"
|
||||
"PO-Revision-Date: 2023-10-30 12:00+0100\n"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Stanley Kid <stanley.udr.kid@gmail.com>, 2024.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1.62.3\n"
|
||||
"Project-Id-Version: 1.63\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-29 23:56+0100\n"
|
||||
"PO-Revision-Date: 2024-02-14 15:43+0200\n"
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
<key>CFBundleExecutable</key>
|
||||
<string>Snes9x (i386)</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Snes9x 1.62.3, Copyright 1996-2023 Snes9x developers.</string>
|
||||
<string>Snes9x 1.63, Copyright 1996-2023 Snes9x developers.</string>
|
||||
<key>CFBundleHelpBookFolder</key>
|
||||
<string>Snes9x Help</string>
|
||||
<key>CFBundleHelpBookName</key>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "Snes9x";
|
||||
CFBundleShortVersionString = "1.62.3";
|
||||
CFBundleGetInfoString = "Snes9x 1.62.3, Copyright 1996-2023 Snes9x developers.";
|
||||
CFBundleShortVersionString = "1.63";
|
||||
CFBundleGetInfoString = "Snes9x 1.63, Copyright 1996-2023 Snes9x developers.";
|
||||
|
|
|
@ -1501,7 +1501,7 @@
|
|||
INFOPLIST_FILE = Snes9x/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
||||
MARKETING_VERSION = 1.62.3;
|
||||
MARKETING_VERSION = 1.63;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.snes9x.macos.snes9x;
|
||||
|
@ -1548,7 +1548,7 @@
|
|||
INFOPLIST_FILE = Snes9x/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
||||
MARKETING_VERSION = 1.62.3;
|
||||
MARKETING_VERSION = 1.63;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.snes9x.macos.snes9x;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
project(snes9x-qt VERSION 1.62)
|
||||
project(snes9x-qt VERSION 1.63)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
|
|
|
@ -13,12 +13,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "http://www.snes9x.com"
|
||||
VALUE "FileDescription", "Snes9x"
|
||||
VALUE "FileVersion", "1.62.3"
|
||||
VALUE "FileVersion", "1.63"
|
||||
VALUE "InternalName", "Snes9x"
|
||||
VALUE "LegalCopyright", "Copyright (C) 1996-2023"
|
||||
VALUE "OriginalFilename", "snes9x-qt.exe"
|
||||
VALUE "ProductName", "Snes9x Qt Interface"
|
||||
VALUE "ProductVersion", "1.62.3"
|
||||
VALUE "ProductVersion", "1.63"
|
||||
END
|
||||
END
|
||||
|
||||
|
|
2
snes9x.h
2
snes9x.h
|
@ -8,7 +8,7 @@
|
|||
#define _SNES9X_H_
|
||||
|
||||
#ifndef VERSION
|
||||
#define VERSION "1.62.3"
|
||||
#define VERSION "1.63"
|
||||
#endif
|
||||
|
||||
#include "port.h"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.71])
|
||||
AC_INIT([Snes9x],[1.62.3],[],[snes9x])
|
||||
AC_REVISION([$Revision: 1.62.3 $])
|
||||
AC_INIT([Snes9x],[1.63],[],[snes9x])
|
||||
AC_REVISION([$Revision: 1.63 $])
|
||||
|
||||
AC_CONFIG_SRCDIR([unix.cpp])
|
||||
|
||||
|
|
|
@ -883,12 +883,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "http://www.snes9x.com"
|
||||
VALUE "FileDescription", "Snes9x"
|
||||
VALUE "FileVersion", "1.62.3"
|
||||
VALUE "FileVersion", "1.63"
|
||||
VALUE "InternalName", "Snes9x"
|
||||
VALUE "LegalCopyright", "Copyright 1996-2023"
|
||||
VALUE "OriginalFilename", "Snes9x.exe"
|
||||
VALUE "ProductName", "Snes9x SNES Emulator"
|
||||
VALUE "ProductVersion", "1.62.3"
|
||||
VALUE "ProductVersion", "1.63"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in New Issue