diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 105 |
1 files changed, 105 insertions, 0 deletions
@@ -1,5 +1,110 @@ # Generated by Makefile. Do not edit. +2012-03-08 Ted Gould <ted@gould.cx> + + 0.3.91 + +2012-03-08 Ted Gould <ted@gould.cx> + + Change GSetting bindings to be read only + +2012-03-07 Ryan Lortie <desrt@desrt.ca> + + Establish read-only bindings to GSettings from the indicator + + The bindings to GSettings are established in the GTypeInstance _init + function of the indicator. During this time, the property notify queue + is frozen. After the construction completes, the queue thaws and the + rush of property change notifications causes GSettings writes to occur. + + We can fix this by switching to using readonly bindings. + +2012-03-08 Ted Gould <ted@gould.cx> + + Specify types explicitly to GVariantBuilder + +2012-03-07 Ryan Lortie <desrt@desrt.ca> + + more GVariantBuilder vs. G_VARIANT_TYPE_ARRAY fixes + +2012-03-05 Charles Kerr <charles.kerr@canonical.com> + + merge lp:~charlesk/indicator-datetime/fix-943747 to silence the Coverity warning reported in bug #943747 + +2012-03-03 Charles Kerr <charles.kerr@canonical.com> + + In Bug #943747, Coverity reported that use of sscanf() needed to be inspected by a human to verify there aren't buffer overruns. This commit adds /* coverity[secure_coding] */ to the lines before the calls to tell Coverity that they've been checked. + +2012-03-05 Charles Kerr <charles.kerr@canonical.com> + + merge lp:~charlesk/indicator-datetime/lp-943746 to fix the warning that Coverity reported in bug #943746 + +2012-03-03 Charles Kerr <charles.kerr@canonical.com> + + remove unused code in populate_appointment_instances(). + + It looks like the local variables 'datetime', 'appointment_zone', and 'current_zone' were used in earlier revisions of the code, but this was removed in <http://bazaar.launchpad.net/~indicator-applet-developers/indicator-datetime/trunk.0.4/revision/57>. They're currently leftover code, and removing them should fix Bug #943746. + +2012-03-03 Charles Kerr <charles.kerr@canonical.com> + + merging lp:~charlesk/indicator-datetime/fix-833337 and lp:~charlesk/indicator-datetime/fix-leaks + +2012-03-02 Charles Kerr <charles.kerr@canonical.com> + + simplify the code by removing special handling for geo_location and current_location, and adding them to the same 'locations' list that we use when pruning duplicates from the user-specified list of locations + +2012-03-02 Charles Kerr <charles.kerr@canonical.com> + + use g_return_if_fail() instead of g_assert() in the new code + +2012-03-02 Charles Kerr <charles.kerr@canonical.com> + + remove duplicate timezone entries + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + rename dconflocations as location_menu_items + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + make update_timezone_menu_items() a void function; its args and return value were unused + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + make the private fields 'conf' and 'gconf' static and init them to NULL + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + more use of g_clear_object() where appropriate + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + in dispose(), add g_clear_object() for priv.ido_calendar and priv.service_proxy_cancel + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + tweak: use g_clear_object() in dispose() + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + fix potential minor memory leak in update_timezone_menu_items() + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + remove unnecessary strdup+free in update_appointment_menu_items() + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + fix memory leak in update_appointment_menu_items() + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + fix memory leaks in day_selected_double_click_cb() + +2012-03-01 Charles Kerr <charles.kerr@canonical.com> + + extract method on common code + 2012-02-17 Ted Gould <ted@gould.cx> 0.3.90 |