Skip to content

Commit 985ebdd

Browse files
authored
Merge pull request #377 from dwall-rs/main
0.1.21
2 parents 068d6bf + 7d87276 commit 985ebdd

31 files changed

+428
-264
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,15 @@ jobs:
138138
target/
139139
key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }}
140140

141-
- uses: tauri-apps/tauri-action@v0
141+
- uses: dwall-rs/tauri-action@v0.5.21
142142
env:
143143
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
144144
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
145145
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
146146
with:
147147
releaseId: ${{ needs.create-release.outputs.release_id }}
148148
args: ${{ matrix.args }}
149+
tauriScript: bun build:debug
149150

150151
- name: Save target
151152
id: cache-target-save
@@ -175,6 +176,6 @@ jobs:
175176
owner: context.repo.owner,
176177
repo: context.repo.repo,
177178
release_id: parseInt(process.env.release_id),
178-
body: `> [!WARNING]\n> 每夜版可能无法自动升级。/The nightly version may not auto-update.\n\n## Last Commit\n\n${process.env.LAST_COMMIT_MESSAGE}`,
179+
body: `> [!WARNING]\n> 每夜版可能无法自动升级。/The nightly version may not auto-update.\n\nThe log level of the nightly version is fixed to ${"`debug`"}. If an error occurs while running this program, you can install the nightly version, repeat the previous operation, and then view the detailed logs.\n\n## Last Commit\n\n${process.env.LAST_COMMIT_MESSAGE}`,
179180
draft: false
180181
})

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["daemon", "src-tauri"]
44

55
[workspace.package]
66
authors = ["thep0y"]
7-
version = "0.1.20"
7+
version = "0.1.21"
88
# homepage = ""
99
repository = "https://github.com/dwall-rs/dwall"
1010
license = "AGPL-3.0"
@@ -15,10 +15,7 @@ dirs = { version = "6", default-features = false }
1515
thiserror = { version = "2", default-features = false }
1616
serde = { version = "1", default-features = false, features = ["derive"] }
1717
serde_json = { version = "1", default-features = false }
18-
tracing = { version = "0", default-features = false, features = [
19-
"log",
20-
"release_max_level_info",
21-
] }
18+
tracing = { version = "0", default-features = false, features = ["log"] }
2219
tracing-subscriber = { version = "0", default-features = false, features = [
2320
"fmt",
2421
'time',
@@ -27,7 +24,7 @@ tracing-subscriber = { version = "0", default-features = false, features = [
2724
'json',
2825
] }
2926
tokio = { version = "1", default-features = false }
30-
windows = { version = "0.60", default-features = false }
27+
windows = { version = "0.61", default-features = false }
3128

3229
[profile.release]
3330
panic = "abort"

bun.lockb

-40 Bytes
Binary file not shown.

daemon/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ thiserror = { workspace = true }
3939
tracing = { workspace = true }
4040
tracing-subscriber = { workspace = true }
4141
windows = { workspace = true, default-features = false, features = [
42+
"std",
4243
"Devices_Geolocation",
4344
"Win32_System_Registry",
4445
"System_UserProfile",
@@ -52,10 +53,9 @@ windows = { workspace = true, default-features = false, features = [
5253
"Win32_Devices_Display",
5354
"Win32_Devices_DeviceAndDriverInstallation",
5455
] }
55-
windows-strings = { version = '0.3.1', features = ['std'] }
56-
windows-result = { version = '0.3.1', features = ['std'] }
5756

5857
[features]
5958
default = []
6059
log-color = ["tracing-subscriber/ansi"]
6160
build-script = ["winresource"]
61+
log-max-level-info = ["tracing/release_max_level_info"]

0 commit comments

Comments
 (0)