Skip to content

Commit c5e3a15

Browse files
committed
chore: bump version for release
1 parent 2ec27c1 commit c5e3a15

11 files changed

Lines changed: 20 additions & 14 deletions

File tree

build/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ info:
1111
description: "A program that does X" # The application description
1212
copyright: "(c) 2025, QueryBox Inc." # Copyright text
1313
comments: "QueryBox is a powerful tool for performing queries on various databases." # Comments
14-
version: "0.0.1" # The application version
14+
version: "0.1.0" # The application version
1515
# cfBundleIconName: "appicon" # The macOS icon name in Assets.car icon bundles (optional)
1616
# # Should match the name of your .icon file without the extension
1717
# # If not set and Assets.car exists, defaults to "appicon"
@@ -75,4 +75,4 @@ fileAssociations:
7575

7676
# Other data
7777
other:
78-
- name: My Other Data
78+
- name: My Other Data

frontend/src/lib/dbIcons.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,11 @@ export function getDriverIcon(driverType) {
5151
* @returns {string} icon key suitable for passing to `DbIcon`/`getDriverIcon`
5252
*/
5353
export function getIconNameForDriver(driverType, plugin) {
54+
if (!driverType || typeof driverType !== 'string')
55+
return ''
56+
5457
if (plugin && plugin.metadata && typeof plugin.metadata.simple_icon === 'string' && plugin.metadata.simple_icon.trim() !== '') {
5558
return plugin.metadata.simple_icon.toLowerCase()
5659
}
57-
return driverType ? driverType.toLowerCase() : ''
60+
return driverType.toLowerCase()
5861
}

plugins/mysql/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (m *mysqlPlugin) Info(ctx context.Context, _ *pluginpb.PluginV1_InfoRequest
2525
return &plugin.InfoResponse{
2626
Type: plugin.TypeDriver,
2727
Name: "MySQL",
28-
Version: "0.0.2",
28+
Version: "0.1.0",
2929
Description: "MySQL database driver",
3030
Url: "https://www.mysql.com/",
3131
Author: "QueryBox Team",

plugins/mysql/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": 1,
44
"name": "MySQL",
55
"description": "Built-in MySQL driver plugin for QueryBox.",
6-
"version": "0.0.2",
6+
"version": "0.1.0",
77
"url": "https://www.mysql.com/",
88
"author": "QueryBox Team",
99
"runtime": {

plugins/postgresql/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (m *postgresqlPlugin) Info(ctx context.Context, _ *pluginpb.PluginV1_InfoRe
2525
return &plugin.InfoResponse{
2626
Type: plugin.TypeDriver,
2727
Name: "PostgreSQL",
28-
Version: "0.0.2",
28+
Version: "0.1.0",
2929
Description: "PostgreSQL database driver",
3030
Url: "https://www.postgresql.org/",
3131
Author: "QueryBox Team",

plugins/postgresql/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": 1,
44
"name": "PostgreSQL",
55
"description": "Built-in PostgreSQL driver plugin for QueryBox.",
6-
"version": "0.0.2",
6+
"version": "0.1.0",
77
"url": "https://www.postgresql.org/",
88
"author": "QueryBox Team",
99
"runtime": {

plugins/redis/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func (m *redisPlugin) Info(ctx context.Context, _ *pluginpb.PluginV1_InfoRequest
6262
return &plugin.InfoResponse{
6363
Type: plugin.TypeDriver,
6464
Name: "Redis",
65-
Version: "0.0.1",
65+
Version: "0.1.0",
6666
Description: "Redis key inspector plugin",
6767
Url: "https://redis.io/",
6868
Author: "QueryBox Team",

plugins/redis/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": 1,
44
"name": "Redis",
55
"description": "Built-in Redis key inspector plugin for QueryBox.",
6-
"version": "0.0.1",
6+
"version": "0.1.0",
77
"url": "https://redis.io/",
88
"author": "QueryBox Team",
99
"runtime": {

plugins/registry.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
22
"plugins": {
33
"mysql": {
4-
"version": "0.0.2"
4+
"version": "0.1.0"
55
},
66
"postgresql": {
7-
"version": "0.0.2"
7+
"version": "0.1.0"
88
},
99
"sqlite": {
10-
"version": "0.0.2"
10+
"version": "0.1.0"
11+
},
12+
"redis": {
13+
"version": "0.1.0"
1114
}
1215
}
1316
}

plugins/sqlite/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func (m *sqlitePlugin) Info(ctx context.Context, _ *pluginpb.PluginV1_InfoReques
2525
return &plugin.InfoResponse{
2626
Type: plugin.TypeDriver,
2727
Name: "SQLite",
28-
Version: "0.0.2",
28+
Version: "0.1.0",
2929
Description: "SQLite database driver",
3030
Url: "https://www.sqlite.org/",
3131
Author: "QueryBox Team",

0 commit comments

Comments
 (0)