mirror of
https://github.com/love2d/love.git
synced 2026-08-12 00:20:52 +02:00
Update version to 11.2
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
version: 11.1.{build}
|
||||
version: 11.2.{build}
|
||||
|
||||
image: Visual Studio 2013
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
AC_INIT([love], [11.1])
|
||||
AC_INIT([love], [11.2])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_AUX_DIR([platform/unix])
|
||||
AC_CONFIG_MACRO_DIR([platform/unix/m4])
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
.\" 3. This notice may not be removed or altered from any source distribution.
|
||||
.Dd March 31, 2018
|
||||
.Dt LOVE 6
|
||||
.Os LÖVE 11.1
|
||||
.Os LÖVE 11.2
|
||||
.Sh NAME
|
||||
.Nm love
|
||||
.Nd 2D game development framework
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>11.1</string>
|
||||
<string>11.2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>11.1</string>
|
||||
<string>11.2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>LoVe</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>11.1</string>
|
||||
<string>11.2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>LoVe</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
||||
@@ -25,12 +25,12 @@ namespace love
|
||||
{
|
||||
|
||||
// Version stuff.
|
||||
#define LOVE_VERSION_STRING "11.1"
|
||||
#define LOVE_VERSION_STRING "11.2"
|
||||
static const int VERSION_MAJOR = 11;
|
||||
static const int VERSION_MINOR = 1;
|
||||
static const int VERSION_MINOR = 2;
|
||||
static const int VERSION_REV = 0;
|
||||
static const char *VERSION = LOVE_VERSION_STRING;
|
||||
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", 0 };
|
||||
static const char *VERSION_COMPATIBILITY[] = { VERSION, "11.0", "11.1", 0 };
|
||||
static const char *VERSION_CODENAME = "Mysterious Mysteries";
|
||||
|
||||
} // love
|
||||
|
||||
Reference in New Issue
Block a user