Skip to content

Commit b500db6

Browse files
authored
Merge pull request #213 from solaoi/main
v0.9.29
2 parents 00d8c47 + f690bd4 commit b500db6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2734
-408
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lycoris",
33
"private": true,
4-
"version": "0.9.28",
4+
"version": "0.9.29",
55
"type": "module",
66
"license": "MIT",
77
"engines": {
@@ -21,12 +21,14 @@
2121
"dayjs": "^1.11.13",
2222
"highlight.js": "^11.11.1",
2323
"html2canvas": "^1.4.1",
24+
"json-edit-react": "^1.23.1",
2425
"markdown-to-jsx": "^7.7.4",
2526
"mermaid": "^11.4.1",
2627
"react": "^18.3.1",
2728
"react-dom": "^18.3.1",
2829
"react-h5-audio-player": "^3.9.3",
2930
"react-medium-image-zoom": "^5.2.14",
31+
"react-select": "^5.10.1",
3032
"react-toastify": "^11.0.5",
3133
"recoil": "^0.7.7",
3234
"tauri-plugin-clipboard-api": "1.1.4",

src-tauri/Cargo.lock

Lines changed: 32 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lycoris"
3-
version = "0.9.28"
3+
version = "0.9.29"
44
description = "Lycoris is an offline voice memo"
55
authors = ["solaoi"]
66
license = "MIT"
@@ -55,6 +55,7 @@ sherpa-rs = "0.6.6"
5555
mcp-sdk = { git="https://github.com/solaoi/mcp-sdk", rev="c7e06ce40156fbe23911379e48268eb9543f8acc" }
5656
which = "7.0.2"
5757
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
58+
window-shadows = "0.2.2"
5859

5960
[dependencies.tauri-plugin-sql]
6061
git = "https://github.com/tauri-apps/plugins-workspace"

src-tauri/migrations/001.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ VALUES(
6767
"settingHasAccessedScreenCapturePermission",
6868
"never"
6969
);
70+
INSERT INTO settings(setting_name, setting_status)
71+
VALUES("settingAutoApproveLimit", "0");
72+
INSERT INTO settings(setting_name, setting_status)
73+
VALUES("settingSurveyToolEnabled", "1");
74+
INSERT INTO settings(setting_name, setting_status)
75+
VALUES("settingSearchToolEnabled", "1");
7076
CREATE TABLE models (
7177
id INTEGER PRIMARY KEY AUTOINCREMENT,
7278
model_name TEXT,

0 commit comments

Comments
 (0)