Browse Source

Release Fractal 11.beta

af/unable-to-decryt-styling 11.beta
Kévin Commaille 12 months ago
parent
commit
f513aa5f8b
No known key found for this signature in database
GPG Key ID: C971D9DBC9D678D
  1. 2
      Cargo.lock
  2. 2
      Cargo.toml
  3. 4
      README.md
  4. 27
      data/org.gnome.Fractal.metainfo.xml.in.in
  5. 6
      meson.build

2
Cargo.lock generated

@ -1214,7 +1214,7 @@ dependencies = [
[[package]] [[package]]
name = "fractal" name = "fractal"
version = "10.1.0" version = "11.0.0-beta"
dependencies = [ dependencies = [
"aperture", "aperture",
"ashpd", "ashpd",

2
Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "fractal" name = "fractal"
version = "10.1.0" version = "11.0.0-beta"
authors = ["Julian Sparber <julian@sparber.net>"] authors = ["Julian Sparber <julian@sparber.net>"]
edition = "2021" edition = "2021"
rust-version = "1.82" rust-version = "1.82"

4
README.md

@ -38,7 +38,7 @@ development version while keeping the stable release around for daily use.
### Stable version ### Stable version
The current stable version is 10.1 (released February 10th 2024). The current stable version is 10.1 (released February 10th 2025).
You can get the official Fractal Flatpak from Flathub. You can get the official Fractal Flatpak from Flathub.
@ -53,7 +53,7 @@ You can get the official Fractal Flatpak from Flathub.
### Beta version ### Beta version
The current beta version is 10.1 (same as stable). The current beta version is 11.beta (released March 27th 2025).
It is available as a Flatpak on Flathub Beta. It is available as a Flatpak on Flathub Beta.

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

@ -71,6 +71,33 @@
</content_rating> </content_rating>
<releases>@development-release@ <releases>@development-release@
<release version="11~beta" type="development" date="2025-03-27">
<description>
<p>
It’s the beginning of bee season! 🌸🌺🌼 🐝 B like beta!
</p>
<ul>
<li>
New shortcuts Ctrl + Page Up and Ctrl + Page Down go to the previous/next room in the
list.
</li>
<li>
The media cache will now be periodically cleaned up.
</li>
<li>
The page that lists user sessions has been overhauled, with details moved to subpages,
for a less cluttered feel, and paving the way to a new feature!
</li>
<li>
A couple of small cosmetic changes have landed as well.
</li>
</ul>
<p>
As usual, this release includes other improvements, fixes and new translations thanks to
all our contributors, and our upstream projects.
</p>
</description>
</release>
<release version="10.1" type="stable" date="2025-02-10"> <release version="10.1" type="stable" date="2025-02-10">
<description> <description>
<p> <p>

6
meson.build

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

Loading…
Cancel
Save