From af81166e2bca21b35948356753ea08ce5ba44ed0 Mon Sep 17 00:00:00 2001 From: tfuxu <73042332+tfuxu@users.noreply.github.com> Date: Wed, 8 Mar 2023 19:46:21 +0100 Subject: [PATCH] chore: update some paths to contain information about 0.4.1 release --- ...hub.GradienceTeam.Gradience.appdata.xml.in.in | 14 ++++++++++++++ gradience/frontend/views/about_window.py | 16 ++++++---------- meson.build | 2 +- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/data/com.github.GradienceTeam.Gradience.appdata.xml.in.in b/data/com.github.GradienceTeam.Gradience.appdata.xml.in.in index e6e327edd..69840a072 100644 --- a/data/com.github.GradienceTeam.Gradience.appdata.xml.in.in +++ b/data/com.github.GradienceTeam.Gradience.appdata.xml.in.in @@ -42,6 +42,20 @@ + + +

This is a small bug fix release mainly intended for package maintainers.

+
    +
  • Only configure local CLI if buildtype is set to debug
  • +
  • Changed margins in popup explanations and some other widgets
  • +
  • Changed object names in preferences window
  • +
  • Fixed local CLI executable making issues with Fedora CI
  • +
  • Fixed theme variant menu in Monet Engine not working with non-english locales
  • +
  • Applied temporary patch for CssProvider.load_from_data() new behavior in GTK 4.10
  • +
  • Translation updates
  • +
+
+

Gradience version 0.4.0 introduces some bug fixes and general quality of life improvement changes:

diff --git a/gradience/frontend/views/about_window.py b/gradience/frontend/views/about_window.py index 6b5cbe793..d9e13d1ed 100644 --- a/gradience/frontend/views/about_window.py +++ b/gradience/frontend/views/about_window.py @@ -23,16 +23,12 @@ release_notes = """
    -
  • Added CLI interface, useful for creating scripts or for those who prefer terminal tools
  • -
  • Now Gradience warns user when switching to other presets, if current one has unsaved changes
  • -
  • When running Gradience from terminal, you will see easier to understand error messages, thanks to new logging facility
  • -
  • Preset preview button and "Repositories" tab in Preset Manager have been disabled due to lack of proper implementation
  • -
  • Fixed color palette leaking into preset variables in some rare occasions
  • -
  • Fixed 'list index out of range' error in "Custom CSS Editor"
  • -
  • Fixed sorting in "Explore" tab of Preset Manager not working with non-English locales
  • -
  • Codebase is now linted by 'pylint'
  • -
  • Start moving out remaining backend functions from 'frontend' modules
  • -
  • Now Gradience will internally use hexadecimal color values or RGBA formatted colors if transparency is provided
  • +
  • Only configure local CLI if buildtype is set to debug
  • +
  • Changed margins in popup explanations and some other widgets
  • +
  • Changed object names in preferences window
  • +
  • Fixed local CLI executable making issues with Fedora CI
  • +
  • Fixed theme variant menu in Monet Engine not working with non-english locales
  • +
  • Applied temporary patch for CssProvider.load_from_data() new behavior in GTK 4.10
  • Translation updates
""" diff --git a/meson.build b/meson.build index d1a7567a6..30e17a1be 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('gradience', - version: '0.4.0', + version: '0.4.1', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', 'werror=false',