2
0

changes.txt 92 KB

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