Skip to content

Commit 00b2ac7

Browse files
author
Anup Kamath
committed
icon and upgrading the version on tools
1 parent cbaabf1 commit 00b2ac7

File tree

4 files changed

+42
-12
lines changed

4 files changed

+42
-12
lines changed

README.md

+38-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,42 @@
1+
# pgsql for SQL Operations Studio
12

2-
# Contributing
3+
Welcome to **pgsql** for SQL Operations Studio! An extension for developing PostgreSQL everywhere with a rich set of functionalities, including:
34

4-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
5-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
6-
the rights to use your contribution. For details, visit https://cla.microsoft.com.
5+
* Connect to PostgreSQL, Azure databases for PosgreSQL.
6+
* Create and manage connection profiles and most recently used connections.
7+
* Write scripts with IntelliSense, Go to Definition, snippets, syntax colorizations, error validations.
8+
* Object Explorer supporting schema browsing and contextual command execution
9+
* Execute your scripts and view results in a simple to use grid.
10+
* Save the result to json, csv or excel file format and view in the editor.
11+
* Visual Data Editor that enables direct row insertion, update and deletion into tables.
12+
* Scripting support to generate CREATE, SELECT and DROP statements for database objects
713

8-
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
9-
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
10-
provided by the bot. You will only need to do this once across all repos using our CLA.
14+
## Offline Installation
15+
The extension will download and install a required PgSqlToolsService package during activation. For machines with no Internet access, you can still use the extension by choosing the
16+
`Install from VSIX...` option in the Extension view and installing a bundled release from our [Releases](https://github.com/Microsoft/sqlops-pgsql/releases) page.
1117

12-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
13-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
14-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
18+
## Support
19+
Support for this extension is provided on our [GitHub Issue Tracker]. You can submit a [bug report], a [feature suggestion] or participate in [discussions].
20+
21+
## Contributing to the Extension
22+
See the [developer documentation] for details on how to contribute to this extension.
23+
24+
## Code of Conduct
25+
This project has adopted the [Microsoft Open Source Code of Conduct]. For more information see the [Code of Conduct FAQ] or contact [opencode@microsoft.com] with any additional questions or comments.
26+
27+
## Privacy Statement
28+
The [Microsoft Enterprise and Developer Privacy Statement] describes the privacy statement of this software.
29+
30+
## License
31+
This extension is [licensed under the MIT License]. Please see the [third-party notices] file for additional copyright notices and license terms applicable to portions of the software.
32+
33+
[GitHub Issue Tracker]:https://github.com/Microsoft/sqlops-pgsql/issues
34+
[bug report]:https://github.com/Microsoft/sqlops-pgsql/issues/new?labels=bug
35+
[feature suggestion]:https://github.com/Microsoft/sqlops-pgsql/issues/new?labels=feature-request
36+
[developer documentation]:https://github.com/Microsoft/sqlops-pgsql/wiki/contributing
37+
[Microsoft Enterprise and Developer Privacy Statement]:https://go.microsoft.com/fwlink/?LinkId=786907&lang=en7
38+
[licensed under the MIT License]: https://github.com/Microsoft/sqlops-pgsql/blob/master/LICENSE.txt
39+
[third-party notices]: https://github.com/Microsoft/sqlops-pgsql/blob/master/ThirdPartyNotices.txt
40+
[Microsoft Open Source Code of Conduct]:https://opensource.microsoft.com/codeofconduct/
41+
[Code of Conduct FAQ]:https://opensource.microsoft.com/codeofconduct/faq/
42+
[opencode@microsoft.com]:mailto:opencode@microsoft.com

images/extension-icon.png

10.6 KB
Loading

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
2-
"name": "pgsql",
2+
"name": "sqlops-pgsql",
33
"version": "0.1.0",
44
"publisher": "Microsoft",
5+
"description": "PostgreSQL extension for SQL Operations Studio",
56
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
7+
"icon": "images/extension-icon.png",
68
"engines": {
79
"vscode": "^1.9.0"
810
},

src/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"service": {
33
"downloadUrl": "http://dtnuget:8080/download/pgtoolsservice/{#version#}/pgsqltoolsservice-{#fileName#}",
4-
"version": "1.2.0-alpha.22",
4+
"version": "1.4.0-alpha.1",
55
"downloadFileNames": {
66
"Windows_64": "win-x64.zip",
77
"Windows_86": "win-x86.zip",

0 commit comments

Comments
 (0)