diff --git a/NEWS.md b/NEWS.md index 069e90b..e830fc5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,25 @@ # Change Log +## [3.3.0](https://github.com/JezerM/web-greeter/tree/3.3.0) ~ 03-22-2022 + +**Added:** + + * Added top Menu-bar menus and items + * Improve devtools qdock behavior + +**Changes:** + + * Bugfixes related to LightDM signals + * Fix web-greeter initialization issues + * Migrate from utils.sh script to full Makefile + * Man-pages updated + +**Removed:** + + * Remove python-xlib dependency in favor of python C binding + +[Full changelog](https://github.com/JezerM/web-greeter/compare/3.3.0...3.4.0) + ## [3.3.0](https://github.com/JezerM/web-greeter/tree/3.2.0) ~ 01-28-2022 **Changes:** diff --git a/build/DEBIAN/control b/build/DEBIAN/control index 912ad13..4f72a48 100644 --- a/build/DEBIAN/control +++ b/build/DEBIAN/control @@ -1,11 +1,11 @@ Package: web-greeter -Version: 3.3.0 +Version: 3.4.0 Provides: lightdm-greeter Replaces: lightdm-webkit-greeter Section: x11 Priority: optional Homepage: https://github.com/JezerM/web-greeter -Installed-Size: 15276 +Installed-Size: 15288 Architecture: all Maintainer: JezerM Depends: liblightdm-gobject-1-0, liblightdm-gobject-1-dev, python3, python3-gi, python3-pyqt5, pyqt5-dev, python3-pyinotify, libqt5webengine5, python3-pyqt5.qtwebengine, python3-ruamel.yaml, libxcb1, libx11-6 diff --git a/dist/web-greeter.appdata.xml b/dist/web-greeter.appdata.xml index 6d2435c..fcb4028 100644 --- a/dist/web-greeter.appdata.xml +++ b/dist/web-greeter.appdata.xml @@ -44,6 +44,37 @@ --> + + +

Added:

+
    +
  • Added top Menu-bar menus and items
  • +
  • Improve devtools qdock behavior
  • +
+

Changes:

+
    +
  • Bugfixes related to LightDM signals
  • +
  • Fix web-greeter initialization issues
  • +
  • Migrate build process from utils.sh script to full Makefile
  • +
  • Man-pages updated
  • +
+

Changes:

+
    +
  • Remove python-xlib dependency in favor of python C binding
  • +
+
+
+ + +

Changes:

+
    +
  • Bugfixes related to LightDM signals
  • +
  • Allow --no-sandbox argument
  • +
  • Allow relative path with theme_utils.dirlist
  • +
  • Added brightness controller to use instead of external programs
  • +
+
+

Changes:

diff --git a/src/config.py b/src/config.py index 43be369..aab0f65 100644 --- a/src/config.py +++ b/src/config.py @@ -65,9 +65,9 @@ web_greeter_config = { "debug_mode": False, "theme_dir": "/usr/share/web-greeter/themes/", "version": { - "full": "3.3.0", + "full": "3.4.0", "major": 3, - "minor": 3, + "minor": 4, "micro": 0, }, }