Skip to content
Snippets Groups Projects
Select Git revision
  • f21c72b889ab0d358f3b66cc5029a342cd66b18a
  • next default protected
  • escape-chars-in-tokenizer
  • remap-fixes
  • hub-gametype
  • legacy-drawmasked-port
  • floorsprite-clipping
  • custom-map-names
  • zip-dir-refactor
  • r-draw8-cpp-squashed
  • hwportals
  • master
  • fix-slope-plane-distortion
  • fixes-for-2190
  • text-prompt-features
  • wipeloop-rebased
  • secondcolor-merged
  • i_video-refactor-port
  • rotation2
  • fading-callback-thread-fix-master
  • tc
21 results

i_main.c

Blame
  • Forked from STJr / SRB2
    Source project has a limited visibility.
    changelog.md 69.16 KiB

    changelog

    3.7.3

    2023-11-14

    • FIX can not infer arg type in some cases.

    3.7.2

    2023-11-9

    3.7.1

    2023-11-7

    3.7.0

    2023-8-24

    • NEW support ---@type and --[[@as]] for return statement

    • NEW commandline parameter --force-accept-workspace: allowing the use of the root directory or home directory as the workspace

    • NEW diagnostic: inject-field

    • NEW ---@enum supports attribute key

      ---@enum (key) AnimalType
      local enum = {
        Cat = 1,
        Dog = 2,
      }
      
      ---@param animal userdata
      ---@param atp AnimalType
      ---@return boolean
      local function isAnimalType(animal, atp)
        return API.isAnimalType(animal, enum[atp])
      end
      
      assert(isAnimalType(animal, 'Cat'))
    • NEW ---@class supports attribute exact

      ---@class (exact) Point
      ---@field x number
      ---@field y number
      local m = {}
      m.x = 1 -- OK
      m.y = 2 -- OK
      m.z = 3 -- Warning
    • FIX wrong hover and signature for method with varargs and overloads

    • FIX #2155

    • FIX #2224

    • FIX #2252

    • FIX #2267

    3.6.25

    2023-7-26

    3.6.24

    2023-7-21

    • NEW diagnostic: missing-fields
    • FIX shake of codeLens
    • FIX #2145

    3.6.23

    2023-7-7

    • CHG signature: narrow by inputed literal

    3.6.22

    2023-6-14

    3.6.21

    2023-5-24

    • FIX disable ffi plugin

    3.6.20

    2023-5-23