Skip to content

Commit 2a27eba

Browse files
authored
Merge pull request #257 from Incomplete-Outputs-Lab/fix/build-errors
Fix build errors and remove unused dependencies
2 parents c41fad5 + 134f983 commit 2a27eba

File tree

4 files changed

+0
-68
lines changed

4 files changed

+0
-68
lines changed

app/src-tauri/Cargo.lock

Lines changed: 0 additions & 64 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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ chrono = { version = "0.4", features = ["serde"] }
2121
[dependencies]
2222
tauri = { version = "2", features = ["tray-icon"] }
2323
tauri-plugin-opener = "2"
24-
tauri-plugin-shell = "2"
2524
tauri-plugin-updater = "2"
2625
tauri-plugin-dialog = "2"
2726
tauri-plugin-prevent-default = "3"

app/src-tauri/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ pub fn run() {
9696
let _ = app.get_webview_window("main").expect("no main window").set_focus();
9797
}))
9898
.plugin(tauri_plugin_opener::init())
99-
.plugin(tauri_plugin_shell::init())
10099
.plugin(prevent_default())
101100
.plugin(tauri_plugin_dialog::init())
102101
.plugin(tauri_plugin_updater::Builder::new().build())

app/src/pages/Developer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import {
2121
Code,
2222
FavoriteOutlined,
2323
Description,
24-
Star,
2524
} from '@mui/icons-material';
2625
import { openUrl } from '@tauri-apps/plugin-opener';
2726
import { SvgIconProps } from '@mui/material/SvgIcon';
@@ -37,7 +36,6 @@ const Developer = () => {
3736
const { resolvedTheme } = useTheme();
3837
const repositoryUrl = 'https://github.com/Incomplete-Outputs-Lab/vmix-utility';
3938
const developerGitHub = 'https://github.com/FlowingSPDG';
40-
const sponsorUrl = 'https://github.com/sponsors/FlowingSPDG';
4139
const twitchSupportUrl = 'https://subs.twitch.tv/flowingspdg';
4240

4341
const openInBrowser = (url: string) => {

0 commit comments

Comments
 (0)