Love Api Versions Save

The whole LÖVE wiki in a Lua table.

0.10.0

8 years ago
  • Updated to LÖVE 0.10.0

0.9.2f

8 years ago
  • Added love.graphics.setScissor variants
  • Added Mesh:setDrawRange variant

0.9.2e

9 years ago

Additions

  • Added missing Event Constants (see PR #5)
  • Added description fields for variants of love.graphics.push
  • Added description fields for variant of love.graphics.newFont

Structure changes

  • The field containing function variants is now called 'variants' instead of 'functions' (see PR #6 and #2)
  • Variants now have an (optional) description field

The structure of a function in the api looks like this now:

-- Functions
functions = {
    { -- Function 1
        name = 'Name of the function',
        description = 'The description of what the function does',
        variants = {
            {
                description = 'The description detailing what this variant does',
                arguments = { -- (optional)
                    {
                        type = 'The variable type',
                        name = 'The variable name',
                        description = 'The description of the variable.'
                    },
                    {
                        -- Argument 2
                        -- ...
                    },
                },
                returns = { -- (optional)
                    {
                        type = 'The returned variable type',
                        name = 'The variable name',
                        description = 'The description of the variable.'
                    },
                    {
                        -- Return statement 2
                        -- ...
                    },
                }
            },
        },
    },
    {
    -- Function 2
    -- ...
    },
}

Fixes

  • Moved getDopplerScale and setDopplerScale from Source to love.audio

Other Changes

  • Updated description of love.audio.getDistanceModel

0.9.2d

9 years ago

Additions

  • Added Thread:isRunning (See PR #1)
  • Added Thread:start variant
  • Added love.graphics.newMesh variant
  • Added love.graphics.push variant
  • Added StackType

Fixes

  • Fixed Channel:push (See PR #1)
  • Fixed Channel:supply (See PR #1)

Other Changes

  • Updated love.graphics.push
  • Updated love.graphics.newThread (See PR #1)
  • Updated MeshDrawMode
  • Updated CanvasFormat

0.9.2c

9 years ago
  • Fixed faulty escape sequence in love.filesystem

0.9.1

9 years ago

Documentation based on LÖVE 0.9.1.

0.9.2b

9 years ago
  • Added love.filesystem.mount
  • Added love.filesystem.unmount
  • Added love.filesystem.setSource
  • Added love.filesystem.setSourceBaseDirectory

0.9.2a

9 years ago

Updated require statements.

0.9.2

9 years ago

Additions introduced by LÖVE 0.9.2 have been added to the documentation.