Skip to content

Commit

Permalink
Bugfixes and updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JezerM committed Oct 27, 2021
1 parent ed34413 commit 3d8c558
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ decorated := True
stays_on_top := False
endif

all: build

_apply_config:
@$(SET_CONFIG) at_spi_service $(at_spi_service)
Expand All @@ -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)
Expand Down
33 changes: 32 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down Expand Up @@ -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)

Expand Down
35 changes: 35 additions & 0 deletions dist/web-greeter.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions web-greeter/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@
"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,
},
}
}
Expand Down

0 comments on commit 3d8c558

Please sign in to comment.