diff --git a/README.md b/README.md
index bdd432a..6bce57f 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
![A screenshot of our lovely ThemeChanger](screenshot1.png)
This app is a theme changing utility for Linux, BSDs, and whatnots.
-It lets the user change GTK 2/3/4, Kvantum, icon and cursor themes, edit GTK CSS with live preview, and set some related options.
+It lets the user change GTK 2/3/4, Kvantum, icon and cursor themes, even for libadwaita apps, edit GTK CSS with live preview, and set some related options.
It also lets the user install icon and widget theme archives.
## Features
@@ -37,8 +37,10 @@ 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 options to set (see [further reference](https://developer.gnome.org/gtk3/stable/GtkSettings.html))
+- Add more options to set (see [further reference](https://docs.gtk.org/gtk3/class.Settings.html#properties))
- 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))
-- Use a cleaner CSS live preview method
+- Copy global theme files locally so that flatpak apps can use them (maybe?)
+- Option for configuring named colors
+- Use a cleaner CSS live preview method (probably it's not possible)
- Clean the code overall
diff --git a/data/com.github.alex11br.themechanger.appdata.xml b/data/com.github.alex11br.themechanger.appdata.xml
index 3377631..ac7ef73 100644
--- a/data/com.github.alex11br.themechanger.appdata.xml
+++ b/data/com.github.alex11br.themechanger.appdata.xml
@@ -60,6 +60,7 @@ Features:
+
diff --git a/default.nix b/default.nix
index 537856a..4112af1 100644
--- a/default.nix
+++ b/default.nix
@@ -1,7 +1,7 @@
{ pkgs, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "themechanger";
- version = "0.11.1";
+ version = "0.12.0";
format = "other";
src = ./.;
nativeBuildInputs = with pkgs; [
@@ -25,4 +25,4 @@ python3Packages.buildPythonApplication rec {
postPatch = ''
patchShebangs postinstall.py
'';
-}
\ No newline at end of file
+}
diff --git a/meson.build b/meson.build
index 180e59d..4f95881 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('themechanger', 'c',
- version: '0.11.1',
+ version: '0.12.0',
meson_version: '>= 0.50.0',
default_options: [ 'warning_level=2',
],