Skip to content

Commit

Permalink
Fix release notes and 1 config option (#719)
Browse files Browse the repository at this point in the history
- Config option was not setup to support discovery of the "saveAsCsv.IncludeHeaders" option - it only gave an empty object instead of the true/false option that's standard for other settings. Updated & verified that the option is still correctly passed through to the SqlToolsService
- Updated release notes, readme & changelog to reflect new release
- Updated Readme to include all config options
  • Loading branch information
kevcunnane authored Feb 24, 2017
1 parent fb4ed7b commit 7cf26f4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log

## Version 0.3.0
* Release date: February 2, 2016
* Release date: February 24, 2016
* Release status: Public Preview

## What's new in this version
Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,24 @@ See [customize options] and [manage connection profiles] for more details.
},
"mssql.messagesDefaultOpen": true,
"mssql.logDebugInfo": false,
"mssql.saveAsCSV": {
"includeHeaders": true
},
"mssql.saveAsCSV.includeHeaders": true,
"mssql.enableIntelliSense": true,
"mssql.intelliSense.enableErrorChecking": true,
"mssql.intelliSense.enableSuggestions": true,
"mssql.intelliSense.enableQuickInfo": true,
"mssql.intelliSense.lowerCaseSuggestions": false,
"mssql.resultsFontFamily": "-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif",
"mssql.resultsFontSize": 13,
"mssql.copyRemoveNewLine" : true
"mssql.copyIncludeHeaders": false,
"mssql.copyRemoveNewLine" : true,
"mssql.splitPaneSelection": "next",
"mssql.format.alignColumnDefinitionsInColumns": false,
"mssql.format.datatypeCasing": "none",
"mssql.format.keywordCasing": "none",
"mssql.format.placeCommasBeforeNextStatement": false,
"mssql.format.placeSelectStatementReferencesOnNewLine": false,
"mssql.applyLocalization": false,
"mssql.query.displayBitAsNumber": true
}
```

Expand Down
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -433,14 +433,10 @@
"description": "Set the font size for the results grid; set to blank to use the editor size",
"default": 13
},
"mssql.saveAsCsv": {
"type": "object",
"description": "[Optional] Configuration options for saving results as CSV",
"includeHeaders": {
"type": "boolean",
"default": true,
"description": "[Optional] When true, column headers are included in CSV"
}
"mssql.saveAsCsv.includeHeaders": {
"type": "boolean",
"description": "[Optional] When true, column headers are included when saving results as CSV",
"default": true
},
"mssql.copyIncludeHeaders": {
"type": "boolean",
Expand Down
4 changes: 2 additions & 2 deletions src/views/htmlcontent/src/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<h2 id="7">Version 0.3.0</h2>
<ul>
<li>Release date: February, 2016</li>
<li>Release date: February 24, 2016</li>
<li>Release status: Public Preview</li>
</ul>
<h2 id="8">What's new in this version</h2>
Expand All @@ -15,7 +15,7 @@ <h2 id="8">What's new in this version</h2>
<li><strong>New Query</strong> command added. This opens a new .sql file and connects to a server, making it quicker to get started with your queries</li>
<li>Fixed support for SQL Data Warehouse connections.</li>
<li>Prototype localization support added. We will be adding full localization support in a future update.</li>
<li>mproved Peek Definition support. Multiple bug fixes, and additional supported types.</li>
<li>Improved Peek Definition support. Multiple bug fixes, and additional supported types.</li>
<li>Support for Windows x86 machines</li>
<li>Fix for issue #604 where results that included HTML were not rendered correctly</li>
<li>Multiple fixes for syntax highlighting</li>
Expand Down

0 comments on commit 7cf26f4

Please sign in to comment.