Browse Source

Release Fractal 10.rc

pipelines/786320 10.rc
Kévin Commaille 1 year ago committed by Kévin Commaille
parent
commit
a849341e3a
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 2
      README.md
  4. 43
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 4
      meson.build

2
Cargo.lock generated

@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "10.0.0-beta"
version = "10.0.0-rc"
dependencies = [
"ashpd",
"assert_matches2",

2
Cargo.toml

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

2
README.md

@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub.
### Beta version
The current beta version is 10.beta (released December 26th 2024).
The current beta version is 10.rc (released January 14th 2025).
It is available as a Flatpak on Flathub Beta.

43
data/org.gnome.Fractal.metainfo.xml.in.in

@ -71,6 +71,49 @@
</content_rating>
<releases>@development-release@
<release version="10~rc" type="development" date="2025-01-14">
<description>
<p>
In this cold weather, we hope this new release candidate will warm your hearts. Let’s
celebrate this with our own awards ceremony:
</p>
<ul>
<li>
The most next-gen addition goes to… making Fractal OIDC aware. This ensures
compatibility with the upcoming authentication changes for matrix.org.
</li>
<li>
The most valuable fix goes to… showing consistently pills for users and rooms mentions
in the right place instead of seemingly random places, getting rid of one of our oldest
and most annoying bug.
</li>
<li>
The most sensible improvement goes to… using the send queue for attachments, ensuring
correct order of all messages and improving the visual feedback.
</li>
<li>
The most underrated feature goes to… allowing to react to stickers, fixing a crash in
the process.
</li>
<li>
The most obvious tweak goes to… removing the “Open Direct Chat” menu entry from avatar
menu and member profile in direct chats.
</li>
<li>
The clearest enhancement goes to… labelling experimental versions in the room upgrade
menu as such.
</li>
</ul>
<p>
As usual, this release includes other improvements, fixes and new translations thanks to
all our contributors, and our upstream projects.
</p>
<p>
As the version implies, it should be mostly stable and we expect to only include minor
improvements until the release of Fractal 10.
</p>
</description>
</release>
<release version="10~beta" type="development" date="2024-12-26">
<description>
<p>

4
meson.build

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

Loading…
Cancel
Save