Release Fractal 6.beta

This commit is contained in:
Alexandre Franke 2023-12-21 15:50:00 +00:00 committed by Kévin Commaille
parent 0df580c207
commit 8fd746033f
5 changed files with 32 additions and 6 deletions

2
Cargo.lock generated
View File

@ -1495,7 +1495,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "5.0.0"
version = "6.0.0-beta"
dependencies = [
"ashpd",
"djb_hash",

View File

@ -1,6 +1,6 @@
[package]
name = "fractal"
version = "5.0.0"
version = "6.0.0-beta"
authors = ["Julian Sparber <julian@sparber.net>"]
edition = "2021"
rust-version = "1.70"

View File

@ -47,7 +47,7 @@ You can get the official Fractal Flatpak from Flathub.
### Beta version
The current beta version is 5 (same as stable, released November 24th 2023).
The current beta version is 6.beta (released December 21st 2023).
It is available as a Flatpak on Flathub Beta.

View File

@ -65,6 +65,32 @@
</content_rating>
<releases>@development-release@
<release version="6~beta" type="development" date="2023-12-21">
<description>
<p>
Even though Fractal 5 was released only 1 month ago, development has been going at a
steady pace with a few new contributors, so we want our users to benefit from our
progress.
</p>
<p>
The staffs picks:
</p>
<ul>
<li>Restoring sessions from Secret Services other than GNOME Keyring has been fixed</li>
<li>Times follow the format (12h or 24h) from the system settings</li>
<li>Media history works in encrypted rooms</li>
<li>The accessibility of the sidebar was improved</li>
<li>More notifications settings were added, you can now set global and per-room behavior and even manage your keywords</li>
<li>A bunch of refactoring, notably the port to the <code>glib::Properties</code> macro from gtk-rs that helped us removed almost <em>3000</em> lines of code!</li>
</ul>
<p>
As usual, this release includes other improvements, fixes and new translations thanks to
all our contributors, and our upstream projects. As the version implies, there might be a
slight risk of regressions, but it should be mostly stable. If all goes well the next
step is the release candidate!
</p>
</description>
</release>
<release version="5" type="stable" date="2023-11-24">
<description>
<p>

View File

@ -1,6 +1,6 @@
project('fractal',
'rust',
version: '5',
version: '6.beta',
license: 'GPL-3.0-or-later',
meson_version: '>= 0.59')
@ -10,8 +10,8 @@ gnome = import('gnome')
base_id = 'org.gnome.Fractal'
application_id = base_id
major_version = '5'
pre_release_version = ''
major_version = '6'
pre_release_version = 'beta'
version = major_version
if pre_release_version != ''