Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ src-tauri/webview2-fixed-runtime/*
.mcp.json
mcp.json

tasks/

# --- C# / Visual Studio (UWP) ---
[Bb]in/
[Oo]bj/
Expand Down
2 changes: 2 additions & 0 deletions docs/readme_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ npm install
npm run tauri:dev
```

To build ASIO output on Windows, set up LLVM (`LIBCLANG_PATH`) and the ASIO SDK (`CPAL_ASIO_DIR`), then use `npm run tauri:dev:asio` or `npm run tauri:build:asio`.

## � Notes

- **This program is free to use for streaming or gameplay video production.**
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"tauri:dev": "tauri dev",
"tauri:dev:asio": "tauri dev -f asio-backend",
"tauri:dev:edge-beta": "node scripts/run-with-edge-beta.js",
"webview2:download:143": "node scripts/download-webview2-fixed-runtime.js --major 143 --arch x64",
"tauri:dev:webview2-fixed:143": "npm run webview2:download:143 && tauri dev",
"tauri:build": "tauri build",
"tauri:build:asio": "tauri build -f asio-backend",
"tauri:build:webview2-fixed:143": "npm run webview2:download:143 && tauri build --config src-tauri/tauri.webview2-fixed.conf.json",
"tauri:build:portable:webview2-fixed:143": "node scripts/build-portable-win.js --major 143 --arch x64",
"tauri:build:single-exe:webview2-fixed:143": "node scripts/build-single-exe-win.js --major 143 --arch x64",
Expand Down
112 changes: 111 additions & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "1.6.0"
edition = "2021"
default-run = "dm-note"

[features]
asio-backend = ["dep:cpal"]

[build-dependencies]
tauri-build = { version = "2.4.1", features = [] }
walkdir = "2.5"
Expand Down Expand Up @@ -40,6 +43,7 @@ tokio-tungstenite = "0.24"
futures-util = "0.3"
local-ip-address = "0.6.10"
[target."cfg(windows)".dependencies]
cpal = { version = "0.17.3", optional = true, default-features = false, features = ["asio"] }
windows = { version = "0.61.3", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/gen/schemas/acl-manifests.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src-tauri/permissions/dmnote-allow-all.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@
"js_set_content",
"js_set_plugin_enabled",
"js_toggle",
"key_sound_get_output_state",
"key_sound_get_status",
"key_sound_list_output_devices",
"key_sound_load_soundpack",
"key_sound_set_enabled",
"key_sound_set_latency_logging",
"key_sound_set_output_backend",
"key_sound_set_volume",
"key_sound_unload_soundpack",
"keys_get",
Expand Down
Loading
Loading