Upgrade Deno

This commit is contained in:
Gregory Schier
2023-03-31 22:42:08 -07:00
parent 33dc3b719d
commit 5704fb560a
4 changed files with 559 additions and 497 deletions

View File

@@ -630,7 +630,10 @@ fn create_window(handle: &AppHandle<Wry>) -> Window<Wry> {
.resizable(true)
.inner_size(1100.0, 600.0)
.hidden_title(true)
.title("Yaak")
.title(match is_dev() {
true => "Yaak",
false => "Yaak Dev",
})
.title_bar_style(TitleBarStyle::Overlay)
.build()
.expect("failed to build window");