Skip to content

Commit ffeb4ea

Browse files
committed
Fix the settings grouping in the VS Code settings editor
1 parent 1f611bc commit ffeb4ea

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.77.0]
4+
5+
* Fix the settings grouping in the VS Code settings editor
6+
37
## [0.76.0]
48

59
* Rename the "Renumber variables" refactoring to "Increment numbered variables" and add a corresponding "Decrement numbered variables" refactoring

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "logtalk-for-vscode",
33
"displayName": "Logtalk for VSCode",
44
"description": "Logtalk programming support",
5-
"version": "0.76.0",
5+
"version": "0.77.0",
66
"publisher": "LogtalkDotOrg",
77
"icon": "images/logtalk.png",
88
"license": "MIT",
@@ -726,6 +726,7 @@
726726
],
727727
"configuration": [
728728
{
729+
"id": "logtalk-required",
729730
"title": "Required",
730731
"properties": {
731732
"logtalk.home.path": {
@@ -763,6 +764,7 @@
763764
}
764765
},
765766
{
767+
"id": "logtalk-optional",
766768
"title": "Optional",
767769
"properties": {
768770
"logtalk.executable.path": {
@@ -849,6 +851,7 @@
849851
}
850852
},
851853
{
854+
"id": "logtalk-defaults",
852855
"title": "Defaults",
853856
"properties": {
854857
"logtalk.loadProject.onActivation": {
@@ -997,7 +1000,7 @@
9971000
"compile": "tsc -watch -p ./",
9981001
"test": "tsc ./tests/runTest.ts",
9991002
"vsix:make": "vsce package --baseImagesUrl https://raw.githubusercontent.com/llvm/llvm-project/master/clang-tools-extra/clangd/clients/clangd-vscode/",
1000-
"vsix:install": "code --install-extension logtalk-for-vscode-0.76.0.vsix"
1003+
"vsix:install": "code --install-extension logtalk-for-vscode-0.77.0.vsix"
10011004
},
10021005
"devDependencies": {
10031006
"@types/bluebird": "^3.5.38",

0 commit comments

Comments
 (0)