Skip to content

Commit

Permalink
update to v0.5.14-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Feb 12, 2023
1 parent 75ac07c commit 38effc1
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
project(
'rnote',
['rust', 'cpp'],
version: '0.5.13',
version: '0.5.14',
meson_version: '>= 0.57',
)
# add a patch suffix for alpha or beta version, starting with a dash.
patch = ''
patch = '-beta1'

i18n = import('i18n')
gnome = import('gnome')
Expand Down
2 changes: 1 addition & 1 deletion rnote-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote-cli"
version = "0.5.13"
version = "0.5.14"
edition = "2021"
rust-version = "1.65"

Expand Down
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl FileFormatLoader for RnoteFile {
impl FileFormatSaver for RnoteFile {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
let output = RnotefileWrapper {
version: semver::Version::parse("0.5.13").unwrap(),
version: semver::Version::parse("0.5.14").unwrap(),
data: serde_json::to_value(self).context("to_value() for RnoteFile failed")?,
};

Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote"
version = "0.5.13"
version = "0.5.14"
edition = "2021"
rust-version = "1.65"
build = "build.rs"
Expand Down
13 changes: 13 additions & 0 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,19 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.5.14-beta1" date="2023-02-12">
<description>
<p>this release changes: (BETA)</p>
<ul>
<li>improvement: reduce toolbar overlays margins when scrollbar is disabled</li>
<li>improvement: Indicate hover over nodes in the selector and typewriter</li>
<li>UI: following Gnome HIG writing style more closely and fixed string inconsistencies</li>
<li>fix: crash when navigating up/down into non-ASCII text</li>
<li>fix: crash on launch when using a custom stylesheet</li>
<li>fix: rough style fill calculation</li>
</ul>
</description>
</release>
<release version="0.5.13" date="2023-02-06">
<description>
<p>this release changes:</p>
Expand Down

0 comments on commit 38effc1

Please sign in to comment.