Skip to content

Commit

Permalink
Release 0.3.0 (#51)
Browse files Browse the repository at this point in the history
* Preparations for release 0.3.0

Signed-off-by: Kuba Wolanin <jakub.wolanin@sabre.com>

* Preparations for release 0.3.0

Signed-off-by: Kuba Wolanin <jakub.wolanin@sabre.com>
  • Loading branch information
kubawolanin committed Nov 15, 2017
1 parent bc56953 commit 485c18d
Show file tree
Hide file tree
Showing 4 changed files with 210 additions and 200 deletions.
82 changes: 46 additions & 36 deletions CHANGELOG.md
@@ -1,37 +1,47 @@
# openHAB VS Code Extension Change Log

## 0.2.1 - 2017-11-02
- Language Server Protocol with a custom port parameter (#42)
- Fixed "switch" icon coloring (#18)
- "Set openHAB host" button on error message (#42)
- Insert into Sitemap feature
- **Breaking change**: `openhab.port` parameter is now a number (e.g. `8080` instead of `"8080"`).
Please change it in your settings after upgrade.

## 0.2.0 - 2017-10-17
- Language Server Protocol support
- You can now disable REST API connection
- Updated logo icons
- Better error handling
- Fixed REST connection with Basic Authentication
- Paper UI URL is now dynamically detected
- More new snippets

## 0.1.0 - 2017-07-07
- Completely new openHAB Items Explorer view in the sidebar!
- Preview **all** of your items thanks to the REST API
- Dynamic rules from the Items Explorer view - including the current state
- Ability to copy Item's name and state
- Clicking non-Group item opens it in the Paper UI by default
- Note: Currently in VS Code stable Items Explorer is permanently visible. VS Code Insiders allows you to hide the tree view thanks to [vscode#29436](https://github.com/Microsoft/vscode/issues/29436)
- Added Items autocompletion (with IntelliSense documentation) (#7)
- Quick search in the Community Forum
- Added icon theme

## 0.0.2 - 2017-06-21
- openHAB hostname and port are now configurable through user or workspace settings (#14)
- Added "openhab.searchCommunity" action allowing to search selected text in the openHAB Community (#13)
- Minor tweaks in the code and documentation (#6 #13)

## 0.0.1 - 2017-06-19
# openHAB VS Code Extension Change Log

## 0.3.0 - 2017-11-15
- Introduced openHAB **Things Explorer** view in the sidebar!
- Create Items directly from Thing's channels.
- Quick copy name and Thing UID directly from the sidebar
- Quick access to the binding documentation
- Insert into Sitemap feature in the openHAB Items view
- Various Language Server Protocol fixes
- New configuration parameters:
- `restCompletions` - toggles completions from REST API
- `paperPath` - defaults to `paperui`. Change it to `ui` if you're using from before 9th Jan 2017
- `paperInBrowser` - if set to `true`, will open Paper UI in a browser instead of VSCode window
- `lspEnabled` - if `true`, will enable communication with openHAB's Language Server. Note that `misc-lsp` add-on needs to be installed.
- `lspPort` - defaults to `5007`, custom LSP port parameter (#42)
- Fixed "switch" icon coloring (#18)
- "Set openHAB host" button on error message (#42)
- **Breaking change**: `openhab.port` parameter is now a number (e.g. `8080` instead of `"8080"`).
Please change it in your settings after upgrade.

## 0.2.0 - 2017-10-17
- Language Server Protocol support
- You can now disable REST API connection
- Updated logo icons
- Better error handling
- Fixed REST connection with Basic Authentication
- Paper UI URL is now dynamically detected
- More new snippets

## 0.1.0 - 2017-07-07
- Completely new openHAB Items Explorer view in the sidebar!
- Preview **all** of your items thanks to the REST API
- Dynamic rules from the Items Explorer view - including the current state
- Ability to copy Item's name and state
- Clicking non-Group item opens it in the Paper UI by default
- Note: Currently in VS Code stable Items Explorer is permanently visible. VS Code Insiders allows you to hide the tree view thanks to [vscode#29436](https://github.com/Microsoft/vscode/issues/29436)
- Added Items autocompletion (with IntelliSense documentation) (#7)
- Quick search in the Community Forum
- Added icon theme

## 0.0.2 - 2017-06-21
- openHAB hostname and port are now configurable through user or workspace settings (#14)
- Added "openhab.searchCommunity" action allowing to search selected text in the openHAB Community (#13)
- Minor tweaks in the code and documentation (#6 #13)

## 0.0.1 - 2017-06-19
- Initial release
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
@@ -1,8 +1,8 @@
{
"name": "openhab",
"displayName": "openHAB",
"description": "openHAB syntax highlight, code snippets, integrated Basic UI preview and docs search",
"version": "0.2.1",
"description": "Robust tool for openHAB textual configurations. Includes code snippets, syntax highlighting, language server integration and more.",
"version": "0.3.0",
"publisher": "openhab",
"icon": "openhab.png",
"repository": {
Expand Down Expand Up @@ -208,7 +208,7 @@
"default": true,
"description": "Enables communication with Language Server Protocol - installed in openHAB as 'misc-lsp' add-on"
},
"openhab.lspCompletions": {
"openhab.restCompletions": {
"type": [
"boolean"
],
Expand Down

0 comments on commit 485c18d

Please sign in to comment.