Skip to content

Commit

Permalink
chore: Bump to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Sep 29, 2022
1 parent c34482b commit 9005ab2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kooha"
version = "2.1.1"
version = "2.2.0"
authors = ["Dave Patrick Caberto <[email protected]>"]
license = "GPL-3.0-or-later"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion data/io.github.seadve.Kooha.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</screenshot>
</screenshots>
<releases>
<release version="2.2.0" date="2022-08-21">
<release version="2.2.0" date="2022-09-29">
<description>
<p>This release contains new features and fixes:</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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',
)
Expand Down
22 changes: 9 additions & 13 deletions src/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub fn present_window(transient_for: Option<&impl IsA<gtk::Window>>) {
.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();

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

0 comments on commit 9005ab2

Please sign in to comment.