changes.txt 68 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222
  1. LOVE 0.11.0 []
  2. --------------
  3. Released: N/A
  4. * Added Object:release.
  5. * Added Data:clone.
  6. * Added queueable audio sources.
  7. * Added audio input support.
  8. * Added Source filters: low gain, high gain and band pass.
  9. * Added audio effect APIs (reverb, echo, etc.)
  10. * Added a variant to World:update, which accepts the number of iterations to run. The defaults are now 8 and 3.
  11. * Added a click count argument to love.mousepressed and love.mousereleased.
  12. * Added love.filesystem.get/setCRequirePath, and use that to find c libraries for require.
  13. * Added Channel:hasRead, which checks if a message has been read. Takes an id, which Channel:push will now return.
  14. * Added love.math.encode/decode, which support hex and base64.
  15. * Added love.math.hash, which supports MD5, SHA-1 and the SHA-2 family.
  16. * Added Transform objects to love.math.
  17. * Added support for different ImageData formats, including RGBA8 (the default), RGBA16, RGBA16F, and RGBA32F.
  18. * Added the ability to load Radiance HDR, OpenEXR, and 16 bit PNG images.
  19. * Added love.graphics.getImageFormats (replaces love.graphics.getCompressedImageFormats).
  20. * Added the ability to specify a per-object pixel density scale factor when creating Images, Canvases, Fonts, and Videos. Affects drawing.
  21. * Added Texture:getPixelWidth/Height and love.graphics.getPixelWidth/Height.
  22. * Added Texture:getPixelDensity, love.graphics.getPixelDensity, and Font:getPixelDensity.
  23. * Added Array, Cubemap, and Volume texture types and corresponding Image and Canvas APIs.
  24. * Added love.graphics.getTextureTypes, returns a table with fields indicating support for each texture type.
  25. * Added mipmapping support to Canvases, including both auto-generated mipmaps and manually rendering to a specific mipmap level.
  26. * Added 'stencil8', 'depth24stencil8', 'depth32fstencil8', 'depth16', 'depth24', and 'depth32f' pixel formats for Canvases.
  27. * Added optional 'readable' boolean field to the table passed into love.graphics.newCanvas.
  28. * Added optional 'depthstencil' field to the table passed into love.graphics.setCanvas, for using a depth/stencil Canvas.
  29. * Added optional 'depth' and 'stencil' boolean fields to the table passed into setCanvas, for enabling depth and stencil buffers if 'depthstencil' isn't used.
  30. * Added shadow sampler support for Canvases.
  31. * Added variant of love.graphics.getCanvasFormats which takes a 'readable' boolean.
  32. * Added love.graphics.drawLayer and SpriteBatch:add/setLayer for easily drawing layers of Array Textures.
  33. * Added variants of love.graphics.print and printf which take a Font argument.
  34. * Added variants of love.graphics.clear to control how the active depth and stencil buffers are cleared.
  35. * Added love.graphics.flushBatch for manually flushing automatically batched draws.
  36. * Added SpriteBatch:setDrawRange.
  37. * Added per-shader opt in support for the GLSL 3.30 and GLSL ES 3.00 shading languages.
  38. * Added 'void effect()' pixel shader entry point.
  39. * Added love.graphics.validateShader.
  40. * Added Shader:hasUniform.
  41. * Added support for non-square shader uniform matrices on desktop platforms and on mobile GLSL 3.
  42. * Added Shader:send(matrixname, is_column_major, matrix, ...) which specifies how to interpret the matrix table arguments.
  43. * Added 'borderellipse' and 'borderrectangle' ParticleSystem distributions.
  44. * Added ParticleSystem:set/getAreaSpreadAngle and set/getAreaSpreadIsRelativeDirection.
  45. * Added love.graphics.captureScreenshot (replaces love.graphics.newScreenshot).
  46. * Added 'glsl3', 'instancing', 'fullnpot','pixelshaderhighp', and 'shaderderivatives' graphics features.
  47. * Added 'anisotropy' graphics limit.
  48. * Added Mesh instancing support via love.graphics.drawInstanced and Mesh:attachAttribute.
  49. * Added a Mesh:attachAttribute variant that takes a different target attribute name.
  50. * Added Mesh:detachAttribute.
  51. * Added a variant of Mesh:setVertexMap which accepts a Data object.
  52. * Added love.window.updateMode.
  53. * Added the ability to prevent love from creating a stencil buffer for the window.
  54. * Added cycle detection to Variant's table serialization, cycles now cause an error, rather than a stack overflow.
  55. * Added love.graphics.newShader File and FileData variants.
  56. * Added a default love.threaderror callback, which raises the error in the main thread.
  57. * Added checks for invalid constants passed to love.keyboard.isDown/isScancodeDown.
  58. * Added deprecation warnings, on by default for non-fused games.
  59. * Added love.filesystem.getInfo.
  60. * Added 'drawcallsbatched' to love.graphics.getStats.
  61. * Changed all color values to be in the range 0-1, rather than 0-255.
  62. * Changed high-dpi functionality to require much less code (often none at all) for things to appear at the correct sizes and positions.
  63. * Changed love.graphics.print and friends to ignore carriage returns.
  64. * Changed the 'multiply' blend mode to error if not used with the 'premultiplied' blend alpha mode, since the formula only works with that anyway.
  65. * Changed some love.graphics, love.window, and love.event APIs to cause an error if a Canvas is active.
  66. * Changed stenciling functionality with a Canvas active to require stencil=true (or a custom stencil-formatted Canvas) to be set in setCanvas.
  67. * Changed Mesh:setDrawRange to take 'start' and 'count' parameters instead of 'min' and 'max'.
  68. * Changed the 'vsync' field of love.window.setMode and t.window in love.conf. It's now an integer with 0 disabling vsync.
  69. * Changed the audio playback APIs drastically.
  70. * Changed enet to no longer set the 'enet' global, again matching luasocket.
  71. * Changed Source seeking behaviour, all kinds of Sources now behave similarly when seeking past the boundaries.
  72. * Changed love.timer.step, it now returns dt.
  73. * Fixed a memory leak when sending love objects to threads which never load that object's module.
  74. * Fixed os.execute always returning -1 in Linux.
  75. * Fixed the default reference angle for WeldJoint, PrismaticJoint, and RevoluteJoint.
  76. * Fixed love.graphics.set/getClipboard text to error instead of crashing, when a window hasn't been created.
  77. * Fixed Joystick:getGamepadMapping to work with xinput controllers.
  78. * Fixed baseline calculation when rendering text.
  79. * Fixed VaryingTexCoords and love_ScreenSize in shaders to be 'highp' in OpenGL ES, when supported.
  80. * Fixed error in default error handler when the error message contains non UTF-8 bytes.
  81. * Fixed love.joystick.setGamepadMapping's replacement code.
  82. * Improved performance when drawing textures, shapes, lines, and points by automatically batching their draw calls together when possible.
  83. * Improved performance of Shader:send when the Shader is not active.
  84. * Improved performance of love.math.randomNormal when LuaJIT's JIT compiler is enabled.
  85. * Renamed love.window.getPixelScale to love.window.getPixelDensity.
  86. * Renamed love.mouse.hasCursor to love.mouse.isCursorSupported.
  87. * Renamed love.errhand to love.errorhandler.
  88. * Renamed Source/SoundData/Decoder:getChannels to getChannelCount.
  89. * Renamed PrismaticJoint/RevoluteJoint:hasLimitsEnabled to areLimitsEnabled.
  90. * Renamed love.audio.getSourceCount to love.audio.getActiveSourceCount.
  91. * Removed the default source type for love.audio.newSource.
  92. * Removed variant of love.filesystem.newFileData which takes base64 data, use love.math.decode instead.
  93. * Removed the no-argument variant of Text:set, use Text:clear instead.
  94. * Removed love.graphics.getCompressedImageFormats, use love.graphics.getImageFormats instead.
  95. * Removed the 'void effects(...)' pixel shader entry point. Use the new 'void effect()' instead.
  96. * Removed Shader:getExternVariable, use Shader:hasUniform instead.
  97. * Removed love.graphics.newScreenshot, use love.graphics.captureScreenshot instead.
  98. * Removed deprecated enet function host:socket_get_address.
  99. * Removed functions deprecated in LÖVE 0.10.2:
  100. * Removed Shader:sendInt, Shader:sendBoolean, Shader:sentFloat, Shader:sendMatrix, and Shader:sendTexture (use Shader:send instead).
  101. * Removed love.window.isCreated (use love.window.isOpen instead).
  102. * Updated Source:seek to work if the Source isn't playing.
  103. * Updated love.event.poll to stop allocating memory unnecessarily.
  104. * Updated love.math.random to have improved numeric distribution.
  105. * Updated love.graphics to support Core Profile OpenGL 3.3+ when available.
  106. * Updated shaders to always expose derivative functions (dFdx, dFdy, fwidth) when available in OpenGL ES.
  107. * Updated love.graphics.circle/ellipse/arc/rectangle to take transformation scale into account when determining the number of segments to use.
  108. * Updated Font glyph generation to improve antialiasing.
  109. * Updated Canvas:newImageData to return an ImageData with a format that matches the Canvas' as closely as possible.
  110. * Updated love.graphics.newImage to treat file names ending with "@2x", "@3x", etc. as a pixel density scale factor if none is explicitly supplied.
  111. * Updated luasocket to version 3.0rc1.
  112. LOVE 0.10.3 [Super Toast]
  113. -------------------------
  114. Released: N/A
  115. * Added RopeJoint:setMaxLength.
  116. * Fixed Shader:send and Shader:sendColor ignoring the last argument for an array.
  117. * Fixed a crash when love.graphics.pop is called after a love.window.setMode while the transformation stack was not empty.
  118. * Fixed BezierCurves to error instead of hanging in some situations.
  119. * Fixed compilation of luasocket with newer luajit 2.1.0 beta versions.
  120. * Improved command line argument handling.
  121. * Improved seeking support, especially for short video files.
  122. * Updated the default error handler to allow copying the error to the clipboard when the user decides to do so.
  123. * Updated love.filesystem.setRequirePath to support multiple template '?' characters in each path.
  124. LOVE 0.10.2 [Super Toast]
  125. -------------------------
  126. Released: 2016-10-31
  127. * Added lovec.exe in Windows. It is the same as love.exe but built with the Console subsystem, so it always uses or provides a console.
  128. * Added the ability to restart the game via love.event.quit("restart").
  129. * Added support for passing a table to love.mouse.isDown, love.keyboard.isDown, love.keyboard.isScancodeDown, Joystick:isDown, and Joystick:isGamepadDown.
  130. * Added love.window.isMaximized.
  131. * Added 'shaderswitches' field to the table returned by love.graphics.getStats.
  132. * Added Quad:getTextureDimensions.
  133. * Added 'ellipse' area distribution to ParticleSystems.
  134. * Added support for BC4-7 compressed texture formats in KTX files.
  135. * Added PrismaticJoint:getAxis and WheelJoint:getAxis.
  136. * Added 2-point version of love.physics.newRevoluteJoint.
  137. * Added table variants of Fixture:setCategory and Fixture:setMask.
  138. * Added getNextVertex and getPreviousVertex to ChainShape and EdgeShape.
  139. * Added optional reference angle arguments to RevoluteJoint, PrismaticJoint, and WeldJoint constructors.
  140. * Added RevoluteJoint:getReferenceAngle, PrismaticJoint:getReferenceAngle, and WeldJoint:getReferenceAngle.
  141. * Deprecated undocumented Shader:sendTexture, Shader:sendMatrix, Shader:sendInt, and Shader:sendFloat functions.
  142. * Fixed love on iOS 6.
  143. * Fixed os.execute always returning -1 on Linux.
  144. * Fixed the love.lowmemory callback to call collectgarbage() after the callback has fired, instead of before.
  145. * Fixed love.math.noise(nil) to error instead of returning nil.
  146. * Fixed an occasional crash when a Thread ends.
  147. * Fixed a hang at the end of video playback with some video files.
  148. * Fixed the video decoding thread to not do any work when there are no videos to decode.
  149. * Fixed love.graphics.newVideo(file) to no longer error if love.audio is disabled.
  150. * Fixed a rare bug in Source:play for streaming Sources if the associated OpenAL source object was previously used for a static Source.
  151. * Fixed corrupted Font glyphs in rare cases.
  152. * Fixed stencils inside Canvases on some OpenGL ES 2 devices.
  153. * Fixed an OpenGL error in OpenGL ES 3 when multiple render targets are used.
  154. * Fixed love.window.setMode crashing when called with a Canvas active.
  155. * Fixed love.window.maximize to update the reported window dimensions immediately.
  156. * Fixed gamma correction of ImageFonts and BMFonts with colored images.
  157. * Fixed the default shader improperly applying gamma correction to per-vertex colors when gamma correction is requested but not supported on OpenGL ES.
  158. * Fixed text coloring breaking because of an empty string.
  159. * Fixed large burst of particles when dramatically increasing the emission rate of a ParticleSystem.
  160. * Fixed SpriteBatch:setBufferSize to keep old sprite data if it can fit.
  161. * Fixed MouseJoint:getBodies unconditionally erroring.
  162. * Fixed memory leak in Text:set.
  163. * Fixed incorrect kerning caused by using kerning information for the wrong character in some fonts.
  164. * Fixed ImageData:setPixel/getPixel/mapPixel and SoundData:setSample/getSample to properly handle non-integer coordinates.
  165. * Improved performance of Channel methods by roughly 2x in many cases.
  166. * Improved performance of Shader:send when small numbers of arguments are given.
  167. * Updated love.filesystem.mount to accept a DroppedFile as the first parameter.
  168. * Updated Shader:send to do type and argument checking based on the specified uniform variable's information instead of the arguments to the function.
  169. * Updated Shader:send to accept a flat table for matrix uniforms.
  170. LOVE 0.10.1 [Super Toast]
  171. -------------------------
  172. Released: 2016-02-14
  173. * Added a new love.conf flag t.externalstorage, which determines whether files are saved in internal or external storage on Android devices.
  174. * Added a new variant of love.graphics.arc which can draw different types of arcs ("pie", "open", or "closed").
  175. * Added "lighten" and "darken" BlendModes. They can only be used with the "premultiplied" BlendAlphaMode.
  176. * Added the "lighten" GraphicsFeature constant.
  177. * Added the ability to avoid clearing specific Canvases when calling love.graphics.clear, if multiple Canvases are active at once via love.graphics.setCanvas.
  178. * Added Text:getDimensions.
  179. * Added optional "collideconnected" argument to love.physics.newMotorJoint.
  180. * Fixed a Lua error in the no-game screen if the window's height is too small.
  181. * Fixed the default error handler to reset the mouse Cursor.
  182. * Fixed love.filesystem functions crashing when called if liblove is used directly without calling love.filesystem.init.
  183. * Fixed audio on Android to pause when the app is inactive, and resume when the app becomes active again.
  184. * Fixed the Video decoding thread hanging after Video:seek or when a Video finishes.
  185. * Fixed Video:isPlaying to always return false after it finishes playing.
  186. * Fixed RandomGenerator:random crashing if a nil 'self' is used.
  187. * Fixed loading BMFont files which have characters with 0 width or height (a space character, for example).
  188. * Fixed love.graphics.newFont causing crashes if FileData is passed in.
  189. * Fixed love.graphics.clear(colortable) causing crashes on OpenGL ES 2 systems when a Canvas is active.
  190. * Fixed a driver bug on some Android devices which caused all objects to show up as black.
  191. * Fixed a driver bug on Windows with AMD graphics cards where love.graphics.clear would not always work.
  192. * Fixed Shader:sendColor incorrectly converting alpha values from sRGB to linear RGB when gamma-correct rendering is enabled.
  193. * Fixed love.graphics.newMesh(vertices) double-converting colors from sRGB to linear RGB when gamma-correct rendering is enabled.
  194. * Fixed love.graphics.new* crashing when there is no graphics context/window.
  195. * Updated the Windows executable to prefer the high-powered AMD graphics card on systems which have switchable Intel+AMD GPUs.
  196. * Updated love.touch.getTouches to return the list of IDs in the relative order that the touches initially happened, instead of being in a random order.
  197. * Updated the error messages caused by invalid or bad arguments to ImageData and SoundData methods to be more descriptive.
  198. LOVE 0.10.0 [Super Toast]
  199. -------------------------
  200. Released: 2015-12-22
  201. * Added an iOS port.
  202. * Added an Android port.
  203. * Added the flag t.accelerometerjoystick to love.conf. Disables accelerometer-as-joystick functionality on mobile devices when false.
  204. * Added the flag t.gammacorrect to love.conf (replaces t.window.srgb.) Enabling it globally enables gamma-correct rendering, when supported.
  205. * Added video playback support for Ogg Theora videos, via love.graphics.newVideo and Video objects.
  206. * Added love.video module. It is not used for displaying videos on-screen, only decoding them.
  207. * Added love.touch module. Note that it has important differences from the touch implementation in the LÖVE 0.9 Android and iOS ports.
  208. * Added love.touchpressed, love.touchreleased, and love.touchmoved.
  209. * Added love.system.vibrate.
  210. * Added love.filesystem.setRequirePath and love.filesystem.getRequirePath.
  211. * Added an optional program exit argument to love.event.quit.
  212. * Added love.filedropped and love.directorydropped event callback functions.
  213. * Added love.lowmemory event callback function, called when the app is running out of memory on mobile operating systems.
  214. * Added love.textedited event callback function, called when the user is compositing text (e.g. via an IME.)
  215. * Added love.wheelmoved event callback function (replaces "wu" and "wd" constants for love.mousepressed.)
  216. * Added love.mouse.hasCursor.
  217. * Added a boolean argument to love.mousepressed and love.mousereleased indicating whether the button event originated from a touch press.
  218. * Added optional x/y/width/height arguments to love.keyboard.setTextInput. They tell the system where text will show up so on-screen keyboards can avoid that area.
  219. * Added Source:getType (replaces Source:isStatic.)
  220. * Added Source:getDuration and Decoder:getDuration.
  221. * Added an optional string argument containing raw pixel byte data to the width/height variant of love.image.newImageData.
  222. * Added love.graphics.ellipse.
  223. * Added rounded-rectangle support to love.graphics.rectangle.
  224. * Added love.graphics.points (replaces love.graphics.point.)
  225. * Added love.graphics.intersectScissor.
  226. * Added an optional argument to love.graphics.setBlendMode which indicates whether to treat the colors of drawn objects as having pre-multiplied alpha.
  227. * Added love.graphics.getSupported (replaces love.graphics.isSupported.)
  228. * Added love.graphics.getSystemLimits (replaces love.graphics.getSystemLimit.)
  229. * Added love.graphics.stencil and love.graphics.set/getStencilTest (replaces love.graphics.setStencil.)
  230. * Added love.graphics.isActive.
  231. * Added color arguments to love.graphics.clear. It no longer always uses the background color value.
  232. * Added love.graphics.discard.
  233. * Added love.graphics.isGammaCorrect.
  234. * Added the "clampzero" WrapMode.
  235. * Added the ability to specify custom mipmaps when creating an image, via love.graphics.newImage(filename, {mipmaps={mip1, mip2, ...}})
  236. * Added optional x/y/width/height arguments to Image:refresh and Canvas:newImageData.
  237. * Added Image:getFlags.
  238. * Added one- and two-channel Canvas formats: r8, rg8, r16f, rg16f, r32f, and rg32f.
  239. * Added support for different formats in each Canvas when using multi-canvas rendering. Added the "multicanvasformats" Graphics Feature constant.
  240. * Added support for OpenGL ES 2 and 3.
  241. * Added support for loading ETC, EAC, PVRTC, and ASTC compressed textures on systems that support them.
  242. * Added custom vertex attribute support for Meshes via new variants of love.graphics.newMesh.
  243. * Added Mesh:setVertexAttribute and Mesh:getVertexAttribute.
  244. * Added Mesh:getVertexFormat.
  245. * Added Mesh:flush.
  246. * Added an optional 'startvertex' argument to Mesh:setVertices.
  247. * Added the ability for love.graphics.newMesh and Mesh:setVertices to accept a Data object.
  248. * Added Mesh:setAttributeEnabled and Mesh:isAttributeEnabled.
  249. * Added Mesh:attachAttribute.
  250. * Added SpriteBatch:attachAttribute.
  251. * Added Shader:sendColor.
  252. * Added new shader functions: gammaCorrectColor, gammaToLinear, and linearToGamma. The functions also have 'precise' and 'fast' variants.
  253. * Added Text objects and love.graphics.newText.
  254. * Added per-character color support to love.graphics.print/printf and to Text objects.
  255. * Added BMFont bitmap font file support to love.graphics.newFont and love.font.
  256. * Added kerning support for TrueType/OpenType and BMFont Fonts.
  257. * Added an optional font hinting argument to love.graphics.newFont when loading TrueType fonts.
  258. * Added an optional spacing argument to love.graphics.newImageFont, which applies additional spacing to all rendered glyphs.
  259. * Added Font:setFallbacks.
  260. * Added love.window.maximize.
  261. * Added love.window.close.
  262. * Added love.window.requestAttention.
  263. * Added love.window.setDisplaySleepEnabled and love.window.isDisplaySleepEnabled.
  264. * Added BezierCurve:renderSegment and BezierCurve:removeControlPoint.
  265. * Added BezierCurve:getSegment.
  266. * Added love.math.compress and love.math.decompress.
  267. * Added Channel:performAtomic.
  268. * Changed love.mousepressed, love.mousereleased, and love.mouse.isDown to use button numbers instead of named button constants.
  269. * Changed love.keypressed to be love.keypressed(key, scancode, isrepeat).
  270. * Changed love.keyreleased to be love.keyreleased(key, scancode).
  271. * Changed Font:getWrap's second return value to be a table containing the text split into lines.
  272. * Changed love.graphics.newImage's optional second argument to be a table of flags (flags are "mipmaps" and "linear".)
  273. * Changed the arguments for the standard variants of love.graphics.newMesh to newMesh(vertices [, drawmode, usage]) and newMesh(vertexcount [, drawmode, usage]).
  274. * Changed ImageData:encode to return a FileData object. ImageData:encode's first parameter is now the format to encode to, and the second parameter is an optional filename to write to.
  275. * Renamed the "normal" Fullscreen Type to "exclusive".
  276. * Renamed the DistanceModel constants "inverse clamped", "linear clamped", and "exponent clamped" to "inverseclamped", "linearclamped", and "exponentclamped".
  277. * Renamed the "additive", "subtractive", and "multiplicative" BlendModes to "add", "subtract", and "multiply".
  278. * Renamed the KeyConstant and Scancode representing the spacebar from " " to "space".
  279. * Renamed File:eof to File:isEOF.
  280. * Renamed Canvas:getImageData to Canvas:newImageData.
  281. * Renamed love.image's CompressedData type to CompressedImageData.
  282. * Removed callback variant of love.filesystem.getDirectoryItems.
  283. * Removed the "wu" and "wd" constants for love.mousepressed (replaced by love.wheelmoved.)
  284. * Removed the named mouse button constants (replaced by button numbers.)
  285. * Removed Source:isStatic (replaced by Source:getType.)
  286. * Removed image loading support for all (non-compressed texture) file formats except for PNG, JPEG, TGA, and BMP.
  287. * Removed JPEG encoding support from ImageData:encode.
  288. * Removed love.graphics.point (replaced by love.graphics.points.)
  289. * Removed love.graphics.setPointStyle and love.graphics.getPointStyle.
  290. * Removed love.graphics.isSupported (replaced by love.graphics.getSupported.)
  291. * Removed love.graphics.getSystemLimit (replaced by love.graphics.getSystemLimits.)
  292. * Removed love.graphics.setStencil (replaced by love.graphics.stencil and love.graphics.setStencilTest.)
  293. * Removed the "canvas", "shader", "npot", "subtractive", and "mipmap" Graphics Feature constants (the features always have guaranteed support now.)
  294. * Removed the "multicanvas" Graphics Feature constant (use love.graphics.getSystemLimits instead.)
  295. * Removed the "srgb" Graphics Feature constant (use love.graphics.isGammaCorrect() or love.graphics.getCanvasFormats().srgb instead.)
  296. * Removed the "srgb" flag in love.window.setMode and in the t.window table in love.conf (Replaced by t.gammacorrect.)
  297. * Removed the "premultiplied" blend mode (love.graphics.setBlendMode("alpha", "premultiplied") now does the same thing.)
  298. * Removed Canvas:getPixel (use Canvas:newImageData instead.)
  299. * Removed Canvas:clear (use love.graphics.clear instead.)
  300. * Removed Mesh:getVertices.
  301. * Removed Mesh:setVertexColors and Mesh:hasVertexColors (use Mesh:setAttributeEnabled("VertexColor", enable) instead.)
  302. * Removed functions deprecated in LOVE 0.9.1 and 0.9.2:
  303. * Removed love.graphics.getMaxImageSize and love.graphics.getMaxPointSize (replaced by love.graphics.getSystemLimits.)
  304. * Removed Mesh:set/getImage, SpriteBatch:set/getImage, and ParticleSystem:set/getImage (replaced by set/getTexture.)
  305. * Removed SpriteBatch:bind/unbind.
  306. * Removed Canvas:getFSAA and the "fsaa" flag in love.conf and love.window.setMode (replaced by Canvas:getMSAA and "msaa".)
  307. * Removed the "dxt" and "bc5" Graphics Feature constant (replaced by love.graphics.getCompressedImageFormats.)
  308. * Removed the "hdrcanvas" Graphics Feature constant (replaced by love.graphics.getCanvasFormats.)
  309. * Removed love.window.getWidth/getHeight/getDimensions (use love.graphics.getWidth/getHeight/getDimensions or love.window.getMode instead.)
  310. * Fixed utf8.char.
  311. * Fixed detection of fused love games.
  312. * Fixed World:getCallbacks and World:getContactFilter when used in coroutines.
  313. * Fixed crashes when objects which store Lua callback functions are garbage collected after being used in coroutines.
  314. * Fixed memory leaks in love.physics if World:destroy is never called. When a World is GCed it now destroys all objects it owns.
  315. * Fixed love.keyboard.getKeyFromScancode crashing when an invalid scancode is given.
  316. * Fixed decoding of 8-bit WAV files.
  317. * Fixed a crash issue when rewinding streaming ogg Sources, when certain versions of libvorbis are used.
  318. * Fixed love.audio.stop() not rewinding streaming Sources.
  319. * Fixed the stencil buffer in Canvases when an unsupported MSAA value is used to create the Canvas.
  320. * Fixed Canvas:renderTo to restore the previous Canvas if an error occurs in the passed function.
  321. * Fixed love.graphics.draw(canvas) to cause an error if that Canvas is the active one.
  322. * Fixed Mesh:getVertexMap to return nil rather than an empty table, if no vertex map has been set.
  323. * Fixed love.graphics.getColorMask.
  324. * Fixed the default offset for particles when ParticleSystem:setQuads or ParticleSystem:setTexture is used.
  325. * Fixed love.graphics.shear resetting all love.graphics transformations.
  326. * Fixed the "add" and "subtract" blend modes to no longer modify the alpha of the Canvas / screen.
  327. * Improved the performance of World:rayCast and World:queryBoundingBox.
  328. * Improved the performance of love.graphics.line and other line drawing functions, when the "smooth" LineStyle is used.
  329. * Improved the performance of Shader:send when matrices are used.
  330. * Improved the performance of ImageData and SoundData methods when LuaJIT's JIT compiler is enabled, by using efficient FFI code.
  331. * Improved the performance of love.math.noise, love.math.gammaToLinear, love.math.linearToGamma, love.math.random, and RandomGenerator:random when LuaJIT's JIT compiler is enabled.
  332. * Updated the compatibility warning notice to use a message box and to show the version specified in love.conf.
  333. * Updated the compatibility warning notice to display before main.lua is loaded.
  334. * Updated the __tostring metamethod of love objects to output the pointer value, similar to tostring(table).
  335. * Updated World:setCallbacks, World:setContactFilter, World:queryBoundingBox, and World:rayCast to have improved argument type checking.
  336. * Updated threads to load love.filesystem automatically.
  337. * Updated love.filesystem to enable symlinks by default.
  338. * Updated love.math.setRandomSeed and RandomGenerator:setSeed to produce better results for the first few random() calls.
  339. * Updated love.math.random and RandomGenerator:random to produce slightly better results in general.
  340. * Updated Source methods that deal with spatial audio to error rather than failing silently if the Source isn't mono.
  341. * Updated the 3D and 4D variants of love.math.noise to use Perlin noise rather than Simplex noise, to avoid patent issues.
  342. * Updated ImageFonts to no longer treat separator pixels as spacing.
  343. * Updated the default font to use less memory.
  344. * Updated the behavior of text wrapping with love.graphics.printf and Font:getWrap to work better.
  345. * Updated love.graphics.print and love.graphics.printf to no longer automatically round the x and y position arguments.
  346. * Updated some error messages for love.graphics.newImage to be more descriptive.
  347. * Updated love.graphics color functions to automatically apply love.math.gammaToLinear to color values when gamma-correct rendering is enabled.
  348. * Updated the 'normal' Canvas format to internally use 'srgb' rather than 'rgba8' when gamma-correct rendering is enabled.
  349. * Updated love.graphics.setColor to affect all drawn objects, including ParticleSystems, SpriteBatches, and Meshes.
  350. * Updated the default fullscreen type to be "desktop" rather than "exclusive".
  351. * Updated the minimum runtime system requirements of LOVE to require OpenGL 2.1 or OpenGL ES 2 support.
  352. * Updated the pixel shader effect function so screen_coords.y is 0 at the top of the screen instead of the bottom.
  353. * Updated Images to require setting the mipmaps flag to true on creation in order to use mipmaps.
  354. * Updated Images to allow mipmaps for non-power-of-two sizes.
  355. LOVE 0.9.2 [Baby Inspector]
  356. ---------------------------
  357. Released: 2015-02-14
  358. * Added Lua 5.3's UTF-8 module (via utf8 = require("utf8")).
  359. * Added Shader:getExternVariable.
  360. * Added several new canvas texture formats.
  361. * Added love.graphics.getCanvasFormats.
  362. * Added love.graphics.getCompressedImageFormats.
  363. * Added ParticleSystem:setQuads.
  364. * Added ParticleSystem:setLinearDamping.
  365. * Added SpriteBatch:flush.
  366. * Added love.graphics.getStats.
  367. * Added "mirroredrepeat" wrap mode.
  368. * Added love.audio.setDopplerScale and love.audio.getDopplerScale.
  369. * Added optional duration argument to Joystick:setVibration.
  370. * Added love.joystick.loadGamepadMappings and love.joystick.saveGamepadMappings.
  371. * Added Joint:setUserData and Joint:getUserData.
  372. * Added Joint:getBodies.
  373. * Added GearJoint:getJoints.
  374. * Added Contact:getFixtures and Body:getContactList.
  375. * Added Body:getWorld.
  376. * Added Body:getJointList.
  377. * Added Body/Contact/Fixture/Joint/World:isDestroyed.
  378. * Added love.mousemoved event callback.
  379. * Added love.mouse.setRelativeMode and love.mouse.getRelativeMode.
  380. * Added Scancode enums, love.keyboard.getKeyFromScancode, and love.keyboard.getScancodeFromKey.
  381. * Added love.window.getDisplayName.
  382. * Added love.window.minimize.
  383. * Added love.window.showMessageBox.
  384. * Added 'refreshrate' field to the table returned by love.window.getMode.
  385. * Added love.window.toPixels and love.window.fromPixels.
  386. * Added love.window.setPosition and love.window.getPosition, and 'x' and 'y' fields to love.window.setMode and t.window in love.conf.
  387. * Added love.filesystem.isSymlink, love.filesystem.setSymlinksEnabled, and love.filesystem.areSymlinksEnabled.
  388. * Added love.filesystem.getRealDirectory.
  389. * Deprecated SpriteBatch:bind and SpriteBatch:unbind.
  390. * Deprecated all uses of the name 'FSAA' in favor of 'MSAA'.
  391. * Deprecated the 'hdrcanvas' graphics feature enum in favor of getCanvasFormats.
  392. * Deprecated the 'dxt' and 'bc5' graphics feature enums in favor of getCompressedImageFormats.
  393. * Fixed crashes when love objects are used in multiple threads.
  394. * Fixed love.filesystem.setIdentity breaking in some situations when called multiple times.
  395. * Fixed the default love.filesystem identity when in Fused mode in Windows.
  396. * Fixed love.system.openURL sometimes blocking indefinitely on Linux.
  397. * Fixed love.joystick.setGamepadMapping.
  398. * Fixed the order of vertices in ChainShapes.
  399. * Fixed love.mouse.getPosition returning outdated values if love.mouse.setPosition is used in the same frame.
  400. * Fixed love.graphics.newFont to error when given an invalid size argument.
  401. * Fixed the filename and backtrace given when love.graphics.print errors.
  402. * Fixed a small memory leak if love.graphics.newCanvas errors.
  403. * Fixed shader:getWarnings returning unnecessary information.
  404. * Fixed some cases of noncompliant shader code not properly erroring on some nvidia drivers.
  405. * Fixed a potential crash when Shader objects are garbage collected.
  406. * Fixed a potential small memory leak triggered when love.graphics.newShader errors.
  407. * Fixed love.graphics.newMesh(vertexcount, ...) causing the Mesh to do instanced rendering.
  408. * Fixed Mesh:getVertexMap.
  409. * Fixed Image:refresh generating mipmaps multiple times if mipmap filtering is enabled.
  410. * Fixed Image:setMipmapFilter to not keep bad state around if it errors.
  411. * Fixed Mesh:setDrawRange when the Mesh has a vertex map set.
  412. * Fixed internal detection of the 'position' and 'effect' shader functions.
  413. * Fixed Texture memory leak when Meshes are garbage collected.
  414. * Fixed the default line join mode to be 'miter' instead of an undefined value.
  415. * Fixed the default error handler text size when highdpi mode is enabled on a Retina monitor.
  416. * Fixed the default error handler background color when sRGB mode is enabled for the window.
  417. * Fixed love.window.setMode to fall back to the largest available mode if a width or height greater than the largest supported is specified and fullscreen is used.
  418. * Fixed the state of wireframe mode when love.window.setMode is called.
  419. * Fixed Canvas:getPixel to error if the coordinates are not within the Canvas' size.
  420. * Fixed detection of compressed textures to work regardless of the file's extension.
  421. * Renamed all cases of FSAA to MSAA. The FSAA names still exist for backward-compatibility.
  422. * Updated the Windows executable to automatically prefer the higher performance GPU on nvidia Optimus systems.
  423. * Updated the --console command-line argument in Windows to open the console before conf.lua is loaded.
  424. * Updated t.console and the --console command-line argument in Windows to use the existing Console window, if love was launched from one.
  425. * Updated the love executable to verify that the love library's version matches.
  426. * Updated the Lua wrapper code for modules to avoid crashes when the module's instance is created, deleted, and recreated.
  427. * Updated internal code for handling garbage collection of love objects to be more efficient.
  428. * Updated love's initialization code to trigger a Lua error if love.conf has an error in it.
  429. * Updated the paths returned by love.filesystem.getSaveDirectory and friends to strip double-slashes from the string.
  430. * Updated the error message when love.filesystem.write or File:open fails because the directory doesn't exist.
  431. * Updated the error message when love.math.setRandomseed(0) is attempted.
  432. * Updated the error message when invalid UTF-8 strings are used in love functions that expect UTF-8.
  433. * Updated love.physics.newPolygonShape and love.physics.newChainShape to accept a table of vertices.
  434. * Updated love.physics.newChainShape to error if the number of arguments is invalid.
  435. * Updated love.thread.newThread to accept a literal string of code directly.
  436. * Updated love-created threads to use names visible in external debuggers.
  437. * Updated SpriteBatch:unbind to use less VRAM if the SpriteBatch has the static usage hint.
  438. * Updated love.graphics.newImage, love.image.newImageData, etc. to leave less Lua-owned memory around.
  439. * Updated love.graphics.push to accept different stack types to push. Current types are "transform" and "all".
  440. * Updated love shaders to accept GLSL ES precision qualifiers on variables, although they do nothing.
  441. * Updated the error message for love.graphics.newShader to be less cryptic if an invalid filename is given.
  442. * Updated compressed texture loading code to allow BC6 and BC7 compressed textures (if the graphics driver supports them.)
  443. LOVE 0.9.1 [Baby Inspector]
  444. ---------------------------
  445. Released: 2014-04-01
  446. * Added Source:clone.
  447. * Added blend mode "screen".
  448. * Added ParticleSystem:clone.
  449. * Added ParticleSystem:moveTo, has smoother emitter movement compared to setPosition.
  450. * Added ParticleSystem:setRelativeRotation.
  451. * Added love.graphics.setWireframe for debugging.
  452. * Added Mesh:setDrawRange and Mesh:getDrawRange.
  453. * Added CircleShape:getPoint and CircleShape:setPoint.
  454. * Added Mesh/SpriteBatch/ParticleSystem:setTexture, accepts Canvases and Images.
  455. * Added high-dpi window support for Retina displays in OS X, via the 'highdpi' window flag.
  456. * Added love.window.getPixelScale.
  457. * Added love.graphics.getSystemLimit.
  458. * Added antialiasing support to Canvases.
  459. * Added Canvas:getFSAA.
  460. * Added 'love_ScreenSize' built-in variable in shaders.
  461. * Added love.getVersion.
  462. * Added support for gamma-correct rendering.
  463. * Added love.graphics.isSupported("srgb").
  464. * Added love.math.gammaToLinear and love.math.linearToGamma.
  465. * Added RandomGenerator:getState and RandomGenerator:setState.
  466. * Added Body:setUserData and Body:getUserData.
  467. * Added some missing obscure key constants.
  468. * Added optional callback function argument to love.filesystem.getDirectoryItems.
  469. * Added love.system.openURL.
  470. * Deprecated Mesh/SpriteBatch/ParticleSystem:setImage.
  471. * Deprecated love.graphics.getMaxImageSize and love.graphics.getMaxPointSize.
  472. * Fixed love.graphics.scale with negative values causing incorrect line widths.
  473. * Fixed Joystick:isDown using 0-based button index arguments.
  474. * Fixed Source:setPitch to error when infinity or NaN is given.
  475. * Fixed love.graphics.setCanvas() to restore the proper viewport and scissor rectangles.
  476. * Fixed TrueType font glyphs which request a monochrome bitmap pixel mode.
  477. * Fixed love.graphics.reset causing crashes when called in between love.graphics.push/pop.
  478. * Fixed tab characters ("\t") to display properly with love.graphics.print.
  479. * Fixed love.graphics.isCreated to return false when love.window.setMode fails completely.
  480. * Fixed love.window.setMode to not destroy OpenGL resources before checking whether a fullsceren size is supported.
  481. * Fixed World:getBodyList and World:getJointList causing hard crashes.
  482. * Fixed loading BC4 compressed textures.
  483. * Fixed SoundData objects being initialized with garbage values.
  484. * Fixed 8-bit SoundData samples when used in love.audio Sources.
  485. * Updated the error text for love.filesystem’s module searchers when require fails.
  486. * Updated the love.filesystem module searchers to be tried after package.preload instead of before.
  487. * Updated love.graphics.newParticleSystem, newSpriteBatch, and newMesh to accept Canvases.
  488. * Updated Canvas drawing code, texture coordinates are no longer flipped vertically.
  489. * Updated Canvas:renderTo to work properly if a Canvas is currently active.
  490. * Updated ParticleSystem:setEmissionRate to accept non-integer numbers.
  491. * Updated Source:play to return a boolean indicating success.
  492. * Updated t.console in conf.lua to create the console before modules are loaded in Windows.
  493. * Updated Mesh vertex maps (index buffers) to use less space in VRAM.
  494. * Updated love.graphics.newMesh and Mesh:setVertices to default the UV parameters to 0,0.
  495. * Updated Fixture:set/getUserData to work in Coroutines.
  496. * Updated fullscreen-desktop and resizable window modes in OS X to use Mac OS 10.7's fullscreen Spaces.
  497. * Updated love.filesystem's C library loader to look in paths added via love.filesystem.mount, in Fused mode.
  498. * Updated the default love.run code to make initial love.math.random calls more random.
  499. LOVE 0.9.0 [Baby Inspector]
  500. ---------------------------
  501. Released: 2013-12-13
  502. * Added better multiplayer networking support via ENet.
  503. * Added --fused command line argument, to simulate fusing.
  504. * Added liblove.
  505. * Added the ability to have exit values.
  506. * Added exit value of 1 in case of error by default.
  507. * Added basic support for the file:// uri scheme.
  508. * Added love.filesystem.isFused.
  509. * Added love.filesystem.getIdentity.
  510. * Added love.filesystem.append.
  511. * Added love.filesystem.getSize.
  512. * Added love.filesystem.mount and love.filesystem.unmount.
  513. * Added optional file search order parameter to love.filesystem.setIdentity.
  514. * Added File:isOpen and File:getMode.
  515. * Added Fie:setBuffer, File:getBuffer, and File:flush.
  516. * Added textinput event for unicode text input.
  517. * Added love.keyboard.setTextInput and love.keyboard.hasTextInput.
  518. * Added previously internal Rasterizer and GlyphData object methods.
  519. * Added support for UTF-8 ImageFonts.
  520. * Added Font:getAscent/getDescent/getBaseline.
  521. * Added Font:setFilter/getFilter.
  522. * Added Font:hasGlyphs.
  523. * Added angle, scale, and shear parameters to love.graphics.printf.
  524. * Added HDR canvas support.
  525. * Added mipmapping support (has isSupported test).
  526. * Added vertex shader support.
  527. * Added boolean support to Shader:send.
  528. * Added Canvas:getPixel.
  529. * Added blend mode "replace".
  530. * Added line join modes.
  531. * Added Mesh objects, allowing for arbitrary textured polygons.
  532. * Added multiple render target support to love.graphics.setCanvas.
  533. * Added love.graphics.setColorMask.
  534. * Added love.graphics.origin.
  535. * Added love.graphics.getRendererInfo.
  536. * Added love.graphics.getMaxImageSize.
  537. * Added SpriteBatch:getCount and SpriteBatch:getBufferSize.
  538. * Added SpriteBatch:getColor.
  539. * Added ParticleSystem:emit.
  540. * Added ParticleSystem:setInsertMode and ParticleSystem:getInsertMode.
  541. * Added many ParticleSystem getter methods.
  542. * Added DXT compressed texture support via love.image.newCompressedData.
  543. * Added love.image.isCompressed and Image:isCompressed.
  544. * Added Image/Canvas/ImageData:getDimensions.
  545. * Added anisotropic filtering support for Images, Canvases, and Fonts.
  546. * Added Image:refresh.
  547. * Added Image:getData.
  548. * Added SoundData:getDuration and SoundData:getSampleCount.
  549. * Added Source:isPlaying.
  550. * Added Source:setRelative and Source:isRelative.
  551. * Added Source:setCone and Source:getCone.
  552. * Added Source:getChannels.
  553. * Added new Channels API for love.thread.
  554. * Added limited table support to Channel:push.
  555. * Added Thread:getError.
  556. * Added Thread:isRunning.
  557. * Added threaderror event.
  558. * Added love.math module.
  559. * Added a platform-independent (good) random implementation to love.math.
  560. * Added RandomGenerator objects.
  561. * Added BezierCurve objects.
  562. * Added love.math.triangulate and love.math.isConvex.
  563. * Added love.math.noise.
  564. * Added love.timer.getAverageDelta.
  565. * Added Data:getString.
  566. * Added Contact:getChildren.
  567. * Added love.system module.
  568. * Added love.system.getClipboardText and love.system.setClipboardText.
  569. * Added love.system.getOS and love.system.getProcessorCount.
  570. * Added love.window module.
  571. * Added love.window.isVisible.
  572. * Added flags to love.window.setMode.
  573. * Added monitor choosing support to love.window.setMode.
  574. * Added support for resizable, borderless, and non-centered windows.
  575. * Added support for "fullscreen-desktop" mode.
  576. * Added window resize and visible events.
  577. * Added love.window.getDimensions.
  578. * Added love.window.getIcon.
  579. * Added t.window.icon to love.conf.
  580. * Added love.mousefocus and love.window.hasMouseFocus.
  581. * Added custom hardware cursors via love.mouse.newCursor.
  582. * Added love.mouse.setX/setY.
  583. * Added Joystick objects.
  584. * Added love.joystick.getJoystick.
  585. * Added joystick connect and disconnect events.
  586. * Added joystickaxis and joystickhat events.
  587. * Added unified Gamepad API for joysticks which have a similar layout to the Xbox controller.
  588. * Added joystick vibration support, works with most common gamepads.
  589. * OPTIONAL: Added support for Game Music Emu.
  590. * Fixed fused mode in OS X.
  591. * Fixed printing to the console in Windows before love.load is called.
  592. * Fixed the default love.run to not include the time taken by love.load in the first frame's dt.
  593. * Fixed the error screen not always appearing until the next input event.
  594. * Fixed love.event.clear.
  595. * Fixed love.mouse.setPosition when called in love.load.
  596. * Fixed scaling in several love.physics functions.
  597. * Fixed Box2D exception in World:update.
  598. * Fixed many uncaught Box2D / love.physics exceptions for Bodies and Joints.
  599. * Fixed ChainShape:getPoints running out of Lua stack space and crashing.
  600. * Fixed File:read reading past end of file.
  601. * Fixed love.filesystem.setIdentity not removing read access from old directories.
  602. * Fixed possible memory leak in utf-8 decoder.
  603. * Fixed spacing for the last character in an ImageFont.
  604. * Fixed line wrapping in love.graphics.printf.
  605. * Fixed love.graphics.printf to error if the wrap limit is negative.
  606. * Fixed love.graphics.print truncating strings with embedded zeros.
  607. * Fixed crashes with font drawing on some ATI cards.
  608. * Fixed artifacts when drawing lines at huge scale.
  609. * Fixed Fonts and Canvases ignoring default image filter.
  610. * Fixed scissor boxes when a canvas is set after love.graphics.setScissor is called.
  611. * Fixed love.graphics.getLineWidth returning incorrect values.
  612. * Fixed love.graphics.getColor on some Windows systems.
  613. * Fixed alpha blend mode.
  614. * Fixed multiplicative blend mode.
  615. * Fixed love.graphics.getPointStyle.
  616. * Fixed line numbers in shader errors.
  617. * Fixed Shader:send with Images and Canvases failing sometimes.
  618. * Fixed Shader:send to keep a reference to sent Images and Canvases.
  619. * Fixed crash when binding SpriteBatches multiple times.
  620. * Fixed SpriteBatches with more than 16,384 sprites.
  621. * Fixed particle draw order for ParticleSystems.
  622. * Fixed ParticleSystem:setSizes resetting the size variation.
  623. * Fixed the graphics viewport not matching the window size when using an unsupported fullscreen mode.
  624. * Fixed getMode and friends returning wrong values when using desktop size.
  625. * Fixed keyrepeat settings being lost after (indirect) setMode.
  626. * Fixed the icon being reset after setMode.
  627. * Fixed memory leak in the mp3 decoder.
  628. * Fixed sound issues with some versions of OpenAL soft, by enabling direct channels.
  629. * Fixed 'random' hangs in audio.
  630. * Fixed love.sound.newDecoder not accepting FileData.
  631. * Fixed case (in)sensitivity of sound file extension parsing.
  632. * Fixed looping support in tracker music formats.
  633. * Fixed skipping/looping issues when playing streaming audio Sources.
  634. * Fixed race condition in Source:play.
  635. * Fixed WAVE sound playback.
  636. * Moved love's startup to modules/love.
  637. * Moved window-related functions from love.graphics to love.window.
  638. * Renamed love's boot script to 'love.boot', which can be required.
  639. * Renamed love.filesystem.mkdir to love.filesystem.createDirectory.
  640. * Renamed love.filesystem.enumerate to love.filesystem.getDirectoryItems.
  641. * Renamed World:setAllowSleeping to World:setSleepingAllowed.
  642. * Renamed ChainShape:setPrevVertex to ChainShape:setPreviousVertex.
  643. * Renamed Joint:enableMotor to Joint:setMotorEnabled.
  644. * Renamed Joint:enableLimit and Joint:isLimitEnabled to Joint:setLimitsEnabled and Joint:hasLimitsEnabled.
  645. * Renamed t.screen to t.window in love.conf.
  646. * Renamed love.graphics.setCaption to love.window.setTitle.
  647. * Renamed PixelEffect to Shader (but now with vertex shaders).
  648. * Renamed love.graphics.setDefaultImageFilter to love.graphics.setDefaultFilter.
  649. * Renamed ParticleSystem:setSprite to ParticleSystem:setImage.
  650. * Renamed ParticleSystem:setGravity to ParticleSystem:setLinearAcceleration.
  651. * Renamed ParticleSystem:setLifetime/setParticleLife to setEmitter/ParticleLifetime.
  652. * Renamed ParticleSystem:count and all getNum* functions to get*Count.
  653. * Renamed Source:setDistance to Source:setAttenuationDistances.
  654. * Renamed SoundData:getBits and Decoder:getBits to SoundData:getBitDepth and Decoder:getBitDepth.
  655. * Renamed love.mouse.setGrab to love.mouse.setGrabbed.
  656. * Removed release mode.
  657. * Removed love.keyboard.getKeyRepeat (see love.keyboard.hasKeyRepeat).
  658. * Removed the unicode argument from love.keypressed (see love.textinput).
  659. * Removed love.graphics.drawTest.
  660. * Removed love.graphics.quad/triangle.
  661. * Removed love.graphics.setColorMode.
  662. * Removed love.graphics.newStencil.
  663. * Removed love.graphics.setLine/setPoint.
  664. * Removed love.graphics.drawq (functionality is merged into love.graphics.draw).
  665. * Removed SpriteBatch:addq/setq (functionality is merged into SpriteBatch:add/set).
  666. * Removed Quad:flip.
  667. * Removed ParticleSystem:isFull/isEmpty.
  668. * Removed ParticleSystem:getX/getY.
  669. * Removed love.graphics.checkMode.
  670. * Removed love.joystick.open and friends.
  671. * Removed love.joystick module functions which operated on individual joysticks (see Joystick objects).
  672. * Removed joystick ball support.
  673. * Removed thread names.
  674. * Removed old thread messaging API (see Channels).
  675. * Removed love.timer.getMicroTime.
  676. * Updated functions which return love objects to re-use the Lua-side object instead of always recreating it.
  677. * Updated the windows console, it now tries to re-use an active one first.
  678. * Updated error handling, error handlers now get resolved when the error occurs.
  679. * Updated order of sleep/present in love.run (now draws, *then* sleeps).
  680. * Updated love.filesystem to try to create the appdata directory if it doesn't exist yet.
  681. * Updated the default filesystem identity to omit file extension.
  682. * Updated love.filesystem.newFile to optionally open the file.
  683. * Updated most love.filesystem functions to return nil, error on internal failure.
  684. * Updated love.keyboard.setKeyRepeat to take a boolean argument instead of numbers.
  685. * Updated love.keypressed's second argument to be a boolean indicating key repeat.
  686. * Updated keyboard key constants for some more modern keyboard keys.
  687. * Updated window code to use adaptive vsync when available, if vsync is enabled.
  688. * updated love.graphics.print's x and y arguments to default to 0.
  689. * Updated the setFilter and setWrap methods, the second argument is now optional.
  690. * Updated Font and ParticleSystem rendering code, now more performant.
  691. * Updated SpriteBatch code, now more performant when adding/setting and (un)binding.
  692. * Updated Canvas code to support more systems.
  693. * Updated Canvas:getImageData and love.graphics.newScreenshot to be more efficient.
  694. * Updated love.graphics.newScreenshot to create a fully opaque image by default.
  695. * Updated error messages when sending bad values to Shaders.
  696. * Updated love.graphics.newParticleSystem to have a default buffer size of 1000.
  697. * Updated ImageData:setPixel to accept a table and default to 255 alpha.
  698. * Updated ImageData:mapPixel, is now more efficient and accepts optional x,y,w,h arguments.
  699. * Updated love.image memory handling, improves errors and thread-safety.
  700. * Updated all love object constructors to optionally accept FileData if they accept a filename.
  701. * Updated allocation for SoundData, it's more efficient and less wasteful.
  702. * Updated SoundData:set/getSample to error for invalid samples.
  703. * Updated Source:set* functions to default z to 0.
  704. * Updated Source:seek to error for negative offsets.
  705. * Updated Thread:start to accept arguments which get passed to the thread.
  706. * Updated love.timer.getFPS to be microsecond-accurate.
  707. * Updated love.timer.getTime to be microsecond-accurate and monotonic.
  708. * Updated Box2D to version 2.3.0.
  709. LOVE 0.8.0 [Rubber Piggy]
  710. -------------------------
  711. Released: 2012-04-02
  712. * Added release error screen.
  713. * Added alpha to love.graphics.setBackgroundColor.
  714. * Added Canvas:clear(r, g, b, a).
  715. * Added Canvas support to love.graphics.drawq.
  716. * Added Canvas:getWidth and Canvas:getHeight.
  717. * Added love.graphics.arc.
  718. * Added seek and tell to Source objects.
  719. * Added color interpolation to ParticleSystem.
  720. * Added automatic PO2 padding for systems not supporting the OpenGL extension.
  721. * Added UTF-8 support for fonts.
  722. * Added Box2D error handling for some commonly failing functions.
  723. * Added ability for fused release games to have their write dir in appdata.
  724. * Added shear transformation to drawing functions.
  725. * Added origin to font printing.
  726. * Added love.graphics.getMode.
  727. * Added per-sprite colors on SpriteBatches.
  728. * Added PixelEffects.
  729. * Added love.graphics.isSupported.
  730. * Added love.graphics.getCanvas.
  731. * Added love.event.quit.
  732. * Added stencil masks.
  733. * Added alternative SpriteBatch provider, it should work everywhere now.
  734. * Added a loader for binary modules.
  735. * Added Thread:getKeys.
  736. * Added option of fractions for Quads.
  737. * Added PNG, JPEG and GIF support to ImageData:encode.
  738. * Added 64-bit support for Mac OS X.
  739. * Added premultiplied blending mode.
  740. * Added functions to set/get default image filter modes.
  741. * Added SpriteBatch:set.
  742. * Added new events system, with support for custom events and long event names.
  743. * Added sound attenuation by distance.
  744. * Added SpriteBatch:getImage.
  745. * Added combine color mode.
  746. * Added automatic random seeding to love.run.
  747. * Added support for the subtract BlendMode on older graphics cards.
  748. * Added love._os field, which contains the OS the game is running on.
  749. * Fixed wrapping for single words.
  750. * Fixed tracebacks not showing filenames.
  751. * Fixed love.graphics.push/pop capable of causing overflows/underflows.
  752. * Fixed setScissor on Canvases.
  753. * Fixed several issues with audio, e.g. clicks and pops in mp3s.
  754. * Fixed crashes when bodies were destroyed during collisions.
  755. * Fixed bound SpriteBatches corrupting when drawing.
  756. * Fixed thread-safety issues with ImageData.
  757. * Fixed memory leaks in audio sources.
  758. * Fixed thread's set (previously send) accidentally changing the type.
  759. * Fixed SoundData allocating the wrong number of samples.
  760. * Fixed SpriteBatch support on Intel cards.
  761. * Fixed love.filesystem.lines() leaking.
  762. * Fixed most leaking on unclosed File objects.
  763. * Fixed crashes when operating on non-existent files.
  764. * Fixed a bug where empty files on windows would never reach eof.
  765. * Fixed crash when SoundData runs out of memory.
  766. * Fixed ordering of loaders, love should have priority over lua.
  767. * Fixed several miscellaneous memory leaks.
  768. * Fixed a few cases where strings with \0 in them would not be stored correctly.
  769. * Fixed love's startup time being in the first dt.
  770. * Fixed internal string conversions, they are faster now.
  771. * Fixed (bad) performance of ImageData:paste.
  772. * Fixed love.graphics.toggleFullscreen not maintaining graphics state.
  773. * Renamed SpriteBatch's lock/unlock to bind/unbind.
  774. * Renamed Framebuffer to Canvas.
  775. * Renamed love.thread.send/receive to set/get.
  776. * Renamed love.graphics.setRenderTarget to setCanvas.
  777. * Removed canvas auto-clearing.
  778. * Removed EncodedImageData.
  779. * Removed old syntax for require (with extension).
  780. * Removed love.graphics.setFont([file], [size]).
  781. * Removed Thread:kill.
  782. * Updated love.joystick to be 1-indexed.
  783. * Updated Sources to update more cleanly and control more intuitively.
  784. * Updated font engine.
  785. * Updated line drawing to a custom system.
  786. * Updated love.timer.sleep to use seconds, like the rest of love.
  787. * Updated love.timer to be more accurate.
  788. * Updated love.graphics.circle to have max(10, r) as default for segments.
  789. * Updated ImageData:encode to write to files directly.
  790. * Updated version compatibility system to actually do something.
  791. * Updated love.run's order, events are checked just before update.
  792. * Updated Box2D to version 2.2.1.
  793. LOVE 0.7.2 [Game Slave]
  794. -----------------------
  795. Released: 2011-05-04
  796. * Added Framebuffer:get/setWrap.
  797. * Added love.event.clear.
  798. * Added support for any number of arguments to love.keyboard.isDown, love.mouse.isDown and love.joystick.isDown.
  799. * Added SpriteBatch:setImage().
  800. * Fixed fused games not working.
  801. * Fixed ParticleSystem:setSize ignoring the variation argument.
  802. * Fixed some file-opening exceptions not being caught.
  803. * Fixed files loaded by libmodplug being too loud.
  804. * Fixed paths with periods in them not working.
  805. * Fixed love.graphics.getBlendMode not detecting subtractive and multiplicative blend modes.
  806. * Fixed crash when there was no memory available for newImageData(w, h).
  807. * Updated PhysicsFS version to 2.0.2 on Windows
  808. * Updated OpenAL Soft version to 1.13 on Windows
  809. * Updated libmodplug version to 0.8.8.1 on Windows
  810. * Updated FreeType version to 2.4.4 on Windows
  811. * Updated libmpg123 version to 1.13.2 on Windows
  812. * Windows binary no longer depends on VC2005 runtime.
  813. * Windows binary no longer depends on SSE2 support.
  814. LOVE 0.7.1 [Game Slave]
  815. -----------------------
  816. Released: 2011-02-14
  817. * Added source:isPaused()
  818. * Added error when initial window can't be created.
  819. * Added framebuffer filter modes.
  820. * Added love.filesystem.getLastModified.
  821. * Added filter modes for ImageFonts.
  822. * Added dead key support by using "unknown" key with correct unicode value.
  823. * Added 0 width and height in love.conf. (for current desktop resolution)
  824. * Added alpha support when encoding TGA images.
  825. * Fixed a lot of bugs regarding zero characters in threads.
  826. * Fixed handling of a directory named "love" in current directory.
  827. * Fixed a few unhandled errors in setScissor.
  828. * Fixed a bug where old physics callbacks were never dereferenced.
  829. * Fixed loss of mouse visibility settings on setMode.
  830. * Fixed creation of a framebuffer unbinding current framebuffer.
  831. * Fixed several race conditions in love.thread.
  832. * Fixed 'love .', so it won't use lovedir/. as save dir.
  833. * Fixed setLineHeight.
  834. * Fixed extended ascii and ImageFonts.
  835. * Fixed printf's line wrapping.
  836. * Fixed crash when playing sounds.
  837. * Fixed playback of mp3s with arbitrary sample rates.
  838. * Fixed handling of negative indices in love.joystick.
  839. * Fixed toggleFullscreen.
  840. * Fixed unexpected behaviour with hash tables to love.graphics.line.
  841. * Fixed mouse coordinates being capped after setMode.
  842. * Fixed setFont's error handling on a non-existant file.
  843. * Fixed issue where Windows builds would hard crash on Lua errors
  844. * Removed custom sample rates for Decoders.
  845. LOVE 0.7.0 [Game Slave]
  846. -----------------------
  847. Released: 2010-12-05
  848. * Added love.thread.
  849. * Added love.font.
  850. * Added love.graphics.Framebuffer.
  851. * Added Source:play, Source:pause, etc.
  852. * Added Source:isStatic().
  853. * Added get/setPosition, get/setVelocity, and get/setDirection to Source.
  854. * Added get/setGroupIndex to CircleShape and PolygonShape.
  855. * Added Font:getWrap.
  856. * Added identity field to love.conf.
  857. * Added love.quit callback.
  858. * Added love.focus callback.
  859. * Added extra meter parameter to love.physics.newWorld.
  860. * Added love.graphics.setIcon.
  861. * Added way to make the window desktop resolution.
  862. * Added subtractive and multiplicative blend modes.
  863. * Added body:getAllowSleeping.
  864. * Added shape:getBody.
  865. * Added love.filesystem.FileData for public usage.
  866. * Added base64 support for love.filesystem.FileData.
  867. * Added table support for love.graphics.setColor and love.graphics.setBackgroundColor.
  868. * Added love.graphics.hasFocus().
  869. * Added ?/init.lua to the loader.
  870. * Fixed the debug module not being an upvalue of the error handlers. (you can now override debug)
  871. * Fixed some cases when love.audio.pause and friends, were acting on everything, not just the passed Source.
  872. * Fixed setFixedRotation enabling other flags.
  873. * Fixed a bug in the loader (for require).
  874. * Fixed ParticleSystem::setSprite not retaining the new image.
  875. * Fixed setMode removing images settings (wrapping, filters).
  876. * Fixed shape:getBody, it's now exposed for LÖVE usage.
  877. * Fixed DistanceJoint:getType() returning "circle" - it now returns "distance".
  878. * Fixed SpriteBatches being unaffected by setColor
  879. * Fixed the audio bug.
  880. * Fixed invalid FSAA values crashing LÖVE.
  881. * Fixed a bunch of compiler warnings.
  882. * Fixed OS X not properly using UTIs for .love files.
  883. * Fixed the modplug decoder not properly handeling files that fail to load.
  884. * Fixed a memory leak in setFont.
  885. * Fixed bug where errors in threads wouldn't get picked up by demand.
  886. * Fixed part of the bug with newlines when scaling text (rotating still messes up the lines).
  887. * Fixed the bug where newImageFont would try to created ImageData out of ImageData.
  888. * Fixed error handler not resetting the blend mode.
  889. * Changed fonts, they're now po2 safe.
  890. * Changed the traceback in the error screen.
  891. * Changed font origin to top-left.
  892. * Changed linux save dir location to obey to Freedesktop.org's XDG specs. (~/.local/share/love by default.)
  893. * Removed font functions from love.graphics.
  894. * Removed love.physics.newWorld(w, h). Use love.physics.newWorld(x1, y1, x2, y2) instead.
  895. LOVE 0.6.2 [Jiggly Juice]
  896. -------------------------
  897. Released: 2010-03-06
  898. * Fixed a bug causing ImageFonts to cut off some pixels.
  899. * Fixed a bug where filled rectangles were too small.
  900. * Fixed a bug in Image:setFilter where it would switch the parameters.
  901. * Fixed a bug in ImageRasterizer where it wasn't using the data.
  902. * Image filter and wrap modes now use string constants as well.
  903. * Fixed double-transform bug in SpriteBatch.
  904. * Errors are reported on stdout again.
  905. * Another fix for the icons on ubuntu.
  906. LOVE 0.6.1 [Jiggly Juice]
  907. -------------------------
  908. Released: 2010-02-07
  909. * Added Shape:setGroupIndex and getGroupIndex.
  910. * Added Body:setFixedRotation and Body:getFixedRotation.
  911. * Added Body:setInertia.
  912. * Added CircleShape:getLocalCenter and CircleShape:getWorldCenter.
  913. * Added icons and file associations for the debs.
  914. * Added the demos folder to the Mac OS X DMG.
  915. * It's now possible to run a .love from Resources in Mac OS X, thanks to Steve Johnson.
  916. * Fixed a bug with multiple Sources on the same Music.
  917. * Fixed a bug so the mouse doesn't get crippled when the keyboard is disabled.
  918. * Fixed a bug where love.graphics.rectangle drew a too large rectangle.
  919. * Fixed a bug where memory wouldn't be released correctly.
  920. * Fixed epic physics typo (getRestituion->getRestitution).
  921. * Fixed crash on opening non-existent image.
  922. * The error screen redraws when an event occurs.
  923. * The default love.run() now gracefully handles disabled modules.
  924. * The debian packages should now successfully include icons, file associations, etc, and should give the correct architecture.
  925. * Added support for drawing polylines to love.graphics.line - the syntax is the same as love.graphics.polygon.
  926. * Removed Music and Sound. There are now only sources.
  927. * Improved the stability of love.audio/love.sound.
  928. LOVE 0.6.0 [Jiggly Juice]
  929. -------------------------
  930. Released: 2009-12-24
  931. * Lost track of 0.6.0 changes a long while ago. Don't trust the list below.
  932. * Added love.graphics.print()/printf().
  933. * Added unicode-translated parameter to love.keypressed().
  934. * Added love.event.
  935. * Added love.filesystem.setIdentity().
  936. * Added OpenAL dependency.
  937. * Fixed love.fileystem problems with internal \0 in strings.
  938. * Fixed love.filesystem.mkdir/remove not working when write directory not set.
  939. * Fixed position of Window.
  940. * Changed parameter order of draws().
  941. * Changed origin for images to top-left.
  942. * Changed love.filesystem.open to accept mode (removed from love.filesystem.newFile).
  943. * Changed love.filesystem.read() which now returns two parameters (data, length).
  944. * Changed love.filesystem.write() which now takes up to four parameters (file, data, length, mode).
  945. * Changed default color mode to "modulate".
  946. * Changed name of love.color_normal to "replace".
  947. * Changed name of love.blend_normal to "alpha".
  948. * Changed the conf file format.
  949. * Removed Color object.
  950. * Removed Animation.
  951. * Removed several constants.
  952. * Removed love.graphics.draw() for strings.
  953. * Removed love.system.
  954. * Removed SWIG.
  955. * Removed boost.
  956. * Removed SDL_mixer.
  957. LOVE 0.5.0 [Salted Nuts]
  958. ------------------------
  959. Released: 2009-01-02
  960. * Added love.joystick.
  961. * Added network support via LuaSocket.
  962. * Added support for loading of appended .love-file.
  963. * Added love.filesystem.lines().
  964. * Added a loader function to enable use of normal require().
  965. * Added love.filesystem.load().
  966. * Added love.filesystem.getSaveDirectory()
  967. * Added love.filesystem.getWorkingDirectory()
  968. * Added optional explicit destruction of Box2D objects.
  969. * Added shape:testSegment().
  970. * Added love.graphics.screenshot() (.bmp only).
  971. * Added default size (12) to font-related functions.
  972. * Added love.graphics.setFont( filename, size )
  973. * Added love.graphics.setLineStippe and related functions.
  974. * Added love.graphics.setPointSize and related functions.
  975. * Changed love.filesystem.read() to accept file name.
  976. * Changed love.filesystem.write() to accept file name.
  977. * Changed love.graphics.triangle() to accept CCW and CW ordering.
  978. * Fixed love.graphics.read adding bogus characters at the end of string.
  979. * Fixed epic swigfusion bug.
  980. * Fixed love.graphics.getFont so it returns nil if no font is present.
  981. * Fixed bug where love.graphics.getBlendMode() always returns blend_normal.
  982. * Fixed bug which caused error screen to be scissored (when enabled).
  983. * Fixed Body:setAngle to accept degrees like everything else.
  984. * Cleaned up love::File and love_physfs.
  985. * Cleaned up love::Reference so it stores its reference in _G.
  986. LOVE 0.4.0 [Taco Beam]
  987. ----------------------
  988. Released: 2008-08-29
  989. * Added love.physics. (YES!)
  990. * Added love.audio.setMode().
  991. * Added love.audio.setChannels().
  992. * Added love.graphics.polygon().
  993. * Added love.graphics.setScissor() and love.graphics.getScissor() to handle scissoring the graphical area.
  994. * Fixed missing constants related to image optimization.
  995. * Fixed memory leak related to love::File (thanks amnesiasoft!).
  996. LOVE 0.3.2 [Lemony Fresh]
  997. -------------------------
  998. Released: 2008-07-04
  999. * Added love.graphics.rectangle()
  1000. * Added love.graphics.setLineWidth()
  1001. * Added love.graphics.setLineStyle()
  1002. * Added love.graphics.getLineWidth()
  1003. * Added love.graphics.getLineStyle()
  1004. * Added love.mouse.getPosition()
  1005. * Added love.audio_loop
  1006. * Added love.timer.getTime()
  1007. * Changed love.graphics.quad() to accept CCW and CW ordering.
  1008. * Fixed default color mode bug.
  1009. * Fixed line width being applied unnecessarily.
  1010. * Fixed line width bug related to fullscreen toggle.
  1011. * Fixed music not looping.
  1012. LOVE 0.3.1 [Space Meat]
  1013. -----------------------
  1014. Released: 2008-06-21
  1015. * Fixed segfault related to graphics.
  1016. * Fixed wait-forever bug related to audio.
  1017. * Fixed error reporting not working across modules.
  1018. * Fixed bug where games with a trailing "/" would not start.
  1019. * Fixed bug which caused love.timer.sleep to delay for (way) too long.
  1020. LOVE 0.3.0 [Mutant Vermin]
  1021. --------------------------
  1022. Released: 2008-06-17
  1023. * Added ParticleSystem.
  1024. * Added visual error reporting.
  1025. * Added love.system for game control needs.
  1026. * Added input grabbing.
  1027. * Added functions in love.graphics for display management.
  1028. * Added love.graphics.point().
  1029. * Added functions in love.graphics for getting current color, font, etc.
  1030. * Added love.filesystem.enumerate() for getting folder contents.
  1031. * Added functions for setting the window caption.
  1032. * Added version checking. An error occurs if the game is incompatible.
  1033. * Fixed print() :)
  1034. * Removed all keyboard shortcuts.
  1035. * Save folders are now created only if required.
  1036. * On Windows, the new save location is %APPDATA%\LOVE\game
  1037. LOVE 0.2.1 [Impending Doom]
  1038. ---------------------------
  1039. Released: 2008-03-29
  1040. * Added many functions in love.filesystem.
  1041. * Added a dedicated save-folder for each game.
  1042. * Added timer.sleep.
  1043. * Added line heights to font objects.
  1044. * Added love.graphics.getWidth/getHeight.
  1045. * Added scaling and rotation for text.
  1046. * Added variable spacing to ImageFont.
  1047. * Added support for variable line quality when drawing primitives.
  1048. * Added several functions for drawing sections of images. (love.graphics.draws)
  1049. * Added image optimization function and padding function.
  1050. * Added love.graphics.getWidth/Height.
  1051. * Split devices up into actual SWIG-modules. This means that:
  1052. - Functions are used like this: love.graphics.draw, not love.graphics:draw
  1053. - love.objects is no more. Objects are created by an appropriate device.
  1054. * How you draw primitives has been altered.
  1055. * draw(string, x, y, wrap, align) has become drawf(string, x, y, wrap, align)
  1056. * Changed getFps to getFPS.
  1057. * Escape is no more ... enter: Alt+F4.
  1058. * love.filesystem.include has been renamed to love.filesystem.require.
  1059. * ImageFonts now consider the spacing as well as the glyph size.
  1060. * Fixed a massive ImageFont bug which resulted in float-positioning failure.
  1061. * Fixed a bug when loading fonts where the specified size doesn't represent the true size of the font.
  1062. * Updated DevIL to version 1.6.8-rc2 (Windows)
  1063. * Updated FreeType to freetype-2.3.5-1 (Windows)
  1064. * Updated Lua to 5.1.3 (Windows)
  1065. * Updated SDL to 1.2.13 (Windows)
  1066. * Removed boost::filesystem.
  1067. LOVE 0.2.0 [Mini-Moose]
  1068. -----------------------
  1069. Released: 2008-02-06
  1070. * Added ImageFont
  1071. * Added Animation
  1072. * Added text formatting functions
  1073. * Added setCenter for Image and Animation.
  1074. * Added methods for rendering of scaled/rotated sprites.
  1075. * Added the drawing of basic shapes.
  1076. * Added default font and embedded resources.
  1077. * Added Ctrl+R for reload.
  1078. * Added blending and color modes.
  1079. * Fixed memory usage of Graphics.
  1080. * Fixed a bug where the set text color would change the color of any images rendered.
  1081. * Fixed CWD bug.
  1082. * Fixed titlebar. Game title is now displayed.
  1083. LOVE 0.1.1 [Santa-Power]
  1084. ------------------------
  1085. Initial release!
  1086. Released: 2008-01-13
  1087. * Image loading and rendering.
  1088. * Sound loading and playing.
  1089. * Font loading and rendering.
  1090. * Lua-scriptable games.
  1091. * Config files.
  1092. * Stuff is loadable from archive files.
  1093. * Keyboard, mouse, display, timer, etc. (Basic devices).