Browse Source

Release Fractal 7

fractal-7 7
Alexandre Franke 2 years ago committed by Kévin Commaille
parent
commit
dec825bbf4
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 4
      README.md
  4. 57
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 4
      meson.build

2
Cargo.lock generated

@ -1524,7 +1524,7 @@ dependencies = [
[[package]] [[package]]
name = "fractal" name = "fractal"
version = "7.0.0-rc" version = "7.0.0"
dependencies = [ dependencies = [
"ashpd", "ashpd",
"djb_hash", "djb_hash",

2
Cargo.toml

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

4
README.md

@ -33,7 +33,7 @@ development version while keeping the stable release around for daily use.
### Stable version ### Stable version
The current stable version is 6 (released January 18th 2024). The current stable version is 7 (released May 2nd 2024).
You can get the official Fractal Flatpak from Flathub. You can get the official Fractal Flatpak from Flathub.
@ -48,7 +48,7 @@ You can get the official Fractal Flatpak from Flathub.
### Beta version ### Beta version
The current beta version is 7.rc (released April 18th 2024). The current beta version is 7 (same as stable).
It is available as a Flatpak on Flathub Beta. It is available as a Flatpak on Flathub Beta.

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

@ -71,50 +71,16 @@
</content_rating> </content_rating>
<releases>@development-release@ <releases>@development-release@
<release version="7~rc" type="development" date="2024-04-18"> <release version="7" type="stable" date="2024-05-02">
<description> <description>
<ul>
<li>
Account recovery, introduced during this cycle, could lead to an unclear situation where
it was still incomplete even after successfully going through the process. We added some
explanations on how to solve this. Thanks to anyone who tried it in the beta and
provided us with feedback!
</li>
<li>
After fixing a focus issue upstream in GtkListView, we got rid of more focus issues in
our widgets. That should make the room history completely accessible with keyboard
navigation.
</li>
<li>
Third party verification, that happens in a direct chat, was partly broken as the banner
about an ongoing verification was not showing up anymore. The culprit was found and we
took that opportunity to improve the security instructions. Along with this bugfix, a
coat of polish has been applied.
</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> <p>
As the version implies, it should be mostly stable and we expect to only include minor Here comes Fractal 7, with extended encryption support and improved accessibility.
improvements until the release of Fractal 7. Server-side key backup and account recovery have been added, bringing greater security.
</p> Third-party verification has received some bug fixes and improvements. Amongst the many
</description> accessibility improvements, navigability has increased, especially in the room history.
</release> But that’s not all we’ve been up to in the past three months:
<release version="7~beta" type="development" date="2024-03-28">
<description>
<p>
Spring is here in Fractal land. Birds chirping, flowers blooming, and a new beta for you
to try!
</p>
<p>
Staff’s picks:
</p> </p>
<ul> <ul>
<li>
Encryption support has been extended, with server-side key backup and account recovery.
</li>
<li> <li>
Messages that failed to send can now be retried or discarded. Messages that failed to send can now be retried or discarded.
</li> </li>
@ -123,7 +89,7 @@
</li> </li>
<li> <li>
Room details are now considered complete, with the addition of room address management, Room details are now considered complete, with the addition of room address management,
permissions, and version upgrade. permissions, and room upgrade.
</li> </li>
<li> <li>
A new member menu appears when clicking on an avatar in the room history. It offers a A new member menu appears when clicking on an avatar in the room history. It offers a
@ -133,18 +99,15 @@
<li> <li>
Pills are clickable and allow to directly go to a room or member profile. Pills are clickable and allow to directly go to a room or member profile.
</li> </li>
<li>
Many more improvements on the accessibility front, for better navigability with a screen
reader.
</li>
</ul> </ul>
<p> <p>
As usual, this release includes other improvements, fixes and new translations thanks to As usual, this release includes other improvements, fixes and new translations thanks to
all our contributors, and our upstream projects. all our contributors, and our upstream projects.
</p> </p>
<p> <p>
As the version implies, there might be a slight risk of regressions, but it should be We want to address special thanks to the translators who worked on this version. We know
mostly stable. If all goes well the next step is the release candidate! 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.
</p> </p>
</description> </description>
</release> </release>

4
meson.build

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

Loading…
Cancel
Save