diff --git a/NEWS.md b/NEWS.md index 739b83793..069e90b60 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,17 @@ # Change Log -## [3.2.1](https://github.com/JezerM/web-greeter/tree/3.2.0) ~ 12-11-2021 +## [3.3.0](https://github.com/JezerM/web-greeter/tree/3.2.0) ~ 01-28-2022 + +**Changes:** + + * Bugfixes related to LightDM signals + * Allow --no-sandbox argument + * Allowed relative path with theme_utils.dirlist + * Added brightness controller to use instead of external programs + +[Full changelog](https://github.com/JezerM/web-greeter/compare/3.2.1...3.3.0) + +## [3.2.1](https://github.com/JezerM/web-greeter/tree/3.2.1) ~ 12-11-2021 **Changes:** diff --git a/build/DEBIAN/control b/build/DEBIAN/control index 918ca90c2..846db398a 100644 --- a/build/DEBIAN/control +++ b/build/DEBIAN/control @@ -1,5 +1,5 @@ Package: web-greeter -Version: 3.2.1 +Version: 3.3.0 Provides: lightdm-greeter Replaces: lightdm-webkit-greeter Section: x11 diff --git a/src/config.py b/src/config.py index 701ac1ac1..1ec4106af 100644 --- a/src/config.py +++ b/src/config.py @@ -68,10 +68,10 @@ "debug_mode": False, "theme_dir": "/usr/share/web-greeter/themes/", "version": { - "full": "3.2.1", + "full": "3.3.0", "major": 3, - "minor": 2, - "micro": 1, + "minor": 3, + "micro": 0, }, } }