From 4546a387510fb11c2ed9b0fe47c1b9772e9b0d2c Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Sun, 8 Apr 2018 11:31:10 -0300 Subject: [PATCH] Update changelog and version --- changes.txt | 16 +++++++++++++++- extra/appveyor/appveyor.yml | 2 +- extra/windows/love.rc | Bin 3636 -> 3632 bytes platform/unix/configure.ac | 2 +- platform/unix/love.6 | 2 +- platform/xcode/ios/love-ios.plist | 2 +- platform/xcode/macosx/liblove-macosx.plist | 2 +- platform/xcode/macosx/love-macosx.plist | 2 +- src/common/version.h | 6 +++--- 9 files changed, 24 insertions(+), 10 deletions(-) diff --git a/changes.txt b/changes.txt index 4e360129e..f8a5ab9fe 100644 --- a/changes.txt +++ b/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] --------------- +-------------------------------- Released: 2018-04-01 diff --git a/extra/appveyor/appveyor.yml b/extra/appveyor/appveyor.yml index 131e165a8..5f659f78d 100644 --- a/extra/appveyor/appveyor.yml +++ b/extra/appveyor/appveyor.yml @@ -1,4 +1,4 @@ -version: 11.0.{build} +version: 11.1.{build} image: Visual Studio 2013 diff --git a/extra/windows/love.rc b/extra/windows/love.rc index 3ab8535ef3d65cb8c9f8ee325e7f13a054382705..91482de60376c4d2cd87ea68e75b737236ced11f 100644 GIT binary patch delta 61 zcmdlYvq5Hq91Eu*gCT<+5Gze?WEGw4z#=xeiA8Dh9(JzD4J<5^n^;9AZ(!z{?8Ppy Qc?(MpJEO&BMIK=$0OscpssI20 delta 63 zcmdlWvqffu91E`jgC2t+5b7})FepuKWRd6fWpHHhV(@1OVo+c(0EtZ2W9OP2z@oBw P0ZR=#qxoi89$_W`me&m6 diff --git a/platform/unix/configure.ac b/platform/unix/configure.ac index dca7e9530..d08119fd7 100644 --- a/platform/unix/configure.ac +++ b/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_AUX_DIR([platform/unix]) AC_CONFIG_MACRO_DIR([platform/unix/m4]) diff --git a/platform/unix/love.6 b/platform/unix/love.6 index 20f7dfe38..2123c37a6 100644 --- a/platform/unix/love.6 +++ b/platform/unix/love.6 @@ -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.0 +.Os LÖVE 11.1 .Sh NAME .Nm love .Nd 2D game development framework diff --git a/platform/xcode/ios/love-ios.plist b/platform/xcode/ios/love-ios.plist index 997fa8d81..0c57052c2 100644 --- a/platform/xcode/ios/love-ios.plist +++ b/platform/xcode/ios/love-ios.plist @@ -40,7 +40,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 11.0 + 11.1 CFBundleSignature ???? CFBundleVersion diff --git a/platform/xcode/macosx/liblove-macosx.plist b/platform/xcode/macosx/liblove-macosx.plist index 4491a5239..94af9b3c5 100644 --- a/platform/xcode/macosx/liblove-macosx.plist +++ b/platform/xcode/macosx/liblove-macosx.plist @@ -17,7 +17,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 11.0 + 11.1 CFBundleSignature LoVe NSPrincipalClass diff --git a/platform/xcode/macosx/love-macosx.plist b/platform/xcode/macosx/love-macosx.plist index be2b6b165..1ad5f9f80 100644 --- a/platform/xcode/macosx/love-macosx.plist +++ b/platform/xcode/macosx/love-macosx.plist @@ -62,7 +62,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 11.0 + 11.1 CFBundleSignature LoVe LSApplicationCategoryType diff --git a/src/common/version.h b/src/common/version.h index f34d3fa04..23e5f7775 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -25,12 +25,12 @@ namespace love { // Version stuff. -#define LOVE_VERSION_STRING "11.0" +#define LOVE_VERSION_STRING "11.1" 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 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"; } // love