From 9005ab2a86a68fed950465d0b6dd22d0ad302014 Mon Sep 17 00:00:00 2001 From: SeaDve Date: Thu, 29 Sep 2022 15:14:28 +0800 Subject: [PATCH] chore: Bump to 2.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- .../io.github.seadve.Kooha.metainfo.xml.in.in | 2 +- meson.build | 2 +- src/about.rs | 22 ++++++++----------- 5 files changed, 13 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 186a94663..1c618d356 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "kooha" -version = "2.1.1" +version = "2.2.0" dependencies = [ "anyhow", "futures-channel", diff --git a/Cargo.toml b/Cargo.toml index 76d63b4a2..ecae1ffcb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kooha" -version = "2.1.1" +version = "2.2.0" authors = ["Dave Patrick Caberto "] license = "GPL-3.0-or-later" edition = "2021" diff --git a/data/io.github.seadve.Kooha.metainfo.xml.in.in b/data/io.github.seadve.Kooha.metainfo.xml.in.in index 574c1af9a..f06716929 100644 --- a/data/io.github.seadve.Kooha.metainfo.xml.in.in +++ b/data/io.github.seadve.Kooha.metainfo.xml.in.in @@ -39,7 +39,7 @@ - +

This release contains new features and fixes:

    diff --git a/meson.build b/meson.build index d3355e14f..dcd9c7163 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'kooha', 'rust', - version: '2.1.1', + version: '2.2.0', license: 'GPL-3.0-or-later', meson_version: '>= 0.59', ) diff --git a/src/about.rs b/src/about.rs index b41b25541..03e200548 100644 --- a/src/about.rs +++ b/src/about.rs @@ -33,7 +33,7 @@ pub fn present_window(transient_for: Option<&impl IsA>) { .support_url("https://github.com/SeaDve/Kooha/discussions") .debug_info(&debug_info()) .debug_info_filename("kooha-debug-info") - .release_notes_version("2.1.0") + .release_notes_version("2.2.0") .release_notes(release_notes()) .build(); @@ -59,18 +59,14 @@ pub fn present_window(transient_for: Option<&impl IsA>) { fn release_notes() -> &'static str { r#"

    This release contains new features and fixes:

      -
    • Remember previously selected video sources
    • -
    • Added ability to cancel while flushing the recording
    • -
    • Use different icons for settings toggle button to discern state more clearly
    • -
    • Added 3 seconds delay option
    • -
    • Fixed x264 encoder failing to initialize on uneven resolutions
    • -
    • Fixed minutes stuck on 00 if time is equal or greater than an hour
    • -
    • Recordings are now stored by default in `~/Videos/Kooha` (This won't affect existing settings)
    • -
    • "Show in Files" button in notifications now highlights the file in the file manager
    • -
    • Improved tooltip text on settings toggle buttons
    • -
    • Improved support information in the new about window
    • -
    • Improved error handling
    • -
    • Improved codebase and stability
    • +
    • New area selection UI
    • +
    • Added option to change the frame rate through the UI
    • +
    • Improve delay settings flexibility
    • +
    • Added preferences window for easier configuration
    • +
    • Added `KOOHA_EXPERIMENTAL` env var to show experimental (unsupported) encoders like VAAPI-VP8 and VAAPI-H264
    • +
    • Added the following experimental (unsupported) encoders: VP9, AV1, and VAAPI-VP9
    • +
    • Unavailable formats/encoders are now hidden from the UI
    • +
    • Fixed broken audio on long recordings
    • Updated translations
    "# }