Skip to content

Commit

Permalink
chore: 🤖 release v0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
maqi1520 committed Sep 7, 2024
1 parent 3f36a0e commit 5a65a6f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
2 changes: 1 addition & 1 deletion src-tauri/src/tray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ fn create_window<R: Runtime>(app: &tauri::AppHandle<R>, label: String, path: Str
// 创建新的 webview 窗口
let builder = tauri::WebviewWindowBuilder::new(app, label, tauri::WebviewUrl::App(path.into()))
.title("MDX editor")
.hidden_title(true)
.inner_size(1200.0, 780.0)
.center()
.resizable(true)
Expand All @@ -34,6 +33,7 @@ fn create_window<R: Runtime>(app: &tauri::AppHandle<R>, label: String, path: Str
#[cfg(target_os = "macos")]
{
builder
.hidden_title(true)
.title_bar_style(tauri::TitleBarStyle::Overlay)
.build()
.unwrap();
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
}
},
"productName": "MDX Editor",
"version": "0.9.8",
"version": "0.9.9",
"identifier": "editor.runjs.cool",
"plugins": {
"updater": {
Expand Down
1 change: 0 additions & 1 deletion src/css/markdown-body/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ body {
.markdown-body {
word-spacing: 0px;
letter-spacing: 0px;
word-break: break-word;
word-wrap: break-word;
}

Expand Down

0 comments on commit 5a65a6f

Please sign in to comment.