Skip to content

Commit 41e44d9

Browse files
committed
3.13.4
1 parent 78d336b commit 41e44d9

9 files changed

+13
-8
lines changed

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55

6+
## 3.13.4
7+
`2024-12-13`
8+
* `CHG` Can adjust the level of detail of Hover (VSCode)
9+
610
## 3.13.3
11+
`2024-12-6`
712
* `CHG` Update Love2d version
813
* `CHG` Improve type infer of `table.unpack` and `unpack`
914
* `FIX` `missing-fields` diagnostic now warns about missing inherited fields

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3427,5 +3427,5 @@
34273427
"sponsor": {
34283428
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
34293429
},
3430-
"version": "3.13.3"
3430+
"version": "3.13.4"
34313431
}

package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "3.13.3"
3+
local VERSION = "3.13.4"
44

55
local fsu = require 'fs-utility'
66
local package = json.decode(fsu.loadFile(ROOT / 'package.json'))

setting/schema-ja-jp.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@
27692769
"type": "boolean"
27702770
},
27712771
"hover.previewFields": {
2772-
"default": 50,
2772+
"default": 10,
27732773
"markdownDescription": "When hovering to view a table, limits the maximum number of previews for fields.",
27742774
"scope": "resource",
27752775
"type": "integer"

setting/schema-pt-br.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@
27692769
"type": "boolean"
27702770
},
27712771
"hover.previewFields": {
2772-
"default": 50,
2772+
"default": 10,
27732773
"markdownDescription": "When hovering to view a table, limits the maximum number of previews for fields.",
27742774
"scope": "resource",
27752775
"type": "integer"

setting/schema-zh-cn.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@
27692769
"type": "boolean"
27702770
},
27712771
"hover.previewFields": {
2772-
"default": 50,
2772+
"default": 10,
27732773
"markdownDescription": "悬停提示查看表时,限制表内字段的最大预览数量。",
27742774
"scope": "resource",
27752775
"type": "integer"

setting/schema-zh-tw.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@
27692769
"type": "boolean"
27702770
},
27712771
"hover.previewFields": {
2772-
"default": 50,
2772+
"default": 10,
27732773
"markdownDescription": "懸浮提示檢視表時,限制表內欄位的最大預覽數量。",
27742774
"scope": "resource",
27752775
"type": "integer"

setting/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@
27692769
"type": "boolean"
27702770
},
27712771
"hover.previewFields": {
2772-
"default": 50,
2772+
"default": 10,
27732773
"markdownDescription": "When hovering to view a table, limits the maximum number of previews for fields.",
27742774
"scope": "resource",
27752775
"type": "integer"

0 commit comments

Comments
 (0)