Skip to content
Robert Machmer edited this page Apr 8, 2015 · 16 revisions

#0.9.2f - unreleased

Additions

  • Added missing Mesh:setDrawRange variant

#0.9.2e

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',
NEW --> variants = {
            {
        NEW --> 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

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

  • Fixed faulty escape sequence in love.filesystem

#0.9.2b

  • Added love.filesystem.mount
  • Added love.filesystem.unmount
  • Added love.filesystem.setSource
  • Added love.filesystem.setSourceBaseDirectory

#0.9.2a

  • Fixed require statements

#0.9.2

  • Updated the documentation to LÖVE Version 0.9.2

#0.9.1

  • Updated the documentation to LÖVE Version 0.9.1
Clone this wiki locally