Skip to content

Commit

Permalink
Finalize release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed Jun 12, 2020
1 parent 8be7c5e commit d939725
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
## 0.0.2 (12-Jun-2020)
* Adjust `intersystems.server` object structure after feedback.
* Constrain server names to use RFC3986 'unreserved' characters only.
* Reduce size of VSIX.

## 0.0.1 (10-Jun-2020)
* Initial version.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
# InterSystems® Server Manager
A VS Code helper extension that contributes settings to define connections to InterSystems servers.
A VS Code helper extension that contributes settings which define connections to InterSystems servers.

For example:
```json
"intersystems.servers": {
"myLocal": {
"webServer": {
"scheme": "http",
"host": "127.0.0.1",
"port": 52773,
"scheme": "http"
"port": 52773
},
"comment": "My local IRIS instance"
"description": "My local IRIS instance"
},
"dev": {
"webServer": {
"host": "devhost.myorg",
"port": 52773,
"scheme": "http"
"scheme": "https",
"host": "webhost.local",
"port": 443,
"pathPrefix": "iris/dev"
},
"comment": "Shared development server"
"username": "alice",
"description": "Development server serviced by central web host over HTTPS"
},
"/default": "myLocal"
}
Expand Down

0 comments on commit d939725

Please sign in to comment.