diff --git a/NEWS b/NEWS index 4ed9e927f..0ed862cb9 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,55 @@ +42.alpha +======== +* Fix icon updates while hidden [Marco; !1983] +* Fix erratic scrolling in GTK apps [Christian, Carlos; !1993, !2011] +* Fix GTK color picker support [Florian; !1990] +* Fix sound-file support in notifications [Florian; !1991] +* Fix high-contrast switches [Florian; !2000] +* Allow extensions to opt-in to running on lock/login screen [Ray; !1967] +* magnifier: Avoid offscreen rendering if possible [Sebastian; !2026] +* Warn when unsafe-mode is toggled [Florian; !2050] +* Improve handling of all-day/zero-length events in calendar [Sebastian; !2023] +* Keep keyboard focus in notification list after deleting message [Dylan; !2053] +* switchMonitor: Don't include builtin/external modes on desktops [Jonas; !2056] +* Fix wrongly rejected D-Bus calls after gnome-shell restarts [Sebastian; !2048] +* Improve window tracking [Florian; [Florian; !2029] +* Simplify scroll fade shader to work with old hardware [Sebastian; !2072] +* Tweak (un)minimize animations [Daniel; !2066] +* Properly handle markup when highlighting search terms [Sebastian; !2033] +* Don't wake up screen in DND mode [kyte; !2051] +* Port to GWeather 4.0 [Florian; !2083] +* extensions-app: Use libadwaita [Romain, Florian; !1997] +* Fix immediately withdrawn notifications getting stuck [Sebastian; !2079] +* Honor XDG SingleMainWindow key in .desktop files [Nate; !2084] +* Opt-in to unique GType names in extension prefs [Florian; !2024] +* Don't terminate remote sessions in headless mode [Joan; !2057] +* Fixed crashes [Ray, Sebastian, Benjamin, Florian; !2004, !2014, !2025, + !2065, !2073] +* Misc. bug fixes and cleanups [Jonas, Florian, Jakub, Ray, Carlos, Sebastian, + Georges, Evan, Sergio, Emily, Robert; !1985, !1998, !1996, !1999, !1979, + !2007, !2010, !2013, !2021, !2027, !2015, !2030, !2039, !2036, !2038, !2041, + !2034, !1992, !2059, !2054, !2068, !2076, !2077, !2078, !2081, !2082, !2031, + !2042, !2086, !2087, !2085, !2088] + +Contributors: + Marco Trevisan (Treviño), Benjamin Berg, Sergio Costas, Carlos Garnacho, + Emily Gonyer, Nate Graham, Christian Hergert, Sebastian Keller, Robert Mader, + Dylan McCall, Florian Müllner, Georges Basile Stavracas Neto, Jakub Steiner, + Ray Strode, Joan Torres, Romain Vigier, Daniel van Vugt, Evan Welsh, kyte, + Jonas Ådahl + +Translators: + Марко Костић [sr], Ngọc Quân Trần [vi], Emin Tufan Çetin [tr], + Yaron Shahrabani [he], Sveinn í Felli [is], Goran Vidović [hr], + Marek Černocký [cs], Selyan Slimane AMIRI [kab], Rūdolfs Mazurs [lv], + eshagh shahidani [fa], Yuri Chornoivan [uk], Anders Jonsson [sv], + Rafael Fontenelle [pt_BR], Kukuh Syafaat [id], Christian Kirbach [de], + Piotr Drąg [pl], Dušan Kazik [sk], Charles Monzat [fr], Fabio Tomat [fur], + Quentin PAGÈS [oc], Hugo Carvalho [pt], Milo Casagrande [it], + Daniel Mustieles [es], MohammadSaleh Kamyab [fa], Aurimas Černius [lt], + Aleksandr Melman [ru], Fran Dieguez [gl], Мирослав Николић [sr], + Danial Behzadi [fa] + 41.0 ==== diff --git a/meson.build b/meson.build index 470ea6432..efdd7def1 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('gnome-shell', 'c', - version: '41.0', + version: '42.alpha', meson_version: '>= 0.58.0', license: 'GPLv2+' ) diff --git a/subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml.in b/subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml.in index 650eaa5c9..b96642e9d 100644 --- a/subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml.in +++ b/subprojects/extensions-app/data/metainfo/org.gnome.Extensions.metainfo.xml.in @@ -39,7 +39,11 @@ - + + + Use libadwaita for platform integration and consistency. + + diff --git a/subprojects/extensions-app/meson.build b/subprojects/extensions-app/meson.build index 432ea1baa..b6943f37e 100644 --- a/subprojects/extensions-app/meson.build +++ b/subprojects/extensions-app/meson.build @@ -1,5 +1,5 @@ project('gnome-extensions-app', - version: '41.0', + version: '42.alpha', meson_version: '>= 0.58.0', license: 'GPLv2+' ) diff --git a/subprojects/extensions-tool/meson.build b/subprojects/extensions-tool/meson.build index 07084fbe1..3817763fe 100644 --- a/subprojects/extensions-tool/meson.build +++ b/subprojects/extensions-tool/meson.build @@ -1,5 +1,5 @@ project('gnome-extensions-tool', 'c', - version: '41.0', + version: '42.alpha', meson_version: '>= 0.58.0', license: 'GPLv2+' ) diff --git a/subprojects/shew/meson.build b/subprojects/shew/meson.build index 0efb01095..ba05e21ee 100644 --- a/subprojects/shew/meson.build +++ b/subprojects/shew/meson.build @@ -1,5 +1,5 @@ project('shew', 'c', - version: '41.0', + version: '42.alpha', meson_version: '>= 0.58.0', license: 'LGPLv2+', )
Use libadwaita for platform integration and consistency.