From 332fcefbe077b6ea5538b94d742db6ed944e43f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Thu, 26 Dec 2024 10:32:07 +0100 Subject: [PATCH] Release Fractal 10.beta --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- data/org.gnome.Fractal.metainfo.xml.in.in | 36 +++++++++++++++++++++++ meson.build | 6 ++-- 5 files changed, 42 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fbc33205..c6ecfb6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "fractal" -version = "9.0.0" +version = "10.0.0-beta" dependencies = [ "ashpd", "djb_hash", diff --git a/Cargo.toml b/Cargo.toml index a023df25..9b6bfcb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fractal" -version = "9.0.0" +version = "10.0.0-beta" authors = ["Julian Sparber "] edition = "2021" rust-version = "1.82" diff --git a/README.md b/README.md index 7b7736ae..8e68ecaf 100644 --- a/README.md +++ b/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. diff --git a/data/org.gnome.Fractal.metainfo.xml.in.in b/data/org.gnome.Fractal.metainfo.xml.in.in index 5074e8b0..4ff2ab46 100644 --- a/data/org.gnome.Fractal.metainfo.xml.in.in +++ b/data/org.gnome.Fractal.metainfo.xml.in.in @@ -71,6 +71,42 @@ @development-release@ + + +

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

+
    +
  • + Videos were often not playing after loading in the room history, this was fixed, and we + also show properly when an error occurred. +
  • +
  • + 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! +
  • +
  • + Our CSS file was a bit too big for our taste, so we decided to make use of SASS and + split it. +
  • +
  • + 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. +
  • +
+

+ As usual, this release includes other improvements and fixes thanks to 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! +

+
+

diff --git a/meson.build b/meson.build index 649c71a5..47924977 100644 --- a/meson.build +++ b/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 != ''