diff --git a/README.md b/README.md index f74a061..bdd432a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,6 @@ sudo apt install meson gcc libglib2.0-dev-bin python3-dev python-gi-dev libxcurs In the folder with the source (obtainable e.g. by running `git clone https://github.com/ALEX11BR/ThemeChanger`) run `meson build`, then `ninja -C build install`, and you're ready to go! # TODOs -- Add more advanced Kvantum support (e.g. handling of the Kvantum theme names, which oftentimes don't match the GTK theme names, or syncing some options) - Add more options to set (see [further reference](https://developer.gnome.org/gtk3/stable/GtkSettings.html)) - Add theme remover - Add a client for OCS-compatible websites like gnome-look.org, tailored for downloading (and automatically installing) themes (see [API reference](https://freedesktop.org/wiki/Specifications/open-collaboration-services/) and [a reference project](https://www.opencode.net/dfn2/pling-store-development)) diff --git a/default.nix b/default.nix index 3a2e590..299747c 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,7 @@ { pkgs, python3Packages }: python3Packages.buildPythonApplication rec { pname = "themechanger"; - version = "0.10.2"; + version = "0.11.0"; format = "other"; src = ./.; nativeBuildInputs = with pkgs; [ diff --git a/meson.build b/meson.build index b4c6487..e963aad 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('themechanger', 'c', - version: '0.10.2', + version: '0.11.0', meson_version: '>= 0.50.0', default_options: [ 'warning_level=2', ],