diff --git a/Cargo.lock b/Cargo.lock index 858d5eac..7c162b04 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1234,7 +1234,7 @@ dependencies = [ [[package]] name = "fractal" -version = "12.0.0-rc" +version = "12.0.0" dependencies = [ "aperture", "ashpd", diff --git a/Cargo.toml b/Cargo.toml index 74be9d31..5da24927 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "12.0.0-rc" +version = "12.0.0" authors = ["Julian Sparber "] edition = "2024" rust-version = "1.85" diff --git a/README.md b/README.md index e00e0b82..f951a1e3 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ development version while keeping the stable release around for daily use. ### Stable version -The current stable version is 11.2 (released June 10th 2025). +The current stable version is 12 (released August 11th 2025). You can get the official Fractal Flatpak from Flathub. @@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub. ### Beta version -The current beta version is 12.rc (released July 31st 2025). +The current beta version is 12 (same as stable). It is available as a Flatpak on Flathub Beta. diff --git a/data/org.gnome.Fractal.metainfo.xml.in.in b/data/org.gnome.Fractal.metainfo.xml.in.in index 7700e1a2..5456d09b 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -35,15 +35,15 @@ - https://gitlab.gnome.org/World/fractal/raw/fractal-11/screenshots/main.png + https://gitlab.gnome.org/World/fractal/raw/fractal-12/screenshots/main.png Fractal’s main window - https://gitlab.gnome.org/World/fractal/raw/fractal-11/screenshots/media-history.png + https://gitlab.gnome.org/World/fractal/raw/fractal-12/screenshots/media-history.png View the media history of a Matrix room - https://gitlab.gnome.org/World/fractal/raw/fractal-11/screenshots/adaptive.png + https://gitlab.gnome.org/World/fractal/raw/fractal-12/screenshots/adaptive.png Fractal’s interface adapts to small screens @@ -71,57 +71,34 @@ @development-release@ - +

- Want to get a head start and try out Fractal 12 before its release? That’s what this - Release Candidate is for! New since 12.beta: + Knock, knock, knock… on rooms, baby 🎵 Ooh ooh ooh ooh ooh ooh 🎶 That's right, Fractal 12 + adds support for knocking, among other things. Read all about the improvements since 11.2:

  • - The upcoming room version 12 is supported, with the special power level of room creators + Requesting invites to rooms (aka knocking) is now possible, as is enabling such requests + for room admins.
  • - Requesting invites to rooms (aka knocking) is now possible + The upcoming room version 12 is supported, with the special power level of room + creators.
  • - Clicking on the name of the sender of a message adds a mention to them in the composer -
  • -
-

- As usual, this release includes other improvements, fixes and new translations thanks to - all our contributors, and our upstream projects. -

-

- As the version implies, it should be mostly stable and we expect to only include minor - improvements until the release of Fractal 12. -

-
-
- - -

- 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: -

-
    -
  • - The safety setting to hide media previews in rooms is now synced between Matrix - clients. -
  • -
  • - We added another safety setting (which is also synced) to hide avatars in invites. + A room can be marked as unread via the context menu in the sidebar.
  • - A room can be marked as unread via the context menu in the sidebar. + You can now see if a section in the sidebar has any notifications or activity when it is + collapsed.
  • - 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. + Clicking on the name of the sender of a message adds a mention to them in the composer.
  • - You can now see if a section in the sidebar has any notifications or activity when it is - collapsed. + The safety setting to hide media previews in rooms is now synced between Matrix clients + and we added another safety setting (which is also synced) to hide avatars in invites.

@@ -129,8 +106,9 @@ 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! + We want to address special thanks to the translators who worked on this version. We know + this is a huge undertaking and have a deep appreciation for what you’ve done. If you want + to help with this effort, head over to Damned Lies.

diff --git a/meson.build b/meson.build index 75fe7e6e..982f0531 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fractal', 'rust', - version: '12.rc', + version: '12', 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 = '12' -pre_release_version = 'rc' +pre_release_version = '' version = major_version if pre_release_version != ''