You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1405 lines
83 KiB

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