diff options
| author | Ted Gould <ted@gould.cx> | 2012-03-08 16:57:20 -0600 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2012-03-08 16:57:20 -0600 |
| commit | 3c12ac558602ec74e99cde48ddc6e59ea62cc6aa (patch) | |
| tree | 1f5963d3de20cf696660c1f601f51a4d73f3c16e /ChangeLog | |
| parent | ade1e121d41dd07ccc81a641862d81798e38b145 (diff) | |
| parent | b5c19e04a9b46cfe5f14110a307d37d77cfe29da (diff) | |
| download | ayatana-indicator-datetime-3c12ac558602ec74e99cde48ddc6e59ea62cc6aa.tar.gz ayatana-indicator-datetime-3c12ac558602ec74e99cde48ddc6e59ea62cc6aa.tar.bz2 ayatana-indicator-datetime-3c12ac558602ec74e99cde48ddc6e59ea62cc6aa.zip | |
* New upstream release.
* Make GSettings readonly to fix DConf service starting on boot
* Explicitly give types to GVariant Builder
* Confirm scanf usage for Coverity (LP: #943747)
* Remove unused code (LP: #943746)
* Fix timezone ordering in the menu (LP: #833325, LP: #833337)
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 |
