Skip to content

Commit 9657437

Browse files
committed
Merge branch 'main'
2 parents 57d9d0c + 555f4e2 commit 9657437

6 files changed

Lines changed: 20 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9-
- Initial release
9+
- Initial release
10+
11+
- Add a signup link to [pawsql.com](https://pawsql.com)

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<br/>
1212
</h1>
1313

14-
<h3><a href="https://pawsql.com">PawSQL</a> , Optimize your SQL Queries by Clicks within your VSCode! </h3>
14+
<h3>Optimize your SQL Queries by Clicks within your VSCode! </h3>
1515

1616
[![Version](https://img.shields.io/visual-studio-marketplace/v/PawSQL.pawsqlClient?style=for-the-badge&color=%23e38a14
1717
)](https://marketplace.visualstudio.com/items?itemName=PawSQL.pawsqlClient)
@@ -25,6 +25,8 @@
2525
</picture>
2626
<br/>
2727

28+
</div>
29+
2830
## Optimize a SQL Query
2931
1. **Optimize in Default Workspace**:
3032
- Click the "Optimize" button in the SQL statement prompt
@@ -37,17 +39,16 @@
3739
- **Index Advise**: Recommend optimal indexes based on input SQL syntax, database objects and statistics information
3840
- **Query Rewrite**: Recommend semantically equivalent, but more efficient SQLs
3941
- **Performance Validation**: Ensure better performance after SQL rewrite and index recommendation
42+
4043
## Supported Databases
4144

4245
MySQL, PostgreSQL, MariaDB, Oracle, openGauss, KingbaseES, GaussDB, Dameng, RDS for MySQL and etc.
4346

44-
<br/>
45-
4647
## Resources
4748

48-
<p><a href="https://docs.pawsql.com">PawSQL Docs</a></p>
49-
<p><a href="https://pawsql.com/app">PawSQL Optimizer</a></p>
50-
<p><a href="https://pawsql.com/ppt">PawSQL Performance Patroller</a></p>
51-
<p><a href="https://pawsql.com/ppv">PawSQL Plan Visualizer</a></p>
49+
- <p><a href="https://docs.pawsql.com">PawSQL Docs</a></p>
50+
- <p><a href="https://pawsql.com/app">PawSQL Optimizer</a></p>
51+
- <p><a href="https://pawsql.com/ppt">PawSQL Performance Patroller</a></p>
52+
- <p><a href="https://pawsql.com/ppv">PawSQL Plan Visualizer</a></p>
5253

5354
<br/>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"name": "PawSQL",
99
"email": "support@pawsql.com"
1010
},
11-
"version": "0.0.1",
11+
"version": "0.0.2",
1212
"engines": {
1313
"vscode": "^1.80.0"
1414
},

package.nls.en.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extension.display.name": "PawSQL Client",
3-
"extension.description": "SQL Optimizer, Index Advisor for MySQL/PostgreSQL/Oracle/openGauss and etc, Tune SQL by Clicks",
2+
"extension.display.name": "PawSQL Optimizer",
3+
"extension.description": "SQL Optimizer, Index Advisor for MySQL, PostgreSQL, Oracle, openGauss and etc, Tune SQL by Clicks",
44
"commands.openSettings": "Modify",
55
"commands.refreshTree": "Refresh",
66
"commands.createWorkspace": "Create a Workspace",
@@ -42,8 +42,8 @@
4242
"config.workspace.fileMapping.description": "Mapping between files and workspaces",
4343
"config.workspace.fileMapping.markdownDescription": "Configure which workspace should be used for specific files or file patterns",
4444

45-
"views.activitybar.pawsqlContainerTitle": "PawSQL Client",
45+
"views.activitybar.pawsqlContainerTitle": "PawSQL Optimizer",
4646
"views.welcome.noConfiguration": "$(gear) You need to setup PawSQL server first.\n\n[Setup PawSQL](command:pawsql.openSettings)\n\nClick to setup your PawSQL Server.",
4747
"views.welcome.noWorkspace": "No PawSQL workspace found.\n\n[Create Now](command:pawsql.createWorkspace)\n\nClick to create a workspace for SQL optimization.",
48-
"views.sidebar.pawsqlSidebarName": "PawSQL Client"
48+
"views.sidebar.pawsqlSidebarName": "PawSQL Optimizer"
4949
}

package.nls.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extension.display.name": "PawSQL Client",
2+
"extension.display.name": "PawSQL Optimizer",
33
"extension.description": "SQL Optimizer, Index Advisor for MySQL/PostgreSQL/Oracle/openGauss and more, Tune SQL by Clicks",
44
"commands.openSettings": "修改",
55
"commands.refreshTree": "刷新",
@@ -37,8 +37,8 @@
3737
"config.workspace.default.dbPort.description": "数据库端口号",
3838
"config.workspace.default.dbPort.markdownDescription": "数据库监听的端口号",
3939

40-
"views.activitybar.pawsqlContainerTitle": "PawSQL Client",
40+
"views.activitybar.pawsqlContainerTitle": "PawSQL Optimizer",
4141
"views.welcome.noConfiguration": "尚未完成PawSQL优化引擎配置,单击以设置配置。\n\n[立即配置](command:pawsql.openSettings)\n\n",
4242
"views.welcome.noWorkspace": "未找到工作空间,单击以创建您的工作空间。\n\n[立即创建](command:pawsql.createWorkspace)\n\n",
43-
"views.sidebar.pawsqlSidebarName": "PawSQL Client"
43+
"views.sidebar.pawsqlSidebarName": "PawSQL Optimizer"
4444
}

src/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"form.config.title": "PawSQL Setup",
5151
"form.config.email.label": "PawSQL Account",
5252
"form.config.password.label": "Password",
53-
"form.config.backendUrl.label": "PawSQL Server Address",
53+
"form.config.backendUrl.label": "PawSQL Server",
5454
"form.config.joinPawSQL": "Join PawSQL",
5555
"form.config.description": "PawSQL Client enables developers to access core capabilities of the PawSQL directly within VSCode enviroment. PawSQL provides sophisticated SQL optimization features including smart index recommendations and query rewrites. More about PawSQL's capabilities, please visit ",
5656
"form.config.documentation.link": "docs.pawsql.com",

0 commit comments

Comments
 (0)