Difference between revisions of "0.9.0"

m (text tweaks)
m (Updated changelog)
Line 18: Line 18:
 
* Added [[love.filesystem.getSize]].
 
* Added [[love.filesystem.getSize]].
 
* Added [[love.filesystem.mount]] and [[love.filesystem.unmount]].
 
* Added [[love.filesystem.mount]] and [[love.filesystem.unmount]].
 +
* Added an optional file search order parameter to [[love.graphics.setIdentity]].
 
* Added [[(File):isOpen|File:isOpen]] and [[(File):getMode|File:getMode]].
 
* Added [[(File):isOpen|File:isOpen]] and [[(File):getMode|File:getMode]].
 
* Added [[(File):setBuffer|File:setBuffer]], [[(File):getBuffer|File:getBuffer]], and [[(File):flush|File:flush]].
 
* Added [[(File):setBuffer|File:setBuffer]], [[(File):getBuffer|File:getBuffer]], and [[(File):flush|File:flush]].
Line 37: Line 38:
 
* Added multiple render target support to [[love.graphics.setCanvas]].
 
* Added multiple render target support to [[love.graphics.setCanvas]].
 
* Added [[love.graphics.setColorMask]].
 
* Added [[love.graphics.setColorMask]].
* Added [[love.graphics.setAlphaTest]].
 
 
* Added [[love.graphics.origin]].
 
* Added [[love.graphics.origin]].
 
* Added [[love.graphics.getRendererInfo]].
 
* Added [[love.graphics.getRendererInfo]].
Line 75: Line 75:
 
* Added [[Thread:getError]].
 
* Added [[Thread:getError]].
 
* Added [[Thread:isRunning]].
 
* Added [[Thread:isRunning]].
 +
* Added [[love.threaderror|threaderror]] event.
  
 
* Added [[love.mousefocus]] and [[love.window.hasMouseFocus]].
 
* Added [[love.mousefocus]] and [[love.window.hasMouseFocus]].
Line 93: Line 94:
 
* Removed [[SpriteBatch:addq]] and [[SpriteBatch:setq]] (functionality is merged into [[SpriteBatch:add]] and [[SpriteBatch:set]]).
 
* Removed [[SpriteBatch:addq]] and [[SpriteBatch:setq]] (functionality is merged into [[SpriteBatch:add]] and [[SpriteBatch:set]]).
 
* Removed [[ParticleSystem:isFull]] and [[ParticleSystem:isEmpty]].
 
* Removed [[ParticleSystem:isFull]] and [[ParticleSystem:isEmpty]].
 +
* Removed [[ParticleSystem:getX]] and [[ParticleSystem:getY]].
 
* Removed [[love.joystick.open]] and friends.
 
* Removed [[love.joystick.open]] and friends.
 
* Removed [[love.joystick.getBall]] and [[love.joystick.getNumBalls]].
 
* Removed [[love.joystick.getBall]] and [[love.joystick.getNumBalls]].
Line 170: Line 172:
 
* Updated the setFilter and setWrap methods, the second argument is now optional.
 
* Updated the setFilter and setWrap methods, the second argument is now optional.
 
* Updated [[Font]] and [[ParticleSystem]] rendering code, now more performant.
 
* Updated [[Font]] and [[ParticleSystem]] rendering code, now more performant.
* Updated [[SpriteBatch]] code, now more performant when (un)binding.
+
* Updated [[SpriteBatch]] code, now more performant when adding/setting and (un)binding.
 
* Updated [[Image]] creation code to error when creation fails.
 
* Updated [[Image]] creation code to error when creation fails.
 
* Updated [[Canvas]] code to support more systems.
 
* Updated [[Canvas]] code to support more systems.

Revision as of 22:38, 4 August 2013

O.png 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.  


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

Changes from 0.8.0

Additions

  • Added better multiplayer networking support with ENet (via lua-enet.)
  • 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.
  • OPTIONAL: Added support for Game Music Emu.

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.

Other Changes

  • 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.keypressed's second argument to be a unicode character string.
  • 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.)
no-game screen