aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | copyeditingCharles Kerr2012-07-051-4/+4
| | |
* | | Remove the etched border effect for user icons.Charles Kerr2012-07-051-346/+15
| | | | | | | | | | | | | | | They looked good before, but look cluttered with the new reduced icon size, and lessening clutter was the reason for shrinking the icons in the first place.
* | | reduce the user icon size from 32 to 24 pixels as per mpt's request.Charles Kerr2012-07-051-2/+4
| | |
* | | don't cache the DisplayManager seat proxy.Charles Kerr2012-07-041-49/+37
| | |
* | | in gtk-logout-helper, rename 'Shut Down' to 'Switch Off' to match the ↵Charles Kerr2012-07-041-3/+3
| | | | | | | | | | | | session indicator's text
* | | add a g_debug message to say which command is being invoked by ↵Charles Kerr2012-07-041-0/+1
| | | | | | | | | | | | g_spawn_command_line_async()
* | | Restore the ellipsis to the 'System Settings' label as per mpt's suggestion.Charles Kerr2012-06-281-1/+1
| | | | | | | | | | | | | | | Further reading: <https://bugzilla.gnome.org/show_bug.cgi?id=169447>
* | | copyeditingCharles Kerr2012-06-203-6/+4
| | |
* | | copyeditingCharles Kerr2012-06-191-9/+14
| | |
* | | the default value for show-real-name-on-panel should be 'false'Charles Kerr2012-06-191-1/+1
| | |
* | | Use "g_str_has_prefix(str,foo)" instead of "strlen(str)>N && !memcmp(str,foo,N)"Charles Kerr2012-06-191-2/+1
| | |
* | | action_func_spawn_async() doesn't need a varargs argument anymore.Charles Kerr2012-06-191-9/+4
| | |
* | | in build_user_menuitems(), don't leak the users GList even if user switching ↵Charles Kerr2012-06-191-1/+2
| | | | | | | | | | | | isn't allowed
* | | SessionMenuMgr shouldn't leak its user_menuitems GSListCharles Kerr2012-06-191-0/+3
| | |
* | | take a ref on the session_dbus passed into SessionMenuMgr's constructor.Charles Kerr2012-06-191-1/+2
| | |
* | | SessionMenuMgr should own its toplevel menuitem.Charles Kerr2012-06-193-28/+43
| | |
* | | clearing house: the remainder of bugfixes & readability changesCharles Kerr2012-06-1810-422/+441
| | |
* | | copyediting: remove a lot of trailing spacesCharles Kerr2012-06-181-62/+65
| | |
* | | copyediting: remove trailing spaces; fix tab damageCharles Kerr2012-06-181-13/+13
| | |
* | | handle fringe case where GetRealUserName is called before the username's ↵Charles Kerr2012-06-181-16/+13
| | | | | | | | | | | | been set -- send an empty string rather than NULL s.t. the client doens't get an '[Invalid UTF-8]' string
* | | a step in merging the two menus: consolidate & clean up the code in ↵Charles Kerr2012-06-178-924/+716
| | | | | | | | | | | | session-menu-mgr
* | | a step in merging the two menus: merge the DeviceMenuMgr and UserMenuMgr ↵Charles Kerr2012-06-159-1075/+947
| | | | | | | | | | | | classes into a single SessionMenuMgr class
* | | right-align the 'currently logged in' checkmark as per mpt's 12.10 specCharles Kerr2012-06-141-8/+7
| | |
* | | a step in merging the two menus: initial merge of the two menusCharles Kerr2012-06-146-60/+50
| | |
* | | bind the IndicatorObjectEntry's label's visibility to the the setting in ↵Charles Kerr2012-06-141-12/+8
| | | | | | | | | | | | show-real-name-on-panel
* | | remove the use-username-in-switch-item property; it's no longer spec'edCharles Kerr2012-06-148-151/+4
| | |
* | | a step in merging the two menus: in indicator-session, use one ↵Charles Kerr2012-06-142-130/+65
| | | | | | | | | | | | IndicatorObjectEntry instead of two
* | | a step in merging the two menus: remove the 'should show user menu' flagCharles Kerr2012-06-147-146/+14
| | |
* | | in copy_proxy_properties(), ensure that the 'changed-properties' variant ↵Charles Kerr2012-06-141-1/+4
| | | | | | | | | | | | that we emit isn't NULL
* | | use g_clear_object()Charles Kerr2012-06-142-36/+14
| | |
* | | in user_widget_property_update(), remove a g_message() that shouldn't've ↵Charles Kerr2012-06-141-2/+0
| | | | | | | | | | | | been committed
* | | in user_widget_init(), remove unused variable 'padding'Charles Kerr2012-06-131-6/+0
| | |
* | | in user-widget.c, remove unused function user_widget_button_release_event()Charles Kerr2012-06-131-18/+1
| | |
* | | Don't use all the new users that we get told about.Charles Kerr2012-06-133-59/+97
| | | | | | | | | | | | | | | The issue is fringe cases where we get notified about a user we don't want to show, such as lightdm showing up after we've switched to the greeter. Instead, let's ask org.freedesktop.Accounts for a fresh list of users so that it can apply its internal filters to the user list.
* | | fix a spurious call to g_error_free() in indicator_session_init()Charles Kerr2012-06-131-2/+2
| | |
* | | Have the menuitem respond to changes in the AccountsUser's ICON propertyCharles Kerr2012-06-131-6/+21
| | |
* | | Have the user widget respond to changes in the LOGGED_IN and ICON propertiesCharles Kerr2012-06-132-76/+100
| | |
* | | use GDBus in users-service-dbus.c... major rewrite here.Charles Kerr2012-06-1215-924/+1833
| | |
* | | properly respond to changes in the menuitem's USER_ITEM_PROP_LOGGED_IN propertyCharles Kerr2012-06-121-17/+16
| | |
* | | use gdbus-codegen for the UPower dbus interactionCharles Kerr2012-06-092-136/+99
| | |
* | | start grouping Admin, Account-Switching, and Session items as per the 12.10 specCharles Kerr2012-06-051-28/+35
| | |
* | | Add the 'About This Computer' and 'Ubuntu Help' menuitems as per the 12.10 specCharles Kerr2012-06-051-45/+62
| | |
* | | remove the attached devices menuitem; it's no longer in the specCharles Kerr2012-06-051-15/+0
| | |
* | | fix tab damage in device-menu-mgr.cCharles Kerr2012-06-051-224/+166
| | |
* | | remove unnecessary prototypesCharles Kerr2012-06-051-30/+17
| | |
* | | extract methods to reduce duplicate code in handling dbus notifications that ↵Charles Kerr2012-06-051-82/+59
| | | | | | | | | | | | can_suspend, allow_suspend, can_hibernate, or allow_hibernate flags have changed
* | | bugfix: in machine_sleep_with_context(), don't call the proxy method if we ↵Charles Kerr2012-06-051-12/+10
| | | | | | | | | | | | don't have a proxy
* | | constify the machine_sleep_with_context() APICharles Kerr2012-06-051-12/+10
| | |
* | | make lock_menuitem an instance variable rather than a global one so that its ↵Charles Kerr2012-06-051-10/+9
| | | | | | | | | | | | pointer values won't persist between test sessions. Woot, last global\!
* | | make suspend_call and hibernate_call instance variables rather than global ↵Charles Kerr2012-06-051-9/+11
| | | | | | | | | | | | ones so that their pointer values won't persist between test sessions