diff --git a/Cargo.lock b/Cargo.lock index cd4a557a..d7fed6d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1447,7 +1447,7 @@ dependencies = [ [[package]] name = "fractal" -version = "5.0.0-beta2" +version = "5.0.0-rc1" dependencies = [ "ashpd", "djb_hash", diff --git a/Cargo.toml b/Cargo.toml index d11b6f8f..2d481eb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "5.0.0-beta2" +version = "5.0.0-rc1" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.70" diff --git a/data/org.gnome.Fractal.metainfo.xml.in.in b/data/org.gnome.Fractal.metainfo.xml.in.in index f6ae7052..175dfa10 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -47,6 +47,42 @@ @development-release@ + + +

Fractal 5.rc1 is the first release candidate since the rewrite of + Fractal to take advantage of GTK 4 and the Matrix Rust SDK, an effort + that started in March 2021.

+ +

The most notable changes since Fractal 5.beta2, that was released 2 + months ago, are:

+ +
    +
  • An awesome new look thanks to libadwaita 1.4
  • +
  • Read receipts tracking has been largely improved thanks to some + upstream work in the Matrix Rust SDK
  • +
  • The same upstream work allows to have much better tracking of the + activity in the rooms list
  • +
  • The full lists of read receipts and reactions on messages can be + perused in popovers
  • +
  • Destructive actions like removing a message or leaving a room now + ask for confirmation
  • +
  • The most noticeable performance issues and memory leaks were fixed + to make Fractal run as smoothly as ever
  • +
+ +

This list is far from complete and hides more enhancements, including + bug fixes and new translations thanks to all our contributors, and our + upstream projects.

+ +

As the version implies, if we don’t find any major bug in the next 2 + weeks, our next release should be the long-awaited Fractal 5 stable + version!

+ +

In the meantime, if you want to fix bugs, implement new features, or + any other kind of contribution, you can get inspired by taking a look + at our issues tracker on GitLab. Any help is greatly appreciated!

+
+

Fractal 5.beta2 is the second beta release 🎉 since the rewrite of diff --git a/meson.build b/meson.build index fe2c30f8..ec8e25d5 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '5.beta2', + version: '5.rc1', license: 'GPL-3.0-or-later', meson_version: '>= 0.59') @@ -10,7 +10,7 @@ gnome = import('gnome') base_id = 'org.gnome.Fractal' major_version = '5' -pre_release_version = 'beta2' +pre_release_version = 'rc1' dependency('glib-2.0', version: '>= 2.72') # update when changing gtk version dependency('gio-2.0', version: '>= 2.72') # always same version as glib diff --git a/screenshots/fractal.png b/screenshots/fractal.png index da20d76e..d9967c89 100644 Binary files a/screenshots/fractal.png and b/screenshots/fractal.png differ