Browse Source

update news file

sisyphus
Dustin Falgout 9 years ago
parent
commit
4b9bcd3a25
  1. 21
      NEWS
  2. 9
      configure.ac

21
NEWS

@ -1,3 +1,24 @@
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.
* 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:
* 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.
* Several small bug fixes, enhancements, and code cleanup commits also made it into this release.
Overview of changes in lightdm-webkit2-greeter 2.0.0
* Version scheme updated for both the webkit1 and webkit2 greeters as follows:

9
configure.ac

@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(lightdm-webkit2-greeter, 2.1.0rc1)
AC_INIT(lightdm-webkit2-greeter, 2.1.0rc3)
AC_SUBST(THEME_DIR)
AC_CONFIG_HEADER(config.h)
AC_PREREQ([2.59])
@ -26,11 +26,10 @@ PKG_CHECK_MODULES([GREETER], [
x11
])
dnl PKG_CHECK_MODULES(WEB_EXTENSION, [webkit2gtk-4.0 >= 2.8.0])
dnl AC_SUBST(WEB_EXTENSION_CFLAGS)
dnl AC_SUBST(WEB_EXTENSION_LIBS)
PKG_CHECK_MODULES([WEB_EXTENSION], [
webkit2gtk-web-extension-4.0 >= 2.10.8
])
PKG_CHECK_MODULES([WEB_EXTENSION], [webkit2gtk-web-extension-4.0 >= 2.8.0])
AC_SUBST([WEB_EXTENSION_CFLAGS])
AC_SUBST([WEB_EXTENSION_LIBS])

Loading…
Cancel
Save