Skip to content

Commit 699be9f

Browse files
committed
update: V3.1.0 Linux Deb Binary + Coloring Fix
1 parent 31be8bf commit 699be9f

6 files changed

Lines changed: 24 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sqlite-book",
33
"private": true,
4-
"version": "3.0.0",
4+
"version": "3.1.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlite-book"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
description = "A Lightweight & Blazingly Fast SQL Notebook App for learning SQL Interactively."
55
authors = ["victor"]
66
license = "MIT"
@@ -13,7 +13,24 @@ edition = "2021"
1313
tauri-build = { version = "1.3", features = [] }
1414

1515
[dependencies]
16-
tauri = { version = "1.3", features = ["dialog-confirm", "dialog-message", "dialog-open", "dialog-save", "fs-create-dir", "fs-exists", "fs-read-file", "fs-remove-file", "fs-write-file", "os-all", "path-all", "process-command-api", "shell-open", "shell-sidecar", "window-close", "window-set-always-on-top"] }
16+
tauri = { version = "1.3", features = [
17+
"dialog-confirm",
18+
"dialog-message",
19+
"dialog-open",
20+
"dialog-save",
21+
"fs-create-dir",
22+
"fs-exists",
23+
"fs-read-file",
24+
"fs-remove-file",
25+
"fs-write-file",
26+
"os-all",
27+
"path-all",
28+
"process-command-api",
29+
"shell-open",
30+
"shell-sidecar",
31+
"window-close",
32+
"window-set-always-on-top",
33+
] }
1734
serde = { version = "1.0", features = ["derive"] }
1835
serde_json = "1.0"
1936

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "SQLite-Book",
11-
"version": "3.0.0"
11+
"version": "3.1.0"
1212
},
1313
"tauri": {
1414
"allowlist": {

src/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<div class="tooltip tooltip-bottom" data-tip="Open File">
121121
<button class="btn-ghost min-h-8 btn h-8 w-6" on:click={open_sqlnb}>
122122
<iconify-icon
123-
class="text-neutral-content"
123+
class="text-base-content"
124124
width="24"
125125
height="24"
126126
icon="fluent:folder-open-24-regular"

src/lib/Cell.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
class="btn-ghost min-h-6 btn h-7 w-7"
153153
>
154154
<iconify-icon
155-
class="text-neutral-content"
155+
class="text-base-content"
156156
icon="fluent:code-24-filled"
157157
width="24"
158158
height="24"

0 commit comments

Comments
 (0)