diff --git a/Cargo.lock b/Cargo.lock index ef9ef4da..fb00e3a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3990,7 +3990,7 @@ dependencies = [ [[package]] name = "tpnote" -version = "1.22.8" +version = "1.22.9" dependencies = [ "arboard", "directories", @@ -4013,7 +4013,7 @@ dependencies = [ "thiserror", "time", "toml 0.8.2", - "tpnote-lib", + "tpnote-lib 0.28.4 (registry+https://github.com/rust-lang/crates.io-index)", "webbrowser", "win32job", "windows-sys 0.48.0", @@ -4022,7 +4022,39 @@ dependencies = [ [[package]] name = "tpnote-lib" -version = "0.28.3" +version = "0.28.4" +dependencies = [ + "html-escape", + "latex2mathml", + "lazy_static", + "lingua", + "log", + "parking_lot", + "parse-hyperlinks", + "parse-hyperlinks-extras", + "percent-encoding", + "pulldown-cmark", + "rst_parser", + "rst_renderer", + "sanitize-filename-reader-friendly", + "self_cell", + "serde", + "serde_json", + "serde_yaml", + "substring", + "syntect", + "tera", + "thiserror", + "toml 0.8.2", + "win32job", + "windows-sys 0.48.0", +] + +[[package]] +name = "tpnote-lib" +version = "0.28.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca9e308558c2a9600ff71f231dd0c7f904998ad6206f77c339b37b754b776506" dependencies = [ "html-escape", "latex2mathml", diff --git a/Cargo.toml b/Cargo.toml index 87451dae..75faaa8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT/Apache-2.0" readme = "README.md" repository = "https://gitlab.com/getreu/tp-note" rust-version = "1.70.0" -version = "1.22.8" +version = "1.22.9" [profile.release] strip = "symbols" diff --git a/docs/build/man/man1/tpnote.1 b/docs/build/man/man1/tpnote.1 index b7aa6ce6..8fa21e44 100644 --- a/docs/build/man/man1/tpnote.1 +++ b/docs/build/man/man1/tpnote.1 @@ -14,7 +14,7 @@ . ftr VB CB . ftr VBI CBI .\} -.TH "TP-NOTE" "1" "2023-10-18" "Version 1.22.8" "Tp-Note documentation" +.TH "TP-NOTE" "1" "2023-10-19" "Version 1.22.9" "Tp-Note documentation" .hy .SH NAME .PP diff --git a/docs/source/tpnote--manpage.md b/docs/source/tpnote--manpage.md index 8e94d932..76f8869c 100644 --- a/docs/source/tpnote--manpage.md +++ b/docs/source/tpnote--manpage.md @@ -1,10 +1,10 @@ --- -title: TP-NOTE(1) Version 1.22.8 | Tp-Note documentation +title: TP-NOTE(1) Version 1.22.9 | Tp-Note documentation subtitle: manpage author: Jens Getreu -version: 1.22.8 +version: 1.22.9 filename_sync: false -date: 2023-10-18 +date: 2023-10-19 lang: en-GB --- diff --git a/docs/source/tpnote--manual.md b/docs/source/tpnote--manual.md index 7804bfa7..c549018e 100644 --- a/docs/source/tpnote--manual.md +++ b/docs/source/tpnote--manual.md @@ -2,8 +2,8 @@ title: "Tp-Note: save and edit your clipboard content as a note file" subtitle: Organize your notes with your favourite editor and markup language author: Jens Getreu -date: 2023-10-18 -version: 1.22.8 +date: 2023-10-19 +version: 1.22.9 filename_sync: false lang: en-GB --- diff --git a/tpnote/Cargo.toml b/tpnote/Cargo.toml index 241ef591..a08bb252 100644 --- a/tpnote/Cargo.toml +++ b/tpnote/Cargo.toml @@ -94,8 +94,8 @@ thiserror.workspace = true time = "0.3.30" tera.workspace = true toml.workspace = true -tpnote-lib = { path = "../tpnote-lib", default-features = false } -#tpnote-lib = { version = "0.28.3", default-features = false} +#tpnote-lib = { path = "../tpnote-lib", default-features = false } +tpnote-lib = { version = "0.28.4", default-features = false} webbrowser = { version = "0.8.12", optional = true } [target.'cfg(windows)'.dependencies]