Browse Source

RELEASE PREP :: Update change log.

sisyphus
Dustin Falgout 8 years ago
parent
commit
99983b1bac
  1. 15
      NEWS
  2. 14
      src/gresource/js/Greeter.js

15
NEWS

@ -1,20 +1,27 @@
Overview of changes in lightdm-webkit2-greeter 2.2 Overview of changes in lightdm-webkit2-greeter 2.2
* Fixed issue where the default X cursor was shown briefly after the greeter exits. * Fixed issue where the ugly default X cursor was shown briefly after the greeter exits.
* The JavaScript API for themes is now fully documented: https://goo.gl/0iPzA4 * The JavaScript API for themes is now fully documented: https://goo.gl/0iPzA4
* Switched build systems from Autotools to Meson. * Switched build systems from Autotools to Meson.
* Moved the Theme Heartbeat from the default theme into the greeter itself. Themes no longer * Removed the Theme Heartbeat system.
need to worry about starting/stopping the heartbeat as its now handled automatically. * Added Theme Error Recovery System that will alert the user when errors are
detected during JavaScript execution and give them the option to to load a fallback theme.
* Added new config option: secure_mode (enabled by default). When enabled, only local http * Added new config option: secure_mode (enabled by default). When enabled, only local http
requests are allowed in themes. All non-local requests will be blocked. requests are allowed in themes. All non-local requests will be blocked.
* Updated API usage for LightDM 1.19.2+. * Updated API usage for LightDM 1.19.2+.
* Updated bundled JS & CSS vendor libs to their latest versions.
* Added two new options to the greeter config file which make it possible to override the
language and time format used by the greeter.
* Added new theme utility method for getting the current localized time.
* Updated translations with latest changes contributed by the Antergos Community on Transifex.
* antergos theme (default): * antergos theme (default):
* Fixed issue with the size and position of the error messages container. * Fixed issue with the size and position of the error messages container.
* Fixed issue that caused the spacebar and enter login shortcut keys not to work. * Fixed issue that caused the spacebar and enter login shortcut keys not to work.
It's now once again possible to skip straight to password entry by pressing either It's now once again possible to skip straight to password entry by pressing either
the spacebar or the enter key. the spacebar or the enter key.
* Fixed issue where translated strings were available but not used in the theme. * Fixed issue where translated strings were available but not used in the theme.
* Updated translations with latest changes made by the Antergos Community on Transifex. * Updated theme for compatibility with the latest jQuery.
* Enhanced styles for buttons and user list-box items.
* simple theme: * simple theme:
* Removed deprecated HTML4 tags. * Removed deprecated HTML4 tags.
* Improved styles for input field. * Improved styles for input field.

14
src/gresource/js/Greeter.js

@ -148,33 +148,33 @@ class Greeter {
/** /**
* The current language or {@link null} if no language. * The current language or {@link null} if no language.
* @type {LightDMLanguage|null} * @type {LightDM.Language|null}
* @readonly * @readonly
*/ */
get language() {} get language() {}
/** /**
* A list of languages to present to the user. * A list of languages to present to the user.
* @type {LightDMLanguage[]} * @type {LightDM.Language[]}
* @readonly * @readonly
*/ */
get languages() {} get languages() {}
/** /**
* The currently active layout for the selected user. * The currently active layout for the selected user.
* @type {LightDMLayout} * @type {LightDM.Layout}
*/ */
get layout() {} get layout() {}
/** /**
* Set the active layout for the selected user. * Set the active layout for the selected user.
* @param {LightDMLayout} value * @param {LightDM.Layout} value
*/ */
set layout( value ) {} set layout( value ) {}
/** /**
* A list of keyboard layouts to present to the user. * A list of keyboard layouts to present to the user.
* @type {LightDMLayout[]} * @type {LightDM.Layout[]}
* @readonly * @readonly
*/ */
get layouts() {} get layouts() {}
@ -211,14 +211,14 @@ class Greeter {
/** /**
* List of available sessions. * List of available sessions.
* @type {LightDMSession[]} * @type {LightDM.Session[]}
* @readonly * @readonly
*/ */
get sessions() {} get sessions() {}
/** /**
* List of available users. * List of available users.
* @type {LightDMUser[]} * @type {LightDM.User[]}
* @readonly * @readonly
*/ */
get users() {} get users() {}

Loading…
Cancel
Save