changes.txt 61 KB

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