aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * IndicatorDesktopShortcuts: free groupheaderMarco Trevisan (Treviño)2013-07-171-0/+2
|/
* Releasing 12.10.2+13.10.20130702-0ubuntu1 to ubuntu.Automatic PS uploader2013-07-021-0/+11
|\ | | | | | | Approved by PS Jenkins bot.
| * Releasing 12.10.2+13.10.20130702-0ubuntu1, based on r503Automatic PS uploader2013-07-021-0/+11
|/
* Add support for indicators to tell the panel where they'd like to appearLars Uebernickel2013-06-285-5/+68
|\ | | | | | | | | Merged from lp:~larsu/libindicator/positionable
| * indicator-object: g_return_if_fail -> g_return_val_if_failLars Uebernickel2013-06-281-1/+1
| |
| * README: include information about the new Position key in indicator filesLars Uebernickel2013-06-281-3/+10
| |
| * Allow indicators to tell the panel where they want to appearLars Uebernickel2013-06-284-2/+58
|/ | | | | | Only implemented in IndicatorNg right now, which gets that information from the indicator file.
* Releasing 12.10.2+13.10.20130628-0ubuntu1 to ubuntu.Automatic PS uploader2013-06-281-0/+12
|\ | | | | | | Approved by PS Jenkins bot.
| * Releasing 12.10.2+13.10.20130628-0ubuntu1, based on r501Automatic PS uploader2013-06-281-0/+12
|/
* Fixes a crasher bug in ng's parsing of the response to ↵Charles Kerr2013-06-271-6/+10
|\ | | | | | | | | | | org.freedesktop.DBus.StartServiceByName: The result's variant format is "(u)", not "u". Approved by Ted Gould, PS Jenkins bot.
| * in indicator_ng_service_started(), the result's variant type should be ↵Charles Kerr2013-06-271-6/+10
|/ | | | parsed as '(u)' rather than 'u'
* Releasing 12.10.2daily13.06.19.1-0ubuntu1 to ubuntu.Automatic PS uploader2013-06-191-0/+35
|\ | | | | | | Approved by PS Jenkins bot.
| * Releasing 12.10.2daily13.06.19.1-0ubuntu1, based on r499Automatic PS uploader2013-06-191-0/+35
|/
* Add missing conflicts/replacesDidier Roche2013-06-191-0/+2
|
* in indicator_ng_update_entry, unconditionally call set_label, set_icon, ↵Charles Kerr2013-06-171-6/+3
|\ | | | | | | | | | | set_accessible. Previously these were only called if the respective fields weren't NULL, which made it impossible to, for example, turn off a label or icon once it had been set. Approved by PS Jenkins bot, Ted Gould.
| * in indicator_ng_update_entry, unconditionally call set_label, set_icon, ↵Charles Kerr2013-06-161-6/+3
|/ | | | set_accessible. Previously these were only called if the respective fields weren't NULL, which made it impossible to, for example, turn off a label or icon once it had been set.
* indicator-ng: properly fail when keyfile doesn't exist.Lars Uebernickel2013-06-071-1/+1
|\ | | | | | | Approved by PS Jenkins bot, Ted Gould.
| * indicator-ng: properly fail when keyfile doesn't existLars Uebernickel2013-06-071-1/+1
| |
* | Remove the GTK2 version of the tools.Ted Gould2013-06-075-18/+2
|\ \ | |/ |/| | | Approved by PS Jenkins bot, Lars Uebernickel.
| * Gone.Ted Gould2013-06-071-1/+0
| |
| * Move the debugging environment variables into the other tools packageTed Gould2013-06-073-2/+2
| |
| * Don't build the GTK2 toolsTed Gould2013-06-072-15/+0
|/
* Merge lp:~larsu/call-ido-initLars Uebernickel2013-06-073-1/+6
|\
| * Revert r490Lars Uebernickel2013-06-041-1/+1
| | | | | | | | | | It's already applied on trunk
| * debian/control: add ido dependencyLars Uebernickel2013-05-271-0/+1
| |
| * Depend on ido and call ido_init() in indicator-loaderLars Uebernickel2013-05-232-1/+5
| | | | | | | | | | | | | | Ido provides the custom menu items that indicator services request. ido_init() registers those items with gtk+, so that they'll be created from gtk_menu_new_from_model().
| * indicator-image-helper: stop using deprecated gtk_icon_info_free()Lars Uebernickel2013-05-231-1/+1
| |
* | Merge lp:~larsu/new-indicator-file-formatLars Uebernickel2013-06-076-40/+106
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IndicatorNg: update indicator file format The old file format had some shortcomings: (1) It was impossible to efficiently reuse a menu for different profiles, because the profile name was implicit in the object path. The only way to do this was to export the same menu twice. Now, object paths have to be set explicitly in the indicator file. (2) The well-known dbus name of a service and the name of its service file were similar but slightly different (com.canonical.indicator.test vs com.canonical.test.indicator), which caused some confusion on when to use which. Now, the file name *is* the bus name, and the `BusName` key has been dropped. The new file format is documented in README.
| * | indicator-ng: fix crashLars Uebernickel2013-05-291-5/+2
| | |
| * | IndicatorNg: update indicator file formatLars Uebernickel2013-05-246-21/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old file format had some shortcomings: (1) It was impossible to efficiently reuse a menu for different profiles, because the profile name was implicit in the object path. The only way to do this was to export the same menu twice. Now, object paths have to be set explicitly in the indicator file. (2) The well-known dbus name of a service and the name of its service file were similar but slightly different (com.canonical.indicator.test vs com.canonical.test.indicator), which caused some confusion on when to use which. Now, the file name *is* the bus name, and the `BusName` key has been dropped. The new file format is documented in README.
| * | refactor indicator_ng_initable_initLars Uebernickel2013-05-241-22/+16
| |/ | | | | | | | | This makes the flow a bit more apparent. Also gets rid of a goto.
* | Releasing 12.10.2daily13.06.07-0ubuntu1 to ubuntu.Automatic PS uploader2013-06-071-0/+22
|\ \ | | | | | | | | | Approved by PS Jenkins bot.
| * | Releasing 12.10.2daily13.06.07-0ubuntu1, based on r492Automatic PS uploader2013-06-071-0/+22
|/ /
* | tests: fix compilation and make check.Marco Trevisan (Treviño)2013-05-2913-18/+1
|\ \ | | | | | | | | | Approved by PS Jenkins bot, Mathieu Trudel-Lapierre.
| * | tests: fix compilation and make check.Marco Trevisan (Treviño)2013-04-1213-18/+1
| | |
* | | IndicatorDesktopShortcuts: Use the proper way to create an AppInfo from ↵Marco Trevisan (Treviño)2013-05-291-23/+11
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | command-line Removed the hack that we used to create a .desktop app-info from a locally generated keyfile, using g_app_info_create_from_commandline instead. Fixes: https://bugs.launchpad.net/bugs/1168373. Approved by PS Jenkins bot, Ted Gould.
| * | | IndicatorDesktopShortcuts: some code cleanupMarco Trevisan (Treviño)2013-04-191-3/+1
| |/ /
| * | IndicatorDesktopShortcuts: initialize flags using the default defineMarco Trevisan (Treviño)2013-04-121-1/+2
| | |
| * | IndicatorDesktopShortcuts: Use the proper way to create an AppInfo from ↵Marco Trevisan (Treviño)2013-04-121-21/+10
| | | | | | | | | | | | | | | | | | | | | command-line We remove the workaround that we used to create a .desktop app-info from a locally generated keyfile.
* | | Migrating away from deprecated gtk_icon_info_free().Ted Gould2013-05-291-0/+6
|\ \ \ | |_|/ |/| | | | | Approved by PS Jenkins bot, Lars Uebernickel.
| * | Handling the deprecation of gtk_icon_info_free()Ted Gould2013-05-291-0/+6
|/ /
* | Use GIcon's serialization/deserialization interface for indicator icons so ↵William Hua2013-05-224-36/+68
|\ \ | | | | | | | | | | | | | | | that we can load icons as PNG data transmitted over the bus. Approved by Lars Uebernickel, PS Jenkins bot.
| * | Code clean-up.William Hua2013-05-191-31/+27
| | |
| * | Clean up error checking.William Hua2013-04-261-31/+22
| | |
| * | Don't free label and accessible_desc.William Hua2013-04-261-5/+2
| | |
| * | Remove changelog entry.William Hua2013-04-261-14/+0
| | |
| * | [ William Hua ]William Hua2013-04-225-26/+88
|/ / | | | | | | | | | | | | | | | | | | | | | | * debian/control: - Bump GLib to 2.37. * configure.ac: - Bump GLib to 2.37. * libindicator/indicator-image-helper.c: - Support display of GBytesIcons. * libindicator/indicator-ng.c: - Change action state icon type to GVariant.
* | Releasing 12.10.2daily13.05.02-0ubuntu1 to ubuntu.Automatic PS uploader2013-05-031-0/+6
|\ \ | | | | | | | | | Approved by PS Jenkins bot.
| * | Releasing 12.10.2daily13.05.02-0ubuntu1, based on r487Automatic PS uploader2013-05-021-0/+6
|/ /
* | Merge changelog changes from /13.04 branch for saucy.Mathieu Trudel-Lapierre2013-05-021-0/+32
|\ \ | | | | | | | | | Approved by PS Jenkins bot, Łukasz Zemczak.