diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-03-21 16:11:25 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-03-21 16:11:25 -0400 |
commit | bac2284172b59de051a5a8cb74609faa3e9174a7 (patch) | |
tree | 3ef84c3ea33a0dbefa7ed24cc42b0f13931a04e2 /ChangeLog | |
parent | 5995e81c8b6f794c22a6d1b3cf2a061868307de4 (diff) | |
parent | 268ede0deda25d0d868abee3cce4b0f9e15eb9aa (diff) | |
download | libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.tar.gz libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.tar.bz2 libdbusmenu-bac2284172b59de051a5a8cb74609faa3e9174a7.zip |
* New upstream release.
* Fix theme change bug (LP: #953509)
* Don't request event responses if no one is listening
* Fix a warning on custom menu items without labels
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,5 +1,41 @@ # Generated by Makefile. Do not edit. +2012-03-21 Ted Gould <ted@gould.cx> + + 0.5.95 + +2012-03-21 Charles Kerr <charles.kerr@canonical.com> + + merge lp:~charlesk/dbusmenu/lp-953509 to fix a crash in dbusmenu-gtk's handling of menu icon theme changes + +2012-03-21 Charles Kerr <charles.kerr@canonical.com> + + Don't listen for "changed" events from the screen's default GtkIconTheme. Fixes lp bug #953509 + + The crash in #953509 was being caused by the last two lines of theme_changed_cb() (a) leaving a dangling handler id in priv.theme_changed_sig, and (b) not remembering the handler id of its own signal connection. However after testing I don't see any reason to keep any of the theme handling code at all. + + "But wait," you say. "How will our menu icons follow the theme changes?" It works in practice anyway because we always listen for property changes to our reference GtkImage, **and** we listen for property changes to its GtkImageMenuItem parent so that if the GtkImageMenuItem changes GtkImages we can stop listening to the old one and start listening to the new one. + +2012-03-20 Charles Kerr <charles.kerr@canonical.com> + + merge lp:~ted/dbusmenu/regex_merge to fix a warning that comes up a lot with unity-panel-service about not having a label. + +2012-03-20 Ted Gould <ted@gould.cx> + + Fix string leak + +2012-03-20 Ted Gould <ted@gould.cx> + + Handle the case of the label being NULL which can happen on custom items + +2012-03-20 Ted Gould <ted@gould.cx> + + Don't ask for a reply if no one cares + +2012-03-16 Ryan Lortie <desrt@desrt.ca> + + glib client: don't request a reply on send_event() if nobody is listening for it + 2012-03-09 Ted Gould <ted@gould.cx> 0.5.94 |