changes.txt 93 KB

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