mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
Update version number and changelog
This commit is contained in:
+5
-2
@@ -1,7 +1,7 @@
|
||||
LOVE 0.11.0 []
|
||||
LOVE 11.0 [Mysterious Mysteries]
|
||||
--------------
|
||||
|
||||
Released: N/A
|
||||
Released: 2018-04-01
|
||||
|
||||
* Added Object:release.
|
||||
* Added Data:clone.
|
||||
@@ -78,6 +78,7 @@ Released: N/A
|
||||
* Added deprecation warnings, on by default for non-fused games.
|
||||
* Added love.filesystem.getInfo.
|
||||
* Added 'drawcallsbatched' to love.graphics.getStats.
|
||||
* Added support for header-less DEFLATE to love.data.compress/decompress.
|
||||
|
||||
* Deprecated love.filesystem.exists / isFile / isDirectory / isSymlink / getLastModified / getSize (use getInfo instead).
|
||||
* Deprecated love.math.compress / decompress (use love.data.compress / decompress instead).
|
||||
@@ -143,6 +144,8 @@ Released: N/A
|
||||
* Updated the default error handler to allow copying the error to the clipboard when the user decides to do so.
|
||||
* Updated love.filesystem.setRequirePath to support multiple template '?' characters in each path.
|
||||
* Updated luasocket to version 3.0rc1.
|
||||
* Updated love.joystick.loadGamepadMappings so it doesn't error when given an empty string.
|
||||
* Updated love.joystick.setGamepadMapping to use the controller's name for the new mapping when possible.
|
||||
|
||||
* Fixed error in default error handler when the error message contains non UTF-8 bytes.
|
||||
* Fixed a memory leak when sending love objects to threads which never load that object's module.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: 0.11.0.{build}
|
||||
version: 11.0.{build}
|
||||
|
||||
image: Visual Studio 2013
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
AC_INIT([love], [0.11.0])
|
||||
AC_INIT([love], [11.0])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_AUX_DIR([platform/unix])
|
||||
AC_CONFIG_MACRO_DIR([platform/unix/m4])
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
.\" (c) 2008-2011 Miriam Ruiz <little_miry@yahoo.es>
|
||||
.\" (c) 2013 Bart van Strien <bart.bes@gmail.com>
|
||||
.\" (c) 2013-2018 Bart van Strien <bart.bes@gmail.com>
|
||||
.\"
|
||||
.\" This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damagesarising from the use of this software.
|
||||
.\"
|
||||
@@ -10,9 +10,9 @@
|
||||
.\" 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
|
||||
.\"
|
||||
.\" 3. This notice may not be removed or altered from any source distribution.
|
||||
.Dd December 23, 2015
|
||||
.Dd March 31, 2018
|
||||
.Dt LOVE 6
|
||||
.Os LÖVE 0.10.0
|
||||
.Os LÖVE 11.0
|
||||
.Sh NAME
|
||||
.Nm love
|
||||
.Nd 2D game development framework
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.11.0</string>
|
||||
<string>11.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.11.0</string>
|
||||
<string>11.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>LoVe</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.11.0</string>
|
||||
<string>11.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>LoVe</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
||||
@@ -25,9 +25,9 @@ namespace love
|
||||
{
|
||||
|
||||
// Version stuff.
|
||||
#define LOVE_VERSION_STRING "0.11.0"
|
||||
static const int VERSION_MAJOR = 0;
|
||||
static const int VERSION_MINOR = 11;
|
||||
#define LOVE_VERSION_STRING "11.0"
|
||||
static const int VERSION_MAJOR = 11;
|
||||
static const int VERSION_MINOR = 0;
|
||||
static const int VERSION_REV = 0;
|
||||
static const char *VERSION = LOVE_VERSION_STRING;
|
||||
static const char *VERSION_COMPATIBILITY[] = { VERSION, 0 };
|
||||
|
||||
Reference in New Issue
Block a user