Skip to content

Commit 04ab770

Browse files
committed
update submodules
1 parent 83aa702 commit 04ab770

File tree

17 files changed

+335
-92
lines changed

17 files changed

+335
-92
lines changed

3rd/bee.lua

Submodule bee.lua updated 73 files

3rd/love-api

3rd/lovr-api

Submodule lovr-api updated 77 files

3rd/lpeglabel

locale/pt-br/script.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ ACTION_ADD_DICT =
448448
'Adicione \'{}\' ao seu espaço de trabalho no '
449449
ACTION_FIX_ADD_PAREN = -- TODO: need translate!
450450
'添加括号。'
451+
ACTION_AUTOREQUIRE = -- TODO: need translate!
452+
"Import '{}' as {}"
451453

452454
COMMAND_DISABLE_DIAG =
453455
'Desativar diagnósticos.'

locale/zh-cn/script.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ ACTION_ADD_DICT =
448448
'\'{}\' 添加到工作区的词典中。'
449449
ACTION_FIX_ADD_PAREN =
450450
'添加括号。'
451+
ACTION_AUTOREQUIRE = -- TODO: need translate!
452+
"Import '{}' as {}"
451453

452454
COMMAND_DISABLE_DIAG =
453455
'禁用诊断'

locale/zh-tw/script.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,8 @@ ACTION_ADD_DICT =
448448
'添加 \'{}\' 到工作區字典'
449449
ACTION_FIX_ADD_PAREN = -- TODO: need translate!
450450
'添加括号。'
451+
ACTION_AUTOREQUIRE = -- TODO: need translate!
452+
"Import '{}' as {}"
451453

452454
COMMAND_DISABLE_DIAG =
453455
'停用診斷'

meta/3rd/love2d/library/love/graphics.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,7 @@ function love.graphics.newParticleSystem(image, buffer) end
794794
---
795795
---[Open in Browser](https://love2d.org/wiki/love.graphics.newQuad)
796796
---
797+
---@overload fun(x: number, y: number, width: number, height: number, texture: love.Texture):love.Quad
797798
---@param x number # The top-left position in the Image along the x-axis.
798799
---@param y number # The top-left position in the Image along the y-axis.
799800
---@param width number # The width of the Quad in the Image. (Must be greater than 0.)

meta/3rd/lovr/library/callback.lua

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,24 @@ lovr.log = nil
132132
---@type fun(pass: lovr.Pass):boolean
133133
lovr.mirror = nil
134134

135+
---
136+
---This callback is called when the mouse is moved.
137+
---
138+
---@type fun(x: number, y: number, dx: number, dy: number)
139+
lovr.mousemoved = nil
140+
141+
---
142+
---This callback is called when a mouse button is pressed.
143+
---
144+
---@type fun(x: number, y: number, button: number)
145+
lovr.mousepressed = nil
146+
147+
---
148+
---This callback is called when a mouse button is released.
149+
---
150+
---@type fun(x: number, y: number, button: number)
151+
lovr.mousereleased = nil
152+
135153
---
136154
---This callback contains a permission response previously requested with `lovr.system.requestPermission`.
137155
---

0 commit comments

Comments
 (0)