Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Releases: Antergos/web-greeter

[BUG FIX] v2.1.2

15 Apr 23:18
Compare
Choose a tag to compare

Overview of changes in lightdm-webkit2-greeter 2.1.2

  • Allow access to right-click context menu when debug mode is enabled in lightdm-webkit2-greeter.conf.
  • Add additional debug messages to the default theme to help identify points of failure.
  • Fix issue with screen blanking functionality when greeter is used as a lockscreen.

[BUG FIX] v2.1.1

11 Apr 03:31
Compare
Choose a tag to compare
  • Fix default theme initialization failure if config file values are missing.

v2.1.0

09 Apr 22:36
Compare
Choose a tag to compare
Overview of changes in lightdm-webkit2-greeter 2.1.0
  • It is now possible to configure branding including logos and backgrounds in lightdm-webkit2-greeter.conf.
  • The GTK+ fade-out on-exit animation was removed in favor of allowing themes to handle the animation with webkit (via javascript) as the latter provides a much nicer effect. See the default antergos theme for an implementation example.
  • Default theme changes:
    • Theme is no longer compiled to ES2015 as Webkit2Gtk now supports ES6.
    • The logo can now be configured in lightdm-webkit2-greeter.conf.
    • The background images directory can also be configured in lightdm-webkit2-greeter.conf.
  • Several small bug fixes, enhancements, and code cleanup commits also made it into this release.

Themes Javascript API Improvements:

  • Themes can now easily query values from lightdm-webkit2-greeter.conf using the new global "config" object:
    • config.get_str()
    • config.get_num()
    • config.get_bool()
  • A new global object "greeterutil" was added to provide utility functions to themes. Newly added utility functions in this release are:
    • greeterutil.dirlist() - List the contents of a directory.
    • greeterutil.text2html() - Escape HTML entities in a string.
  • Themes should now query the config file for the distro logo to use. See the default antergos theme for an implementation example.

[MILESTONE RELEASE] v2.0.0

11 Jan 02:56
Compare
Choose a tag to compare
  • Version scheme updated for both the webkit1 and webkit2 greeters as follows:
    • {MAJOR}.{MINOR}.{UNIQUE_FIXES}
      • MAJOR: Denotes a major release. Shared by legacy webkit1 and webkit2 greeters.
      • MINOR: Denotes small changes/fixes. Also shared by webkit 1 and webkit2 greeters.
      • UNIQUE_FIXES: Denotes fixes unique to either the legacy webkit1 or webkit2 greeters.
  • Legacy Webkit1 greeter development is officially in maintenance-only mode (bug fixes only).
  • Webkit2 greeter supersedes the Webkit1 greeter and is the focus of all new development.
  • Completed API including the guest and auto-login functions.
  • API is now completely in-line with LightDM API.
  • Several functional code improvements.
  • Added Exception handling.
  • Added man page.
  • Default theme:
    • Added translations.
    • Added confirmation dialogue for system actions.
    • Theme's script was completely rewritten in ES6.
    • Use babel to compile ES6->ES5 until webkit catches up.

v0.3.0

09 Jan 11:47
Compare
Choose a tag to compare
  • Completed API including the guest and auto-login functions.
  • API is now completely in-line with LightDM API.
  • Several functional code improvements.
  • Added Exception handling.
  • Added man page.
  • Default theme:
    • Added translations.
    • Added confirmation dialogue for system actions.
    • Theme's script was completely rewritten in ES6.
    • Use babel to compile ES6->ES5 until webkit catches up.

v0.2.3

19 Nov 18:19
Compare
Choose a tag to compare
release prep

[Release Candidate] v0.2.3

03 Nov 04:02
Compare
Choose a tag to compare
Pre-release
0.2.3RC

update release tag

[Beta] v0.2.3beta3 - Testers wanted!

31 Oct 05:10
Compare
Choose a tag to compare
Pre-release
fix filepath in makefile

[Beta] v0.2.3 - Testers wanted!

29 Oct 03:05
Compare
Choose a tag to compare
Pre-release
  • Add lock_hint property to JavaScript API (for use in greeter themes)
  • When launched as a lock-screen the greeter will behave more like a screensaver.
  • Added fade-out animation when the greeter exits.
  • Old and broken default theme has been replaced by the antergos theme.
  • Code prettify/formatting.

[BUG FIX] v0.2.2

19 Oct 02:19
Compare
Choose a tag to compare
  • Call gtk_init() as early as possible to avoid drawing failures under certain conditions.
  • Use glib helper function to set sigterm signal.