Page 1 of 5

LÖVE 11.2 released - including Android APK!

Posted: Sun Nov 25, 2018 5:12 pm
by slime
LÖVE version 11.2 is out now!

This is a small release in terms of the number of fixes and changes, but it's a very important one because older versions of LÖVE 11 don't work properly on Windows 10 update 1809 and macOS 10.14. LÖVE 11.2 fixes various issues on those platforms.

LÖVE 11.2 for Android also includes fixes to support the Play Store after recent Android changes. The official release of 11.2 for Android may be delayed slightly, however.

As always the full changelog is available on the wiki, and download links are on the front page.

Re: LÖVE 11.2 released!

Posted: Sun Nov 25, 2018 9:17 pm
by MissDanish
We love you slime, thank you so much for your hard work <3

Re: LÖVE 11.2 released!

Posted: Sun Nov 25, 2018 10:02 pm
by orangeglo
Woo! Thanks for all the hard work!

Re: LÖVE 11.2 released!

Posted: Mon Nov 26, 2018 11:34 am
by Nelvin
Thanks a lot ... it's great to see constant development for Löve even while still using 10.2 for my current project I'm looking forward to move over at some point in the future.

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 6:21 pm
by Jasoco
For some reason 11.2 ignores my vsync setting and causes my game to run over 60FPS, which in my project actually makes it very laggy. I have vsync set to true both in the conf.lua file and being set with the setMode function.

macOS 10.14.

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 9:29 pm
by pgimeno
vsync is now a number. Try setting it to 1.

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 9:42 pm
by ivan
Thank you for including Body:setTransform and Body:getTransform.
This reduces my function calls notably when drawing!
pgimeno wrote: Thu Nov 29, 2018 9:29 pm vsync is now a number. Try setting it to 1.
I don't see this in the documentation/changelog. :huh:

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 9:53 pm
by zorg
ivan wrote: Thu Nov 29, 2018 9:42 pm I don't see this in the documentation/changelog. :huh:
https://bitbucket.org/rude/love/src/0fe ... es.txt-152
* Changed the 'vsync' field of love.window.setMode and t.window in love.conf. It's now an integer with 0 disabling vsync.
Since löve 11.0; the wiki still has some things that aren't updated, of course.

(Also, positive integers are basically divisors of the vsync value löve gets for a specific screen; if the screen reports 60 Hz, then vsync==1 means it'll update 60 times per second, if it's 2, then 30 times per second, etc.)

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 10:05 pm
by pgimeno
Yes, it happened in 11.0.
  • Changed the 'vsync' field of love.window.setMode and t.window in love.conf. It's now an integer with 0 disabling vsync.
11.0

Re: LÖVE 11.2 released!

Posted: Thu Nov 29, 2018 10:24 pm
by jessemillar
My game also runs incredibly quickly on 11.2 (similar to Jasoco) but setting vsync to an integer in conf.lua does not appear to affect the game's render speed.