Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • general/stups/b_language_extension
1 result
Select Git revision
Loading items
Show changes
Commits on Source (3)
...@@ -121,8 +121,9 @@ ...@@ -121,8 +121,9 @@
- Now requires VSCode 1.67 - Now requires VSCode 1.67
- Optimized dependencies - Optimized dependencies
## 2.1.1 (not released yet) ## 2.2.0 (not released yet)
- Updated to ProB 1.13.0 - Updated to ProB 1.13.0
- Updated keywords for B rules machines - Updated keywords for B rules machines
- Changed settings prefixes from `languageServer` and `common` to `prob` - this will reset existing settings, but avoids conflicts with other extensions
- Fixed and expanded snippets for B relation/function operators - Fixed and expanded snippets for B relation/function operators
\ No newline at end of file
...@@ -33,8 +33,8 @@ The language server can be found here https://github.com/hhu-stups/b-language-ex ...@@ -33,8 +33,8 @@ The language server can be found here https://github.com/hhu-stups/b-language-ex
## Installation on VSCodium ## Installation on VSCodium
You can also install the plugin in [VSCodium](https://vscodium.com) by downloading the artefact (b-language-extension-2.1.1.vsix) and typing You can also install the plugin in [VSCodium](https://vscodium.com) by downloading the artefact (b-language-extension-\<VERSION>.vsix) and typing
codium --install-extension b-language-extension-2.1.1.vsix codium --install-extension b-language-extension-\<VERSION>.vsix
## Future plans ## Future plans
- Quickfix support aka Code Completion - Quickfix support aka Code Completion
...@@ -43,10 +43,11 @@ You can also install the plugin in [VSCodium](https://vscodium.com) by downloadi ...@@ -43,10 +43,11 @@ You can also install the plugin in [VSCodium](https://vscodium.com) by downloadi
## Release Notes ## Release Notes
### 2.1.1 ### 2.2.0
- Updated to ProB 1.13.0 - Updated to ProB 1.13.0
- Updated keywords for B rules machines - Updated keywords for B rules machines
- Changed settings prefixes from `languageServer` and `common` to `prob` - this will reset existing settings, but avoids conflicts with other extensions
- Fixed and expanded snippets for B relation/function operators - Fixed and expanded snippets for B relation/function operators
## Acknowledgements ## Acknowledgements
......
{ {
"name": "b-language-extension", "name": "b-language-extension",
"version": "2.1.1", "version": "2.2.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "b-language-extension", "name": "b-language-extension",
"version": "2.1.1", "version": "2.2.0",
"license": "EPL-2.0", "license": "EPL-2.0",
"dependencies": { "dependencies": {
"vscode-languageclient": "^8.1.0" "vscode-languageclient": "^8.1.0"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "b-language-extension", "name": "b-language-extension",
"displayName": "B/ProB Language Support", "displayName": "B/ProB Language Support",
"description": "Compiler and language support for B via ProB", "description": "Compiler and language support for B via ProB",
"version": "2.1.1", "version": "2.2.0",
"publisher": "SeeBasTStick", "publisher": "SeeBasTStick",
"icon": "media/prob2-ui.png", "icon": "media/prob2-ui.png",
"author": "Sebastian Stock", "author": "Sebastian Stock",
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
"scope": "application", "scope": "application",
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "Option for WD Checks" "description": "Option for WD checks"
}, },
"prob.strictChecks": { "prob.strictChecks": {
"id": "3", "id": "3",
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
"scope": "application", "scope": "application",
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "Option for stricter Checks" "description": "Option for stricter checks"
}, },
"prob.performanceHints": { "prob.performanceHints": {
"id": "4", "id": "4",
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
"scope": "application", "scope": "application",
"type": "boolean", "type": "boolean",
"default": true, "default": true,
"description": "Option for performance-related Hints" "description": "Option for performance-related hints"
}, },
"prob.debugMode": { "prob.debugMode": {
"id": "5", "id": "5",
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
"scope": "application", "scope": "application",
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Option for enabling (extensiv) debug messages" "description": "Option for enabling (extensive) debug messages"
}, },
"prob.javaHome": { "prob.javaHome": {
"id": "6", "id": "6",
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
"scope": "application", "scope": "application",
"type": "string", "type": "string",
"default": "java", "default": "java",
"description": "Points to the java sdk responsible for executing the language server" "description": "Points to the java executable responsible for executing the language server"
} }
} }
}, },
......