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

Commit

Permalink
bump version. update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Feb 18, 2017
1 parent 280e102 commit 06c0927
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log

## [2.2.2](https://github.com/antergos/lightdm-webkit2-greeter/tree/2.2.1) ~ 01-18-2017
## [2.2.3](https://github.com/antergos/web-greeter/tree/2.2.3) ~ 02-18-2017

**Changed:**

* Revert workaround implemented in v2.2.2 for webkit2gtk 2.14.4+. It remains in place for
versions in the 2.14.0 series older than 2.14.4.

[Full Changelog](https://github.com/antergos/web-greeter/compare/2.2.2...2.2.3)


## [2.2.2](https://github.com/antergos/lightdm-webkit2-greeter/tree/2.2.2) ~ 01-18-2017

**Fixed:**

Expand Down
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('lightdm-webkit2-greeter', 'c', version: '2.2.2', license: 'GPL-3')
project('lightdm-webkit2-greeter', 'c', version: '2.2.3', license: 'GPL-3')


# ================================== #
Expand Down Expand Up @@ -60,11 +60,11 @@ conf.set('WEBEXT_DIR', '"@0@"'.format(get_option('with-webext-dir')))
conf.set('GRESOURCE_PATH', '"/com/antergos/lightdm-webkit2-greeter"')

if has_webkitgtk_2_14
conf.set('HAS_WEBKITGTK_2_14', has_webkitgtk_2_14)
conf.set('HAS_WEBKITGTK_2_14', 'TRUE')
endif

if has_webkitgtk_2_14_4
conf.set('HAS_WEBKITGTK_2_14_4', has_webkitgtk_2_14_4)
conf.set('HAS_WEBKITGTK_2_14_4', 'TRUE')
endif

if has_lightdm_1_19_2
Expand Down
2 changes: 1 addition & 1 deletion src/greeter.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ main(int argc, char **argv) {
/* https://goo.gl/vDFwFe */
g_setenv ("GDK_CORE_DEVICE_EVENTS", "1", TRUE);

if ( HAS_WEBKITGTK_2_14 && ! HAS_WEBKITGTK_2_14_4 ) {
if (HAS_WEBKITGTK_2_14 && ! HAS_WEBKITGTK_2_14_4) {
/* AC mode causes a lot of crashes in webkit2gtk versions 2.14.0 through 2.14.3: */
g_setenv("WEBKIT_DISABLE_COMPOSITING_MODE", "1", TRUE);
}
Expand Down

0 comments on commit 06c0927

Please sign in to comment.