changes.txt 40 KB

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