Browse Source

Bugfixes and updates

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

3
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)

31
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:**

35
dist/web-greeter.appdata.xml vendored

@ -44,6 +44,41 @@
-->
<releases>
<release date="2021-10-27" version="3.1.1">
<description>
<p>Bugfixes</p>
<p>Changes:</p>
<ul>
<li>Bugfixes, just bugfixes</li>
</ul>
</description>
</release>
<release date="2021-09-15" version="3.1.0">
<description>
<p>Web Greeter 3.1.0 is here!</p>
<p>The build system changed to cx_freeze, though the previous build/install method, can be used.</p>
<p>Added:</p>
<ul>
<li>Devtools implemented as a side view</li>
<li>Build system now uses cx_freeze</li>
<li>Improved themes:
<ul>
<li>Added keyboard layout selector</li>
<li>Added eye password reveal</li>
</ul>
<li>
</ul>
<p>Changes:</p>
<ul>
<li>Brightness and battery are now controlled by signals instead of timers</li>
<li>Old build system (zip build) is still usable with `build_old` and `install_old`</li>
</ul>
<p>Removed:</p>
<ul>
<li>whither dependency removed</li>
</ul>
</description>
</release>
<release date="2021-07-28" version="3.0.0">
<description>
<p>Finally, Web Greeter 3.0.0 is ready!</p>

4
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,
},
}
}

Loading…
Cancel
Save