File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
44For 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 }
You can’t perform that action at this time.
0 commit comments