Skip to content

Commit d939725

Browse files
committed
Finalize release 0.0.2
1 parent 8be7c5e commit d939725

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1+
## 0.0.2 (12-Jun-2020)
2+
* Adjust `intersystems.server` object structure after feedback.
3+
* Constrain server names to use RFC3986 'unreserved' characters only.
4+
* Reduce size of VSIX.
5+
16
## 0.0.1 (10-Jun-2020)
27
* Initial version.

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
# InterSystems® Server Manager
2-
A VS Code helper extension that contributes settings to define connections to InterSystems servers.
2+
A VS Code helper extension that contributes settings which define connections to InterSystems servers.
33

44
For example:
55
```json
66
"intersystems.servers": {
77
"myLocal": {
88
"webServer": {
9+
"scheme": "http",
910
"host": "127.0.0.1",
10-
"port": 52773,
11-
"scheme": "http"
11+
"port": 52773
1212
},
13-
"comment": "My local IRIS instance"
13+
"description": "My local IRIS instance"
1414
},
1515
"dev": {
1616
"webServer": {
17-
"host": "devhost.myorg",
18-
"port": 52773,
19-
"scheme": "http"
17+
"scheme": "https",
18+
"host": "webhost.local",
19+
"port": 443,
20+
"pathPrefix": "iris/dev"
2021
},
21-
"comment": "Shared development server"
22+
"username": "alice",
23+
"description": "Development server serviced by central web host over HTTPS"
2224
},
2325
"/default": "myLocal"
2426
}

0 commit comments

Comments
 (0)