Browse Source

Release Fractal 10.beta

pipelines/786320 10.beta
Kévin Commaille 1 year ago
parent
commit
332fcefbe0
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. 36
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 6
      meson.build

2
Cargo.lock generated

@ -1346,7 +1346,7 @@ dependencies = [
[[package]]
name = "fractal"
version = "9.0.0"
version = "10.0.0-beta"
dependencies = [
"ashpd",
"djb_hash",

2
Cargo.toml

@ -1,6 +1,6 @@
[package]
name = "fractal"
version = "9.0.0"
version = "10.0.0-beta"
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 9 (same as stable).
The current beta version is 10.beta (released December 26th 2024).
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="10~beta" type="development" date="2024-12-26">
<description>
<p>
Vive le vent ! Vive le vent ! Vive le vent d’hiver ! 🎶🌲 And vive Fractal 10.beta!
While everyone is resting for the holidays, we thought you could use a new release. It
focuses on improvements and bug fixes, including:
</p>
<ul>
<li>
Videos were often not playing after loading in the room history, this was fixed, and we
also show properly when an error occurred.
</li>
<li>
Computing the size of media messages was slightly wrong, which meant that sometimes a
grey line would appear below them. We rebooted the code and that problem is gone!
</li>
<li>
Our CSS file was a bit too big for our taste, so we decided to make use of SASS and
split it.
</li>
<li>
We were downloading too many different sizes for avatar images, which would fill the
media cache needlessly. We now only download a couple of sizes. This has the extra
benefit of fixing blurry or missing thumbnails in notifications.
</li>
</ul>
<p>
As usual, this release includes other improvements and fixes 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="9" type="stable" date="2024-10-30">
<description>
<p>

6
meson.build

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

Loading…
Cancel
Save