Browse Source

Release Fractal 11.rc

merge-requests/1958/merge 11.rc
Kévin Commaille 11 months ago
parent
commit
c5325049f6
No known key found for this signature in database
GPG Key ID: C971D9DBC9D678D
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 2
      README.md
  4. 39
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 4
      meson.build

2
Cargo.lock generated

@ -1208,7 +1208,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "11.0.0-beta"
version = "11.0.0-rc"
dependencies = [
"aperture",
"ashpd",

2
Cargo.toml

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

2
README.md

@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub.
### Beta version
The current beta version is 11.beta (released March 27th 2025).
The current beta version is 11.rc (released April 17th 2025).
It is available as a Flatpak on Flathub Beta.

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

@ -71,10 +71,47 @@
</content_rating>
<releases>@development-release@
<release version="11~rc" type="development" date="2025-04-17">
<description>
<p>
Here comes the RC. New since 11.beta:
</p>
<ul>
<li>
Rearranged account settings, with a new Safety tab
</li>
<li>
New setting to toggle media preview visibility
</li>
<li>
Sessions can be renamed
</li>
<li>
Support for login using the OAuth 2.0 API (as used by matrix.org, which recently made
the switch to Matrix Authentication Service)
</li>
<li>
Contiguous state events are grouped behind a single item
</li>
</ul>
<p>
But what does RC stand for? Really Cool? Reasonably Complete? Rose Colored¹? Release
Candidate, of course! That means it should be mostly stable and we expect to only include
minor improvements until the release of Fractal 11.
</p>
<p>
As usual, this release includes other improvements, fixes and new translations thanks to
all our contributors, and our upstream projects.
</p>
<p>
1. That was actually once true, with Fractal 9.rc.
</p>
</description>
</release>
<release version="11~beta" type="development" date="2025-03-27">
<description>
<p>
It’s the beginning of bee season! 🌸🌺🌼 🐝 B like beta!
It’s the beginning of bee season! 🌸🌺🌼 🐝 B like beta!
</p>
<ul>
<li>

4
meson.build

@ -1,6 +1,6 @@
project('fractal',
'rust',
version: '11.beta',
version: '11.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 = '11'
pre_release_version = 'beta'
pre_release_version = 'rc'
version = major_version
if pre_release_version != ''

Loading…
Cancel
Save