Skip to content

Commit d82e7fd

Browse files
FlowingSPDGShugo Kawamura
andauthored
Connection related UI/UX improvements (#214)
* Improve connections.tsx UX * Fix connection related UI/UX * Better connections UX * vMix接続数がゼロの時のUI最適化 * ListManagerポップアップウィンドウの修正・アイコンの追加 --------- Co-authored-by: Shugo Kawamura <bitoreieru@gmail.com>
1 parent 8820dba commit d82e7fd

Some content is hidden

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

71 files changed

+1674
-1304
lines changed

.cursor/commands/solve_issue.md

Lines changed: 20 additions & 0 deletions

app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="icon" type="image/png" href="/icon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Tauri + React + Typescript</title>
7+
<title>vMix Utility</title>
88
</head>
99

1010
<body>

app/public/favicon.ico

69.4 KB
Binary file not shown.

app/public/icon.png

69.4 KB

app/src-tauri/Cargo.lock

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

app/src-tauri/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ async-trait = "0.1"
3232
anyhow = "1.0"
3333
reqwest = { version = "0.12", features = ["json"] }
3434
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "time", "fs", "sync"] }
35+
futures = "0.3"
3536
quick-xml = { version = "0.38", features = ["serialize"] }
3637
url = "2"
3738
log = "0.4"
@@ -40,6 +41,7 @@ chrono = { version = "0.4", features = ["serde"] }
4041
once_cell = "1.19"
4142
urlencoding = "2.1"
4243
vmix_rs = { git = "https://github.com/FlowingSPDG/vmix-rs.git" }
44+
network-interface = { version = "2.0.3", features = ["serde"] }
4345

4446
[profile.dev]
4547
# デバッグ情報を削減

app/src-tauri/capabilities/default.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"$schema": "../gen/schemas/desktop-schema.json",
33
"identifier": "default",
44
"description": "Capability for the main window",
5-
"windows": ["main"],
5+
"windows": ["main", "video-list-*"],
66
"permissions": [
77
"core:default",
8-
"opener:default"
8+
"opener:default",
9+
"core:event:allow-listen"
910
]
1011
}

app/src-tauri/icons/128x128.png

8.68 KB

app/src-tauri/icons/128x128@2x.png

21.3 KB

app/src-tauri/icons/32x32.png

1.22 KB

0 commit comments

Comments
 (0)