2
0

changes.txt 73 KB

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