2 Commits

Author SHA1 Message Date
Bel LaPointe
a38e39b808 add cmd-q 2023-12-28 21:38:36 -05:00
Bel LaPointe
9e053c96d6 release 0.1.3 2023-12-28 21:33:42 -05:00
3 changed files with 18 additions and 4 deletions

2
src/Cargo.lock generated
View File

@@ -1351,7 +1351,7 @@ dependencies = [
[[package]] [[package]]
name = "home-video-blue-extractinator" name = "home-video-blue-extractinator"
version = "0.1.0" version = "0.1.3"
dependencies = [ dependencies = [
"base64 0.21.5", "base64 0.21.5",
"dioxus", "dioxus",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "home-video-blue-extractinator" name = "home-video-blue-extractinator"
version = "0.1.0" version = "0.1.3"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -15,7 +15,7 @@ dioxus-desktop = "0.4.3"
[package.metadata.bundle] [package.metadata.bundle]
name = "home-video-blue-extractinator" name = "home-video-blue-extractinator"
identifier = "com.breel.home-video-blue-extractinator" identifier = "com.breel.home-video-blue-extractinator"
version = "0.1.0" version = "0.1.3"
copyright = "Copyright (c) breel.dev 2023. All rights reserved." copyright = "Copyright (c) breel.dev 2023. All rights reserved."
long_description = """ long_description = """
Tool to turn long home movies into clips with less noise. Tool to turn long home movies into clips with less noise.

View File

@@ -8,7 +8,21 @@ use core::cmp::Ordering;
use std::str::FromStr; use std::str::FromStr;
fn main() { fn main() {
dioxus_desktop::launch(App); dioxus_desktop::launch_cfg(App, dioxus_desktop::Config::new()
.with_window(dioxus_desktop::WindowBuilder::new()
.with_title("home-video-blue-extractinator")
.with_menu({
let mut menu = dioxus_desktop::tao::menu::MenuBar::new();
let mut app_menu = dioxus_desktop::tao::menu::MenuBar::new();
app_menu.add_native_item(dioxus_desktop::tao::menu::MenuItem::Minimize);
app_menu.add_native_item(dioxus_desktop::tao::menu::MenuItem::Quit);
menu.add_submenu("&home-video-blue-extractinator", true, app_menu);
menu
}),
),
);
} }
// define a component that renders a div with the text "Hello, world!" // define a component that renders a div with the text "Hello, world!"