File tree Expand file tree Collapse file tree 7 files changed +23
-0
lines changed Expand file tree Collapse file tree 7 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 4
4
<!-- Add all new changes here. They will be moved under a version at release -->
5
5
* ` FIX ` Improve type narrow with ** literal alias type** during completion and signature help
6
6
* ` NEW ` Setting: ` Lua.type.inferTableSize ` : A Small Table array can be infered
7
+ * ` NEW ` Add custom repository support for addonManager. New configuration setting: ` Lua.addonManager.repositoryBranch ` and ` Lua.addonManager.repositoryPath `
7
8
8
9
## 3.12.0
9
10
` 2024-10-30 `
Original file line number Diff line number Diff line change 2
2
3
3
config .addonManager .enable =
4
4
" Whether the addon manager is enabled or not."
5
+ config .addonManager .repositoryBranch =
6
+ " Specifies the git branch used by the addon manager."
7
+ config .addonManager .repositoryPath =
8
+ " Specifies the git path used by the addon manager."
5
9
config .runtime .version =
6
10
" Lua runtime version."
7
11
config .runtime .path =
Original file line number Diff line number Diff line change 2
2
3
3
config .addonManager .enable = -- TODO: need translate!
4
4
" Whether the addon manager is enabled or not."
5
+ config .addonManager .repositoryBranch = -- TODO: need translate!
6
+ " Specifies the git branch used by the addon manager."
7
+ config .addonManager .repositoryPath = -- TODO: need translate!
8
+ " Specifies the git path used by the addon manager."
5
9
config .runtime .version = -- TODO: need translate!
6
10
" Lua runtime version."
7
11
config .runtime .path = -- TODO: need translate!
Original file line number Diff line number Diff line change 2
2
3
3
config .addonManager .enable = -- TODO: need translate!
4
4
" Whether the addon manager is enabled or not."
5
+ config .addonManager .repositoryBranch = -- TODO: need translate!
6
+ " Specifies the git branch used by the addon manager."
7
+ config .addonManager .repositoryPath = -- TODO: need translate!
8
+ " Specifies the git path used by the addon manager."
5
9
config .runtime .version = -- TODO: need translate!
6
10
" Lua runtime version."
7
11
config .runtime .path = -- TODO: need translate!
Original file line number Diff line number Diff line change 2
2
3
3
config .addonManager .enable =
4
4
" 是否启用扩展的附加插件管理器(Addon Manager)"
5
+ config .addonManager .repositoryBranch =
6
+ " 指定插件管理器(Addon Manager)使用的git仓库分支"
7
+ config .addonManager .repositoryPath =
8
+ " 指定插件管理器(Addon Manager)使用的git仓库路径"
5
9
config .runtime .version =
6
10
" Lua运行版本。"
7
11
config .runtime .path =
Original file line number Diff line number Diff line change 2
2
3
3
config .addonManager .enable = -- TODO: need translate!
4
4
" Whether the addon manager is enabled or not."
5
+ config .addonManager .repositoryBranch = -- TODO: need translate!
6
+ " Specifies the git branch used by the addon manager."
7
+ config .addonManager .repositoryPath = -- TODO: need translate!
8
+ " Specifies the git path used by the addon manager."
5
9
config .runtime .version =
6
10
" Lua執行版本。"
7
11
config .runtime .path =
Original file line number Diff line number Diff line change @@ -415,6 +415,8 @@ local template = {
415
415
[" Lua.docScriptPath" ] = Type .String ,
416
416
-- VSCode
417
417
[" Lua.addonManager.enable" ] = Type .Boolean >> true ,
418
+ [" Lua.addonManager.repositoryPath" ] = Type .String ,
419
+ [" Lua.addonManager.repositoryBranch" ] = Type .String ,
418
420
[' files.associations' ] = Type .Hash (Type .String , Type .String ),
419
421
-- copy from VSCode default
420
422
[' files.exclude' ] = Type .Hash (Type .String , Type .Boolean ) >> {
You can’t perform that action at this time.
0 commit comments