Difference between revisions of "0.9.0"

m (Updated changelog)
m (category)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{notice|The information on this page may not be accurate or up to date due to the information pertaining to a version that is currently in development.}}
+
[[File:0.9.0_no-game.png|thumb|no-game screen]]
The codename for LÖVE 0.9.0 is '''Baby Inspector'''. It is currently '''<span style="color:#ff0000;">not released</span>'''.
+
 
 +
The codename for LÖVE 0.9.0 is '''Baby Inspector'''. It is currently '''<span style="color:#0000ff;">released</span>'''.
  
 
== Major changes from [[0.8.0]] ==
 
== Major changes from [[0.8.0]] ==
Line 39: Line 40:
 
* Added [[Font:getAscent]], [[Font:getDescent]], and [[Font:getBaseline]].
 
* Added [[Font:getAscent]], [[Font:getDescent]], and [[Font:getBaseline]].
 
* Added [[Font:setFilter]] and [[Font:getFilter]].
 
* Added [[Font:setFilter]] and [[Font:getFilter]].
* Added [[Font:hasGlyph]].
+
* Added [[Font:hasGlyphs]].
  
 
* Added angle, scale, and shear parameters to [[love.graphics.printf]].
 
* Added angle, scale, and shear parameters to [[love.graphics.printf]].
Line 48: Line 49:
 
* Added [[Canvas:getPixel]].
 
* Added [[Canvas:getPixel]].
 
* Added [[BlendMode]] "replace".
 
* Added [[BlendMode]] "replace".
* Added line join modes.
+
* Added [[LineJoin]] modes.
 
* Added [[Mesh]] objects, allowing for arbitrary textured polygons.
 
* Added [[Mesh]] objects, allowing for arbitrary textured polygons.
 
* Added multiple render target support to [[love.graphics.setCanvas]].
 
* Added multiple render target support to [[love.graphics.setCanvas]].
Line 111: Line 112:
 
* Added unified [[Joystick:isGamepadDown|Gamepad API]] for joysticks which have a similar layout to the Xbox controller.
 
* Added unified [[Joystick:isGamepadDown|Gamepad API]] for joysticks which have a similar layout to the Xbox controller.
 
* Added joystick [[Joystick:setVibration|vibration]] support.
 
* Added joystick [[Joystick:setVibration|vibration]] support.
 
* OPTIONAL: Added support for Game Music Emu.
 
  
 
=== Removals ===
 
=== Removals ===
Line 188: Line 187:
 
* Fixed line numbers in [[Shader]] errors.
 
* Fixed line numbers in [[Shader]] errors.
 
* Fixed [[Shader:send]] with Images and Canvases failing sometimes.
 
* Fixed [[Shader:send]] with Images and Canvases failing sometimes.
 +
* Fixed [[Shader:send]] to keep a reference to sent Images and Canvases.
 
* Fixed crash when binding [[SpriteBatch]]es multiple times.
 
* Fixed crash when binding [[SpriteBatch]]es multiple times.
 
* Fixed [[SpriteBatch]]es with more than 16,384 sprites.
 
* Fixed [[SpriteBatch]]es with more than 16,384 sprites.
Line 251: Line 251:
 
* Updated [[love.timer.getTime]] to be microsecond-accurate and monotonic.
 
* Updated [[love.timer.getTime]] to be microsecond-accurate and monotonic.
  
[[File:0.9.0_no-game.png|thumb|no-game screen]]
+
* Updated Box2D to version 2.3.
  
[[Category:LoveVersions]]
+
[[Category:Versions]]

Latest revision as of 17:14, 10 May 2015

no-game screen

The codename for LÖVE 0.9.0 is Baby Inspector. It is currently released.

Major changes from 0.8.0

All changes from 0.8.0

Additions

  • Added better multiplayer networking support with ENet (via the lua-enet library.)
  • Added --fused command line argument, to simulate fusing.
  • Added liblove.
  • Added the ability to have exit values.
  • Added exit value of 1 in case of error by default.
  • Added basic support for the file:// URI scheme.
  • Added love.timer.getAverageDelta.
  • Added Data:getString.
  • Added Contact:getChildren.
  • Added Joystick objects.
  • Added joystick add and remove events.
  • Added joystick axis and hat move events.
  • Added unified Gamepad API for joysticks which have a similar layout to the Xbox controller.
  • Added joystick vibration support.

Removals

Renamed APIs

Fixes

  • Fixed memory leak in the mp3 decoder.
  • Fixed sound issues with some versions of OpenAL soft, by enabling direct channels.
  • Fixed 'random' hangs in audio.
  • Fixed case (in)sensitivity of sound file extension parsing.
  • Fixed looping support in tracker music formats.
  • Fixed skipping/looping issues when playing streaming audio Sources.
  • Fixed a race condition in Source:play.
  • Fixed WAVE sound playback.

Other Changes

  • Updated functions which return LOVE objects to re-use the Lua-side object instead of always recreating it.
  • Updated the windows console, it now tries to re-use an active one first.
  • Updated error handling, error handlers now get resolved when the error occurs.
  • Updated order of sleep/present in love.run (now draws, *then* sleeps).
  • Updated love.filesystem to try to create the appdata directory if it doesn't exist yet.
  • Updated the default filesystem identity to omit file extension.
  • Updated love.filesystem.newFile to optionally open the file.
  • Updated most love.filesystem functions to return nil, error on internal failure.
  • Updated Thread:start to accept arguments. The arguments are available in the thread via ... (the vararg expression.)
  • Updated Box2D to version 2.3.