Skip to content

Commit

Permalink
update to v0.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Oct 30, 2022
1 parent 898b7aa commit 9d0eea3
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 28 deletions.
42 changes: 18 additions & 24 deletions 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 meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rnote',
['cpp', 'rust'],
version: '0.5.6',
version: '0.5.7',
meson_version: '>= 0.56',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 {
impl FileFormatSaver for RnotefileMaj0Min5 {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
let output = RnotefileWrapper {
version: semver::Version::parse("0.5.6").unwrap(),
version: semver::Version::parse("0.5.7").unwrap(),
data: serde_json::to_value(self)?,
};

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.6"
version = "0.5.7"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
12 changes: 12 additions & 0 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.7" date="2022-10-30">
<description>
<p>this release changes:</p>
<ul>
<li>improvement: Add zoom buttons to the quick-actions overlay</li>
<li>improvement: By default use the workspace directory for import and export dialogs, and document file for save dialogs</li>
<li>fix: PDF export and print sometimes produced empty pages</li>
<li>fix: workspace files list not refreshing after modifying the workspace path</li>
<li>fix: Selector being canceled when attempting to interact with the selection when "touch-drawing" was enabled</li>
</ul>
</description>
</release>
<release version="0.5.6" date="2022-10-25">
<description>
<p>this release changes:</p>
Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub const APP_NAME: &str = "rnote";
pub const APP_NAME_CAPITALIZED: &str = "Rnote";
pub const APP_ID: &str = "com.github.flxzt.rnote.Devel";
pub const APP_IDPATH: &str = "/com/github/flxzt/rnote/";
pub const APP_VERSION: &str = "0.5.6";
pub const APP_VERSION: &str = "0.5.7";
pub const APP_VERSION_SUFFIX: &str = "-devel";
pub const APP_AUTHOR_NAME: &str = "Felix Zwettler";
pub const APP_AUTHORS: &[&str] = &["Felix Zwettler
Expand Down

0 comments on commit 9d0eea3

Please sign in to comment.