Browse Source

Updating to 3.4.0

sisyphus
JezerM 3 years ago
parent
commit
fcb2d18d97
No known key found for this signature in database
GPG Key ID: 66BBC5D01388C6B5
  1. 20
      NEWS.md
  2. 4
      build/DEBIAN/control
  3. 31
      dist/web-greeter.appdata.xml
  4. 4
      src/config.py

20
NEWS.md

@ -1,5 +1,25 @@
# Change Log # 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 ## [3.3.0](https://github.com/JezerM/web-greeter/tree/3.2.0) ~ 01-28-2022
**Changes:** **Changes:**

4
build/DEBIAN/control

@ -1,11 +1,11 @@
Package: web-greeter Package: web-greeter
Version: 3.3.0 Version: 3.4.0
Provides: lightdm-greeter Provides: lightdm-greeter
Replaces: lightdm-webkit-greeter Replaces: lightdm-webkit-greeter
Section: x11 Section: x11
Priority: optional Priority: optional
Homepage: https://github.com/JezerM/web-greeter Homepage: https://github.com/JezerM/web-greeter
Installed-Size: 15276 Installed-Size: 15288
Architecture: all Architecture: all
Maintainer: JezerM <amyuki4@gmail.com> Maintainer: JezerM <amyuki4@gmail.com>
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 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

31
dist/web-greeter.appdata.xml vendored

@ -44,6 +44,37 @@
--> -->
<releases> <releases>
<release date="2022-03-22" version="3.4.0">
<description>
<p>Added:</p>
<ul>
<li>Added top Menu-bar menus and items</li>
<li>Improve devtools qdock behavior</li>
</ul>
<p>Changes:</p>
<ul>
<li>Bugfixes related to LightDM signals</li>
<li>Fix web-greeter initialization issues</li>
<li>Migrate build process from utils.sh script to full Makefile</li>
<li>Man-pages updated</li>
</ul>
<p>Changes:</p>
<ul>
<li>Remove python-xlib dependency in favor of python C binding</li>
</ul>
</description>
</release>
<release date="2022-01-28" version="3.3.0">
<description>
<p>Changes:</p>
<ul>
<li>Bugfixes related to LightDM signals</li>
<li>Allow --no-sandbox argument</li>
<li>Allow relative path with theme_utils.dirlist</li>
<li>Added brightness controller to use instead of external programs</li>
</ul>
</description>
</release>
<release date="2021-12-11" version="3.2.1"> <release date="2021-12-11" version="3.2.1">
<description> <description>
<p>Changes:</p> <p>Changes:</p>

4
src/config.py

@ -65,9 +65,9 @@ web_greeter_config = {
"debug_mode": False, "debug_mode": False,
"theme_dir": "/usr/share/web-greeter/themes/", "theme_dir": "/usr/share/web-greeter/themes/",
"version": { "version": {
"full": "3.3.0", "full": "3.4.0",
"major": 3, "major": 3,
"minor": 3, "minor": 4,
"micro": 0, "micro": 0,
}, },
} }

Loading…
Cancel
Save