Skip to content

Commit 9e13b56

Browse files
committed
Increment package version to 0.1.1, add demo image to package.json, and expand README with features and usage details.
1 parent 842cb0a commit 9e13b56

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,21 @@
22

33
- NPM: https://www.npmjs.com/package/kunkun-ext-sqlite-browser
44
- Store: https://kunkun.sh/store/sqlite-browser
5+
6+
This extension is a simple SQLite browser that allows you to view unencrypted SQLite databases.
7+
8+
![demo](https://i.imgur.com/lTAKenC.png)
9+
10+
## Features
11+
12+
- [x] Browse tables
13+
- [x] View table data
14+
- [x] View table columns
15+
- [ ] View Encrypted Database
16+
- [ ] Edit table data
17+
- [ ] Execute SQL Query
18+
19+
- Direct execution of SQL query will be supported.
20+
- Editing table data (in table cell) may be supported when I got time.
21+
- If you are willing to contribute, please send a PR, it is simply frontend code.
22+
- Encrypted DB may not be supported in the future, as this extension relies on [Deno's Sqlite Lib](https://jsr.io/@db/sqlite), which does not support encryption.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "kunkun-ext-sqlite-browser",
44
"license": "MIT",
55
"repository": "https://github.com/kunkunsh/kunkun-ext-sqlite-browser",
6-
"version": "0.1.0",
6+
"version": "0.1.1",
77
"kunkun": {
88
"name": "SQLite Browser",
99
"shortDescription": "SQLite Browser",
@@ -13,7 +13,9 @@
1313
"type": "iconify",
1414
"value": "devicon:sqlite"
1515
},
16-
"demoImages": [],
16+
"demoImages": [
17+
"https://i.imgur.com/lTAKenC.png"
18+
],
1719
"permissions": [
1820
"event:drag-drop",
1921
{

0 commit comments

Comments
 (0)