Browse Source

Release Fractal 12.beta

fractal-12 12.beta
Kévin Commaille 9 months ago
parent
commit
b31f4ff67b
No known key found for this signature in database
GPG Key ID: F26F4BE20A08255B
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 2
      README.md
  4. 36
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 6
      meson.build

2
Cargo.lock generated

@ -1234,7 +1234,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "11.2.0"
version = "12.0.0-beta"
dependencies = [
"aperture",
"ashpd",

2
Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "fractal"
version = "11.2.0"
version = "12.0.0-beta"
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.2 (same as stable).
The current beta version is 12.beta (released June 26th 2025).
It is available as a Flatpak on Flathub Beta.

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

@ -71,6 +71,42 @@
</content_rating>
<releases>@development-release@
<release version="12~beta" type="development" date="2025-06-26">
<description>
<p>
Hot! Hot! Hot! No, we are not talking about the summer weather in the northern hemisphere,
but about the brand new release of Fractal 12.beta! Coming soon to your device:
</p>
<ul>
<li>
The safety setting to hide media previews in rooms is now synced between Matrix
clients.
</li>
<li>
We added another safety setting (which is also synced) to hide avatars in invites.
</li>
<li>
A room can be marked as unread via the context menu in the sidebar.
</li>
<li>
We changed the UX a little for tombstoned rooms. Instead of showing a banner at the top
of the history, it now replaces the composer at the bottom of the history.
</li>
<li>
You can now see if a section in the sidebar has any notifications or activity when it is
collapsed.
</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, 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="11.2" type="stable" date="2025-06-10">
<description>
<p>

6
meson.build

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

Loading…
Cancel
Save