Skip to content

Commit ed44e67

Browse files
committed
Update CHANGELOG and README for 1.0.8
1 parent fdcbcc1 commit ed44e67

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## [1.0.8] 15-Jan-2021
4+
- Implement `isfs://server:namespace/` syntax as an alternative to the `ns=NAMESPACE` query parameter (#450)
5+
- Use new isfs notation in entries created by 'Add Server Namespace to Workspace' (#554)
6+
- Load server-side (isfs) folder-specific snippets (#552)
7+
- Improve snippets:
8+
- Add a ///-comment tabstop at the start of all snippets used in class definitions.
9+
- Add descriptive default text to more tabstops.
10+
- Add third superclass to multi-superclass snippet.
11+
- Uniformly use Capitalized command names and UPPERCASE function names in ObjectScript.
12+
- Standardize body layout in definitions to reflect layout of result.
13+
- Tidy how duplicate tabstops are used.
14+
- Support searching all Studio document types when using symbol search (Cmd/Ctrl + T).
15+
- Upgrade vulnerable dependency.
16+
317
## [1.0.7] 4-Jan-2021
418
- Fix issue affecting use with Docker on Windows (#516)
519
- Resolve problem debugging in a multi-root workspace using isfs (#387)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,10 @@ Server-side development is best done using `isfs` folders. The read-only variant
163163

164164
To modify how your folder behaves, edit the JSON of your workspace definition (_XYZ.code-workspace_ file). Get there by running the 'Preferences: Open Workspace Settings (JSON)' command. Edit your `uri` property.
165165

166-
- The `csp` query parameter indicates web application files are to be shown. The uri path optionally specifies which application. The `ns` parameter must specify the same namespace the application is configured to use. In the following example the first folder is for the `/csp/user` web application in the USER namespace of the server named 'local' and the second gives read-only access to all web applications that reside in the %SYS namespace. The second folder also uses the optional `name` property:
166+
- The `csp` query parameter indicates web application files are to be shown. The uri path optionally specifies which application. The namespace suffix on the server name (preferred syntax) or the `ns` query parameter (deprecated) must specify the same namespace the application is configured to use. In the following example the first folder is for the `/csp/user` web application in the USER namespace of the server named 'local' and the second gives read-only access to all web applications that reside in the %SYS namespace. The second folder also uses the optional `name` property:
167167
```json
168168
{
169-
"uri": "isfs://local/csp/user?ns=USER&csp"
169+
"uri": "isfs://local:user/csp/user?csp"
170170
},
171171
{
172172
"name": "local:%SYS web files (read-only)",
@@ -178,7 +178,7 @@ To modify how your folder behaves, edit the JSON of your workspace definition (_
178178

179179
```json
180180
{
181-
"uri": "isfs://local/Xxx/Yyy?ns=USER&type=cls"
181+
"uri": "isfs://local:user/Xxx/Yyy?type=cls"
182182
}
183183
```
184184

0 commit comments

Comments
 (0)