Skip to content

Commit

Permalink
v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed May 13, 2022
1 parent 192426c commit dcb9016
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rnote',
'rust',
version: '0.5.2',
version: '0.5.3',
meson_version: '>= 0.56',
)
i18n = import('i18n')
Expand Down
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.2").unwrap(),
version: semver::Version::parse("0.5.3").unwrap(),
data: serde_json::to_value(self)?,
};

Expand Down
14 changes: 11 additions & 3 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<description>
<p>
Rnote is a simple vector-based drawing application for sketching, handwritten notes and to annotate documents and pictures.
Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures.
</p>
<p>
Disclaimer: The file format is still unstable. It might change and break compatibility between versions.
Expand Down Expand Up @@ -64,12 +64,20 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.3" date="2022-05-14">
<description>
<p>this release changes:</p>
<ul>
<li>bug fixes</li>
</ul>
</description>
</release>
<release version="0.5.2" date="2022-05-13">
<description>
<p>this release changes:</p>
<ul>
<li>feature: paste clipboard files ( nautilus support )</li>
<li>Stylus eraser mode improvements</li>
<li>stylus eraser mode improvements</li>
<li>bug fixes</li>
</ul>
</description>
Expand All @@ -79,7 +87,7 @@
<p>this release changes:</p>
<ul>
<li>feature: setting to change the format border color</li>
<li>UI text string improvements</li>
<li>UI text improvements</li>
<li>bug fixes</li>
</ul>
</description>
Expand Down

0 comments on commit dcb9016

Please sign in to comment.