diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e26075f..7aeb9693 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5...3.29) project( Cantata - VERSION "3.4.0" + VERSION "3.5.0" DESCRIPTION "Graphical MPD Client with Qt." HOMEPAGE_URL "https://github.com/nullobsi/cantata" LANGUAGES CXX C diff --git a/cantata.metainfo.xml.cmake b/cantata.metainfo.xml.cmake index fedda44b..5b1df2f9 100644 --- a/cantata.metainfo.xml.cmake +++ b/cantata.metainfo.xml.cmake @@ -56,6 +56,23 @@ + + https://github.com/nullobsi/cantata/releases/tag/v3.5.0 + +

Minor release.

+
    +
  • Update to FontAwesome 7.
  • +
  • Add Turkish translation.
  • +
  • Use bundled FontAwesome by default.
  • +
  • Fix dynamic playlists with the Flatpak build.
  • +
  • Fix unreadable first run wizard on Windows 11 dark mode.
  • +
  • Fix Nix build.
  • +
  • Fix CMake COMPILE_WARNING_AS_ERROR not being marked as a cache variable.
  • +
  • Fix ignored nodiscard function return value.
  • +
  • Update GitHub workflows.
  • +
+
+
https://github.com/nullobsi/cantata/releases/tag/v3.4.0 diff --git a/flake.nix b/flake.nix index a3cadf98..34410938 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,7 @@ outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let name = "cantata"; - version = "3.4.0"; + version = "3.5.0"; pkgs = import nixpkgs { inherit system; };