changes.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. LOVE 0.8.0 [Rubber Piggy]
  2. -------------------------
  3. * Added release error screen.
  4. * Added alpha to love.graphics.setBackgroundColor.
  5. * Added framebuffer:clear(r, g, b, a).
  6. * Added love.graphics.arc.
  7. * Added seek and tell to Source objects.
  8. * Added color interpolation to ParticleSystem.
  9. * Added alpha masking.
  10. * Added automatic PO2 padding for systems not supporting the OpenGL extension.
  11. * Added UTF-8 support for fonts.
  12. * Added box2d error handling for some commonly failing functions.
  13. * Added ability for fused release games to have their write dir in appdata.
  14. * Fixed polygon drawing (was off by one).
  15. * Fixed wrapping for single words.
  16. * Fixed tracebacks not showing filenames.
  17. * Fixed love.graphics.push/pop capable of causing overflows/underflows.
  18. * Fixed setScissor on framebuffers.
  19. * Fixed several issues with audio, e.g. clicks and pops in mp3s.
  20. * Fixed crashes when bodies were destroyed during collisions.
  21. * Fixed bound SpriteBatches corrupting when drawing.
  22. * Fixed thread-safety issues with ImageData.
  23. * Fixed memory leak in audio sources.
  24. * Renamed SpriteBatch's lock/unlock to bind/unbind.
  25. * Updated love.joystick to be 1-indexed.
  26. * Updated love.thread to use get/set instead of send/receive.
  27. * Updated font engine.
  28. * Updated line drawing to a custom system.
  29. * Removed framebuffer auto-clearing.
  30. * Removed EncodedImageData.
  31. * Removed old syntax for require (with extension).
  32. LOVE 0.7.2 [Game Slave]
  33. -----------------------
  34. * Added Framebuffer:get/setWrap.
  35. * Added love.event.clear.
  36. * Added support for any number of arguments to love.keyboard.isDown, love.mouse.isDown and love.joystick.isDown.
  37. * Added SpriteBatch:setImage().
  38. * Fixed fused games not working.
  39. * Fixed ParticleSystem:setSize ignoring the variation argument.
  40. * Fixed some file-opening exceptions not being caught.
  41. * Fixed files loaded by libmodplug being too loud.
  42. * Fixed paths with periods in them not working.
  43. * Fixed love.graphics.getBlendMode not detecting subtractive and multiplicative blend modes.
  44. * Fixed crash when there was no memory available for newImageData(w, h).
  45. * Updated PhysicsFS version to 2.0.2 on Windows
  46. * Updated OpenAL Soft version to 1.13 on Windows
  47. * Updated libmodplug version to 0.8.8.1 on Windows
  48. * Updated FreeType version to 2.4.4 on Windows
  49. * Updated libmpg123 version to 1.13.2 on Windows
  50. * Windows binary no longer depends on VC2005 runtime.
  51. * Windows binary no longer depends on SSE2 support.
  52. LOVE 0.7.1 [Game Slave]
  53. -----------------------
  54. * Added source:isPaused()
  55. * Added error when initial window can't be created.
  56. * Added framebuffer filter modes.
  57. * Added love.filesystem.getLastModified.
  58. * Added filter modes for ImageFonts.
  59. * Added dead key support by using "unknown" key with correct unicode value.
  60. * Added 0 width and height in love.conf. (for current desktop resolution)
  61. * Added alpha support when encoding TGA images.
  62. * Fixed a lot of bugs regarding zero characters in threads.
  63. * Fixed handling of a directory named "love" in current directory.
  64. * Fixed a few unhandled errors in setScissor.
  65. * Fixed a bug where old physics callbacks were never dereferenced.
  66. * Fixed loss of mouse visibility settings on setMode.
  67. * Fixed creation of a framebuffer unbinding current framebuffer.
  68. * Fixed several race conditions in love.thread.
  69. * Fixed 'love .', so it won't use lovedir/. as save dir.
  70. * Fixed setLineHeight.
  71. * Fixed extended ascii and ImageFonts.
  72. * Fixed printf's line wrapping.
  73. * Fixed crash when playing sounds.
  74. * Fixed playback of mp3s with arbitrary sample rates.
  75. * Fixed handling of negative indices in love.joystick.
  76. * Fixed toggleFullscreen.
  77. * Fixed unexpected behaviour with hash tables to love.graphics.line.
  78. * Fixed mouse coordinates being capped after setMode.
  79. * Fixed setFont's error handling on a non-existant file.
  80. * Fixed issue where Windows builds would hard crash on Lua errors
  81. * Removed custom sample rates for Decoders.
  82. LOVE 0.7.0 [Game Slave]
  83. -----------------------
  84. * Added love.thread.
  85. * Added love.font.
  86. * Added love.graphics.Framebuffer.
  87. * Added Source:play, Source:pause, etc.
  88. * Added Source:isStatic().
  89. * Added get/setPosition, get/setVelocity, and get/setDirection to Source.
  90. * Added get/setGroupIndex to CircleShape and PolygonShape.
  91. * Added Font:getWrap.
  92. * Added identity field to love.conf.
  93. * Added love.quit callback.
  94. * Added love.focus callback.
  95. * Added extra meter parameter to love.physics.newWorld.
  96. * Added love.graphics.setIcon.
  97. * Added way to make the window desktop resolution.
  98. * Added subtractive and multiplicative blend modes.
  99. * Added body:getAllowSleeping.
  100. * Added shape:getBody.
  101. * Added love.filesystem.FileData for public usage.
  102. * Added base64 support for love.filesystem.FileData.
  103. * Added table support for love.graphics.setColor and love.graphics.setBackgroundColor.
  104. * Added love.graphics.hasFocus().
  105. * Added ?/init.lua to the loader.
  106. * Fixed the debug module not being an upvalue of the error handlers. (you can now override debug)
  107. * Fixed some cases when love.audio.pause and friends, were acting on everything, not just the passed Source.
  108. * Fixed setFixedRotation enabling other flags.
  109. * Fixed a bug in the loader (for require).
  110. * Fixed ParticleSystem::setSprite not retaining the new image.
  111. * Fixed setMode removing images settings (wrapping, filters).
  112. * Fixed shape:getBody, it's now exposed for LÖVE usage.
  113. * Fixed DistanceJoint:getType() returning "circle" - it now returns "distance".
  114. * Fixed SpriteBatches being unaffected by setColor
  115. * Fixed the audio bug.
  116. * Fixed invalid FSAA values crashing LÖVE.
  117. * Fixed a bunch of compiler warnings.
  118. * Fixed OS X not properly using UTIs for .love files.
  119. * Fixed the modplug decoder not properly handeling files that fail to load.
  120. * Fixed a memory leak in setFont.
  121. * Fixed bug where errors in threads wouldn't get picked up by demand.
  122. * Fixed part of the bug with newlines when scaling text (rotating still messes up the lines).
  123. * Fixed the bug where newImageFont would try to created ImageData out of ImageData.
  124. * Fixed error handler not resetting the blend mode.
  125. * Changed fonts, they're now po2 safe.
  126. * Changed the traceback in the error screen.
  127. * Changed font origin to top-left.
  128. * Changed linux save dir location to obey to Freedesktop.org's XDG specs. (~/.local/share/love by default.)
  129. * Removed font functions from love.graphics.
  130. * Removed love.physics.newWorld(w, h). Use love.physics.newWorld(x1, y1, x2, y2) instead.
  131. LOVE 0.6.2 [Jiggly Juice]
  132. -------------------------
  133. * Fixed a bug causing ImageFonts to cut off some pixels.
  134. * Fixed a bug where filled rectangles were too small.
  135. * Fixed a bug in Image:setFilter where it would switch the parameters.
  136. * Fixed a bug in ImageRasterizer where it wasn't using the data.
  137. * Image filter and wrap modes now use string constants as well.
  138. * Fixed double-transform bug in SpriteBatch.
  139. * Errors are reported on stdout again.
  140. * Another fix for the icons on ubuntu.
  141. LOVE 0.6.1 [Jiggly Juice]
  142. -------------------------
  143. * Added Shape:setGroupIndex and getGroupIndex.
  144. * Added Body:setFixedRotation and Body:getFixedRotation.
  145. * Added Body:setInertia.
  146. * Added CircleShape:getLocalCenter and CircleShape:getWorldCenter.
  147. * Added icons and file associations for the debs.
  148. * Added the demos folder to the Mac OS X DMG.
  149. * It's now possible to run a .love from Resources in Mac OS X, thanks to Steve Johnson.
  150. * Fixed a bug with multiple Sources on the same Music.
  151. * Fixed a bug so the mouse doesn't get crippled when the keyboard is disabled.
  152. * Fixed a bug where love.graphics.rectangle drew a too large rectangle.
  153. * Fixed a bug where memory wouldn't be released correctly.
  154. * Fixed epic physics typo (getRestituion->getRestitution).
  155. * Fixed crash on opening non-existent image.
  156. * The error screen redraws when an event occurs.
  157. * The default love.run() now gracefully handles disabled modules.
  158. * The debian packages should now successfully include icons, file associations, etc, and should give the correct architecture.
  159. * Added support for drawing polylines to love.graphics.line - the syntax is the same as love.graphics.polygon.
  160. * Removed Music and Sound. There are now only sources.
  161. * Improved the stability of love.audio/love.sound.
  162. LOVE 0.6.0 [Jiggly Juice]
  163. -------------------------
  164. * Lost track of 0.6.0 changes a long while ago. Don't trust the list below.
  165. * Added love.graphics.print()/printf().
  166. * Added unicode-translated parameter to love.keypressed().
  167. * Added love.event.
  168. * Added love.filesystem.setIdentity().
  169. * Added OpenAL dependency.
  170. * Fixed love.fileystem problems with internal \0 in strings.
  171. * Fixed love.filesystem.mkdir/remove not working when write directory not set.
  172. * Fixed position of Window.
  173. * Changed parameter order of draws().
  174. * Changed origin for images to top-left.
  175. * Changed love.filesystem.open to accept mode (removed from love.filesystem.newFile).
  176. * Changed love.filesystem.read() which now returns two parameters (data, length).
  177. * Changed love.filesystem.write() which now takes up to four parameters (file, data, length, mode).
  178. * Changed default color mode to "modulate".
  179. * Changed name of love.color_normal to "replace".
  180. * Changed name of love.blend_normal to "alpha".
  181. * Changed the conf file format.
  182. * Removed Color object.
  183. * Removed Animation.
  184. * Removed several constants.
  185. * Removed love.graphics.draw() for strings.
  186. * Removed love.system.
  187. * Removed SWIG.
  188. * Removed boost.
  189. * Removed SDL_mixer.
  190. LOVE 0.5.0 [Salted Nuts]
  191. ------------------------
  192. * Added love.joystick.
  193. * Added network support via LuaSocket.
  194. * Added support for loading of appended .love-file.
  195. * Added love.filesystem.lines().
  196. * Added a loader function to enable use of normal require().
  197. * Added love.filesystem.load().
  198. * Added love.filesystem.getSaveDirectory()
  199. * Added love.filesystem.getWorkingDirectory()
  200. * Added optional explicit destruction of Box2D objects.
  201. * Added shape:testSegment().
  202. * Added love.graphics.screenshot() (.bmp only).
  203. * Added default size (12) to font-related functions.
  204. * Added love.graphics.setFont( filename, size )
  205. * Added love.graphics.setLineStippe and related functions.
  206. * Added love.graphics.setPointSize and related functions.
  207. * Changed love.filesystem.read() to accept file name.
  208. * Changed love.filesystem.write() to accept file name.
  209. * Changed love.graphics.triangle() to accept CCW and CW ordering.
  210. * Fixed love.graphics.read adding bogus characters at the end of string.
  211. * Fixed epic swigfusion bug.
  212. * Fixed love.graphics.getFont so it returns nil if no font is present.
  213. * Fixed bug where love.graphics.getBlendMode() always returns blend_normal.
  214. * Fixed bug which caused error screen to be scissored (when enabled).
  215. * Fixed Body:setAngle to accept degrees like everything else.
  216. * Cleaned up love::File and love_physfs.
  217. * Cleaned up love::Reference so it stores its reference in _G.
  218. LOVE 0.4.0 [Taco Beam]
  219. ----------------------
  220. * Added love.physics. (YES!)
  221. * Added love.audio.setMode().
  222. * Added love.audio.setChannels().
  223. * Added love.graphics.polygon().
  224. * Added love.graphics.setScissor() and love.graphics.getScissor() to handle scissoring the graphical area.
  225. * Fixed missing constants related to image optimization.
  226. * Fixed memory leak related to love::File (thanks amnesiasoft!).
  227. LOVE 0.3.2 [Lemony Fresh]
  228. -------------------------
  229. * Added love.graphics.rectangle()
  230. * Added love.graphics.setLineWidth()
  231. * Added love.graphics.setLineStyle()
  232. * Added love.graphics.getLineWidth()
  233. * Added love.graphics.getLineStyle()
  234. * Added love.mouse.getPosition()
  235. * Added love.audio_loop
  236. * Added love.timer.getTime()
  237. * Changed love.graphics.quad() to accept CCW and CW ordering.
  238. * Fixed default color mode bug.
  239. * Fixed line width being applied unnecessarily.
  240. * Fixed line width bug related to fullscreen toggle.
  241. * Fixed music not looping.
  242. LOVE 0.3.1 [Space Meat]
  243. -----------------------
  244. * Fixed segfault related to graphics.
  245. * Fixed wait-forever bug related to audio.
  246. * Fixed error reporting not working across modules.
  247. * Fixed bug where games with a trailing "/" would not start.
  248. * Fixed bug which caused love.timer.sleep to delay for (way) too long.
  249. LOVE 0.3.0 [Mutant Vermin]
  250. --------------------------
  251. * Added ParticleSystem.
  252. * Added visual error reporting.
  253. * Added love.system for game control needs.
  254. * Added input grabbing.
  255. * Added functions in love.graphics for display management.
  256. * Added love.graphics.point().
  257. * Added functions in love.graphics for getting current color, font, etc.
  258. * Added love.filesystem.enumerate() for getting folder contents.
  259. * Added functions for setting the window caption.
  260. * Added version checking. An error occurs if the game is incompatible.
  261. * Fixed print() :)
  262. * Removed all keyboard shortcuts.
  263. * Save folders are now created only if required.
  264. * On Windows, the new save location is %APPDATA%\LOVE\game
  265. LOVE 0.2.1 [Impending Doom]
  266. ---------------------------
  267. * Added many functions in love.filesystem.
  268. * Added a dedicated save-folder for each game.
  269. * Added timer.sleep.
  270. * Added line heights to font objects.
  271. * Added love.graphics.getWidth/getHeight.
  272. * Added scaling and rotation for text.
  273. * Added variable spacing to ImageFont.
  274. * Added support for variable line quality when drawing primitives.
  275. * Added several functions for drawing sections of images. (love.graphics.draws)
  276. * Added image optimization function and padding function.
  277. * Added love.graphics.getWidth/Height.
  278. * Split devices up into actual SWIG-modules. This means that:
  279. - Functions are used like this: love.graphics.draw, not love.graphics:draw
  280. - love.objects is no more. Objects are created by an appropriate device.
  281. * How you draw primitives has been altered.
  282. * draw(string, x, y, wrap, align) has become drawf(string, x, y, wrap, align)
  283. * Changed getFps to getFPS.
  284. * Escape is no more ... enter: Alt+F4.
  285. * love.filesystem.include has been renamed to love.filesystem.require.
  286. * ImageFonts now consider the spacing as well as the glyph size.
  287. * Fixed a massive ImageFont bug which resulted in float-positioning failure.
  288. * Fixed a bug when loading fonts where the specified size doesn't represent the true size of the font.
  289. * Updated DevIL to version 1.6.8-rc2 (Windows)
  290. * Updated FreeType to freetype-2.3.5-1 (Windows)
  291. * Updated Lua to 5.1.3 (Windows)
  292. * Updated SDL to 1.2.13 (Windows)
  293. * Removed boost::filesystem.
  294. LOVE 0.2.0 [Mini-Moose]
  295. -----------------------
  296. * Added ImageFont
  297. * Added Animation
  298. * Added text formatting functions
  299. * Added setCenter for Image and Animation.
  300. * Added methods for rendering of scaled/rotated sprites.
  301. * Added the drawing of basic shapes.
  302. * Added default font and embedded resources.
  303. * Added Ctrl+R for reload.
  304. * Added blending and color modes.
  305. * Fixed memory usage of Graphics.
  306. * Fixed a bug where the set text color would change the color of any images rendered.
  307. * Fixed CWD bug.
  308. * Fixed titlebar. Game title is now displayed.
  309. LOVE 0.1.1 [Santa-Power]
  310. ------------------------
  311. Initial release!
  312. * Image loading and rendering.
  313. * Sound loading and playing.
  314. * Font loading and rendering.
  315. * Lua-scriptable games.
  316. * Config files.
  317. * Stuff is loadable from archive files.
  318. * Keyboard, mouse, display, timer, etc. (Basic devices).