changes.txt 47 KB

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