Skip to content

Commit

Permalink
update to v0.5.13-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Jan 14, 2023
1 parent c9c9f76 commit e52a495
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 113 deletions.
90 changes: 45 additions & 45 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.12',
version: '0.5.13',
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.12"
version = "0.5.13"
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.12").unwrap(),
version: semver::Version::parse("0.5.13").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.12"
version = "0.5.13"
edition = "2021"
rust-version = "1.65"
build = "build.rs"
Expand Down
15 changes: 15 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,21 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.13-beta" date="2022-12-27">
<description>
<p>this release changes: (BETA)</p>
<ul>
<li>feature: tabs!</li>
<li>feature: a global colorpicker</li>
<li>feature: Semi infinite canvas layout ( thanks @D0V4HKIIN !)</li>
<li>UI: floating toolbars</li>
<li>fix: lag when panning in "continuous-vertical" layout</li>
<li>fix: layers when erasing marker strokes in "split-stroke" mode</li>
<li>fix: freeze when saving multiple times in succession</li>
<li>fix: blurry vector images after zooming in</li>
</ul>
</description>
</release>
<release version="0.5.12" date="2022-12-27">
<description>
<p>this release changes:</p>
Expand Down
Loading

0 comments on commit e52a495

Please sign in to comment.