From 3d8c558090c9b64072dd10880d89be490eebf04d Mon Sep 17 00:00:00 2001 From: JezerM Date: Wed, 27 Oct 2021 14:41:39 -0600 Subject: [PATCH] Bugfixes and updates --- Makefile | 3 +-- NEWS.md | 33 ++++++++++++++++++++++++++++++++- dist/web-greeter.appdata.xml | 35 +++++++++++++++++++++++++++++++++++ web-greeter/config.py | 4 ++-- 4 files changed, 70 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b2aa12f..8d5b16e 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,7 @@ decorated := True stays_on_top := False endif +all: build _apply_config: @$(SET_CONFIG) at_spi_service $(at_spi_service) @@ -59,8 +60,6 @@ _apply_config: _build_init: clean $(DO) build-init -all: install - build: _build_init _apply_config $(DO) build $(PREFIX) $(DO) prepare-install $(PREFIX) diff --git a/NEWS.md b/NEWS.md index 956009a..22c111a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,36 @@ # Change Log +## [3.1.1](https://github.com/JezerM/web-greeter/tree/3.1.1) ~ 10-27-2021 + +**Changes:** + + * Bugfixes, just bugfixes + +[Full changelog](https://github.com/JezerM/web-greeter/compare/3.1.0...3.1.1) + + +## [3.1.0](https://github.com/JezerM/web-greeter/tree/3.1.0) ~ 09-15-2021 + +**Added**: + + * Devtools implemented as a side view + * Build system now uses **cx_freeze** + * Improved themes: + - Added keyboard layout selector + - Added eye password reveal + +**Changes:** + + * Brightness and battery are now controlled by signals instead of timers + * Old build system (zip build) is still usable with `build_old` and `install_old` + +**Removed:** + + * [whither](https://github.com/JezerM/whither) dependency removed + +[Full changelog](https://github.com/JezerM/web-greeter/compare/3.0.0...3.1.0) + + ## [3.0.0](https://github.com/JezerM/web-greeter/tree/3.0.0) ~ 07-28-2021 **Added:** @@ -87,7 +118,7 @@ **Fixed:** - * Increased the timeout for the "theme loaded" check to ensure themes are given + * Increased the timeout for the "theme loaded" check to ensure themes are given enough time to load (when running on less powerful systems). (GH #98) * Fixed issue where users' custom .face image failed to load. (GH #98) diff --git a/dist/web-greeter.appdata.xml b/dist/web-greeter.appdata.xml index a08dbff..3ed760b 100644 --- a/dist/web-greeter.appdata.xml +++ b/dist/web-greeter.appdata.xml @@ -44,6 +44,41 @@ --> + + +

Bugfixes

+

Changes:

+
    +
  • Bugfixes, just bugfixes
  • +
+
+
+ + +

Web Greeter 3.1.0 is here!

+

The build system changed to cx_freeze, though the previous build/install method, can be used.

+

Added:

+
    +
  • Devtools implemented as a side view
  • +
  • Build system now uses cx_freeze
  • +
  • Improved themes: +
      +
    • Added keyboard layout selector
    • +
    • Added eye password reveal
    • +
    +
  • +
+

Changes:

+
    +
  • Brightness and battery are now controlled by signals instead of timers
  • +
  • Old build system (zip build) is still usable with `build_old` and `install_old`
  • +
+

Removed:

+
    +
  • whither dependency removed
  • +
+
+

Finally, Web Greeter 3.0.0 is ready!

diff --git a/web-greeter/config.py b/web-greeter/config.py index 8066350..36e1365 100644 --- a/web-greeter/config.py +++ b/web-greeter/config.py @@ -68,10 +68,10 @@ web_greeter_config = { "debug_mode": False, "theme_dir": "/usr/share/web-greeter/themes/", "version": { - "full": "3.1.0", + "full": "3.1.1", "major": 3, "minor": 1, - "micro": 0, + "micro": 1, }, } }