forked from fredldotme/gtk3-nocsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
48 lines (42 loc) · 2 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
gtk3-nocsd ChangeLog
====================
New in version 4 (unreleased)
-----------------------------
* Support python-gi again by not caching the result of the version
check if Gtk is not yet loaded. (python-gi loads Glib before it
loads Gtk.)
* Handle the case when both Gtk+3 and Gtk+2 are loaded (e.g. via
different plugins), but Gtk+2 is used.
New in version 3
----------------
* Improvements to the documentation (Thanks to Bharat G)
* Add bash completion support for gtk3-nocsd wrapper
* Also override GtkDialog's GtkBuildable->add_child and the instance
initializer of GtkShortcutsWindow; previously CSDs weren't removed
from all windows because of that
* Drop compositor trick in Gtk+3 3.16.1 or higher; we reimplement the
set_titlebar function there anyway, and the compositor trick only
causes problems with newer Gtk+3 versions
* Selectively disable decorations: don't drop the application menu
icon by using set_show_close_button (FALSE), but instead replace
the decoration_layout string of header bars to remove the "icon",
"minimize", "maximize" and "close" buttons
* Add a test that verifies that no Glib/Gtk symbols are imported
during link time (to make sure preloading works with BINDNOW
binaries that don't use Gtk)
* Apply custom CSS for cosmetic improvements of the header bar look
when CSDs are disabled (should be largely theme-agnostic, but
tested against Adwaita)
* Thanks to Christoph Anton Mitterer for reporting many of these
issues
New in version 2
----------------
* fix crash because the development SONAME for Glib/GObject was
referenced, instead of the SONAME of the package itself
(Thanks to Simon McVittie)
* fix crash with some GDK2 applications
* add wrapper script for starting applications without CSDs
(Thanks to nandhp)
* don't use compiler-supported TLS (__thread) but rather use
pthread_(get|set)specific, to make sure no DTV overflow entry
is used by this library (fixes GitHub issue #11)