Skip to content

Commit b8710c7

Browse files
NikolasKomonenfbricon
authored andcommitted
Client CHANGELOG v 0.4.0
Signed-off-by: Nikolas Komonen <[email protected]>
1 parent a4a439f commit b8710c7

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## [0.4.0](https://github.com/redhat-developer/vscode-xml/milestone/4?closed=1) (March 06, 2019)
4+
5+
### Enhancements
6+
7+
* Modified schema validation messages. See [#91](https://github.com/redhat-developer/vscode-xml/issues/91).
8+
* Preference `xml.format.quotations` to set single vs double quotes for attribute values on format. See [lsp4xml#263](https://github.com/angelozerr/lsp4xml/issues/263).
9+
* Preference `xml.format.preserveEmptyContent` to preserve a whitespace value in an element's content. See [#96](https://github.com/redhat-developer/vscode-xml/issues/96).
10+
* Removed support for preference `xml.format.joinContentLines`.
11+
* Compatibility with OSGi and p2. See [lsp4xml#288](https://github.com/angelozerr/lsp4xml/issues/288).
12+
13+
### Bug Fixes
14+
15+
* Fixed memory leak of file handles. See [#108](https://github.com/redhat-developer/vscode-xml/issues/108).
16+
* XSI completion item messages were incorrect. See [lsp4xml#296](https://github.com/angelozerr/lsp4xml/issues/296).
17+
* Removed trailing whitespace from normalized strings on format. See [lsp4xml#300](https://github.com/angelozerr/lsp4xml/pull/300).
18+
* Format of attribute without value loses data. See [lsp4xml#294](https://github.com/angelozerr/lsp4xml/issues/294).
19+
320
## [0.3.0](https://github.com/redhat-developer/vscode-xml/milestone/3?closed=1) (January 28, 2019)
421

522
### Enhancements

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ The following settings are supported:
5353
* `xml.fileAssociations` : Associate XML Schemas to XML file patterns.
5454
* `xml.format.splitAttributes` : Set to `true` to split node attributes onto multiple lines during formatting. Defaults to `false`.
5555
* `xml.format.joinCDATALines` : Set to `true` to join lines in CDATA content during formatting. Defaults to `false`.
56-
* `xml.format.joinContentLines` : Set to `true` to join lines in node content during formatting. Defaults to `false`.
5756
* `xml.format.joinCommentLines` : Set to `true` to join lines in comments during formatting. Defaults to `false`.
5857
* `xml.format.enabled` : Enable/disable formatting.
5958
* `xml.autoCloseTags.enabled` : Enable/disable automatic tag closing.
6059
**Note** 'editor.autoClosingBrackets' must be turned off to work.
6160
* `xml.server.vmargs`: Extra VM arguments used to launch the XML Language Server. Requires VS Code restart.
62-
63-
Since 0.3.0:
6461
* `xml.validation.enabled`: Set to `false` to disable all validation. Defaults to `true`.
6562
* `xml.validation.schema`: Set to `false` to disable schema validation. Defaults to `true`.
6663
* `xml.validation.noGrammar`: The message severity when a document has no associated grammar. Defaults to `hint`.
6764
* `xml.format.spaceBeforeEmptyCloseTag`: Set to `true` to insert space before the end of a self closing tag. Defaults to `true`.
6865

66+
Since 0.4.0:
67+
* `xml.format.quotations`: Set to `doubleQuotes` to format and only use `"`, or `singleQuotes` to format and only use `'`. Defaults to `doubleQuotes`.
68+
* `xml.format.preserveEmptyContent`: Set to `true` to preserve standalone whitespace content in an element. Defaults to `false`.
6969

7070
More detailed info in the [Wiki](https://github.com/redhat-developer/vscode-xml/wiki/Preferences).
7171

0 commit comments

Comments
 (0)