Browse Source

Update changelog and version

Alex Szpakowski 7 years ago
parent
commit
4546a38751

+ 15 - 1
changes.txt

@@ -1,5 +1,19 @@
+LOVE 11.1 [Mysterious Mysteries]
+--------------------------------
+
+Released: N/A
+
+* Fixed love.graphics.setCanvas failing randomly.
+* Fixed love.graphics.clear(colortable) when no Canvas is active.
+* Fixed stencil and depth support on older phones.
+* Fixed love.event.quit causing crashes and other unexpected behaviour if a Canvas is active.
+* Fixed Fixture:getShape crashing when returning a ChainShape.
+* Fixed love.joystick.loadJoystickMappings outputting a deprecation warning about love.filesystem.isFile.
+* Fixed Source:queue to show the correct argument name in the error message when an invalid data parameter is given.
+* Fixed t.console=true causing an error on Windows if lovec.exe is used.
+
 LOVE 11.0 [Mysterious Mysteries]
 LOVE 11.0 [Mysterious Mysteries]
---------------
+--------------------------------
 
 
 Released: 2018-04-01
 Released: 2018-04-01
 
 

+ 1 - 1
extra/appveyor/appveyor.yml

@@ -1,4 +1,4 @@
-version: 11.0.{build}
+version: 11.1.{build}
 
 
 image: Visual Studio 2013
 image: Visual Studio 2013
 
 

BIN
extra/windows/love.rc


+ 1 - 1
platform/unix/configure.ac

@@ -1,4 +1,4 @@
-AC_INIT([love], [11.0])
+AC_INIT([love], [11.1])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR([platform/unix])
 AC_CONFIG_AUX_DIR([platform/unix])
 AC_CONFIG_MACRO_DIR([platform/unix/m4])
 AC_CONFIG_MACRO_DIR([platform/unix/m4])

+ 1 - 1
platform/unix/love.6

@@ -12,7 +12,7 @@
 .\" 3. This notice may not be removed or altered from any source distribution.
 .\" 3. This notice may not be removed or altered from any source distribution.
 .Dd March 31, 2018
 .Dd March 31, 2018
 .Dt LOVE 6
 .Dt LOVE 6
-.Os LÖVE 11.0
+.Os LÖVE 11.1
 .Sh NAME
 .Sh NAME
 .Nm love
 .Nm love
 .Nd 2D game development framework
 .Nd 2D game development framework

+ 1 - 1
platform/xcode/ios/love-ios.plist

@@ -40,7 +40,7 @@
 	<key>CFBundlePackageType</key>
 	<key>CFBundlePackageType</key>
 	<string>APPL</string>
 	<string>APPL</string>
 	<key>CFBundleShortVersionString</key>
 	<key>CFBundleShortVersionString</key>
-	<string>11.0</string>
+	<string>11.1</string>
 	<key>CFBundleSignature</key>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<string>????</string>
 	<key>CFBundleVersion</key>
 	<key>CFBundleVersion</key>

+ 1 - 1
platform/xcode/macosx/liblove-macosx.plist

@@ -17,7 +17,7 @@
 	<key>CFBundlePackageType</key>
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
 	<key>CFBundleShortVersionString</key>
-	<string>11.0</string>
+	<string>11.1</string>
 	<key>CFBundleSignature</key>
 	<key>CFBundleSignature</key>
 	<string>LoVe</string>
 	<string>LoVe</string>
 	<key>NSPrincipalClass</key>
 	<key>NSPrincipalClass</key>

+ 1 - 1
platform/xcode/macosx/love-macosx.plist

@@ -62,7 +62,7 @@
 	<key>CFBundlePackageType</key>
 	<key>CFBundlePackageType</key>
 	<string>APPL</string>
 	<string>APPL</string>
 	<key>CFBundleShortVersionString</key>
 	<key>CFBundleShortVersionString</key>
-	<string>11.0</string>
+	<string>11.1</string>
 	<key>CFBundleSignature</key>
 	<key>CFBundleSignature</key>
 	<string>LoVe</string>
 	<string>LoVe</string>
 	<key>LSApplicationCategoryType</key>
 	<key>LSApplicationCategoryType</key>

+ 3 - 3
src/common/version.h

@@ -25,12 +25,12 @@ namespace love
 {
 {
 
 
 // Version stuff.
 // Version stuff.
-#define LOVE_VERSION_STRING "11.0"
+#define LOVE_VERSION_STRING "11.1"
 static const int VERSION_MAJOR = 11;
 static const int VERSION_MAJOR = 11;
-static const int VERSION_MINOR = 0;
+static const int VERSION_MINOR = 1;
 static const int VERSION_REV = 0;
 static const int VERSION_REV = 0;
 static const char *VERSION = LOVE_VERSION_STRING;
 static const char *VERSION = LOVE_VERSION_STRING;
-static const char *VERSION_COMPATIBILITY[] =  { VERSION, 0 };
+static const char *VERSION_COMPATIBILITY[] =  { VERSION, "11.0", 0 };
 static const char *VERSION_CODENAME = "Mysterious Mysteries";
 static const char *VERSION_CODENAME = "Mysterious Mysteries";
 
 
 } // love
 } // love