Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release notes and 1 config option #719

Merged
merged 1 commit into from
Feb 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

li>Release date: February 24, 2016< [](start = 1, length = 35)

still haven't removed this file yet? we should switch to popping up a web page for the next release.

<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