Skip to content

Commit

Permalink
Update Cobalt to 0.7.3
Browse files Browse the repository at this point in the history
 - Add support for Lua 5.2's %g.
 - Fix %p for the upper character ranges.
  • Loading branch information
SquidDev committed Aug 27, 2023
1 parent 500406f commit 6dfdeb9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ parchmentMc = "1.19.4"
asm = "9.3"
autoService = "1.0.1"
checkerFramework = "3.32.0"
cobalt = "0.7.2"
cobalt-next = "0.7.3" # Not a real version, used to constrain the version we accept.
cobalt = "0.7.3"
cobalt-next = "0.7.4" # Not a real version, used to constrain the version we accept.
fastutil = "8.5.9"
guava = "31.1-jre"
jetbrainsAnnotations = "24.0.1"
Expand Down
16 changes: 6 additions & 10 deletions illuaminate.sexp
Original file line number Diff line number Diff line change
Expand Up @@ -83,23 +83,19 @@
;; isn't smart enough.
sleep write printError read rs)))

;; We disable the unused global linter in bios.lua and the APIs. In the future
;; hopefully we'll get illuaminate to handle this.
;; We disable the unused global linter in bios.lua, APIs and our documentation
;; stubs docs. In the future hopefully we'll get illuaminate to handle this.
(at
(/projects/core/src/main/resources/data/computercraft/lua/bios.lua
/projects/core/src/main/resources/data/computercraft/lua/rom/apis/)
(linters -var:unused-global)
(lint (allow-toplevel-global true)))

;; Silence some variable warnings in documentation stubs.
(at (/doc/stub/ /projects/forge/build/docs/luaJavadoc/)
(/doc/stub/
/projects/core/src/main/resources/data/computercraft/lua/bios.lua
/projects/core/src/main/resources/data/computercraft/lua/rom/apis/
/projects/forge/build/docs/luaJavadoc/)
(linters -var:unused-global)
(lint (allow-toplevel-global true)))

;; Suppress warnings for currently undocumented modules.
(at
(; Lua APIs
/projects/core/src/main/resources/data/computercraft/lua/rom/apis/io.lua
/projects/core/src/main/resources/data/computercraft/lua/rom/apis/window.lua)

(linters -doc:undocumented -doc:undocumented-arg -doc:undocumented-return))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ local function make_decoder()
local low_pass_charge = 0
local previous_charge, previous_bit = 0, false

return function (input, output)
return function (input)
expect(1, input, "string")

local output, output_n = {}, 0
Expand Down

0 comments on commit 6dfdeb9

Please sign in to comment.