changes.txt 17 KB

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