Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
* [doc] Fix shell api docs buildCarlos Garcia Campos2010-05-251-1/+0
|
* Remove some code duplicationHib Eris2010-05-252-31/+1
|
* [windows] Fix localization on WindowsHib Eris2010-05-251-1/+30
| | | | Fixes bgo#610548
* [shell] Use async GDBus api in ev-applicationCarlos Garcia Campos2010-05-252-154/+271
|
* [shell] Make sure we have a proxy before using it in ev-media-player-keysCarlos Garcia Campos2010-05-251-3/+3
|
* [shell] Update to current GDBus APICarlos Garcia Campos2010-05-251-0/+3
| | | | And bump glib requirements
* [shell] Use g_bus_unwatch_proxy() instead of g_bus_unwatch_name()Carlos Garcia Campos2010-05-251-1/+1
|
* [shell] Fix build with dbus disabledCarlos Garcia Campos2010-05-251-1/+1
|
* [shell] Use g_bus_watch_proxy instead of g_bus_watch_name in media-keysCarlos Garcia Campos2010-05-253-114/+52
|
* [totem-screensaver] Use g_bus_watch_proxy instead of g_bus_watch_nameCarlos Garcia Campos2010-05-251-1/+1
| | | | | This way we don't need a GDBusConnection ref, since the proxy created by GDBus contains the shared connection.
* Use g_bus_own_name and register object on bus acquired callbackCarlos Garcia Campos2010-05-251-59/+60
| | | | | It simplifies the code and we don't need to take care about connection refcount
* Use always the session bus instead of starterCarlos Garcia Campos2010-05-251-1/+1
| | | | I'm not sure it makes sense using the system bus
* Update to current GDBus APICarlos Garcia Campos2010-05-252-2/+0
|
* [shell] Update ©Christian Persch2010-05-252-0/+2
|
* [shell] Remove DBUS conditionals from TotemScrsaverChristian Persch2010-05-251-1/+1
| | | | | | Now that GDBus is in GIO, there's no need to conditionally compile this code. Just allow passing %NULL for @connection in totem_scrsaver_new() to disable using DBUS to inhibit the screensaver.
* [shell] Use g_bus_watch_name_on_connection()Christian Persch2010-05-251-6/+6
| | | | We already have the bus connection here, so just pass it along.
* [shell] Pass the GDBusConnection to TotemScrsaverChristian Persch2010-05-251-2/+4
| | | | We already have a connection, so just pass it to TotemScrsaver.
* [shell] Pass the GDBusConnection to EvMediaPlayerKeysChristian Persch2010-05-253-26/+72
| | | | We already have a connection, so just pass it to EvMediaPlayerKeys.
* [shell] Fix name watchingChristian Persch2010-05-251-0/+3
|
* [shell] Fix for GDBus API changesChristian Persch2010-05-252-24/+24
|
* [shell] Don't autostart the daemon just to unregisterChristian Persch2010-05-251-1/+1
|
* [daemon] Add debug output to name watcherChristian Persch2010-05-251-0/+5
|
* [daemon] Return "" from RegisterDocument on new documentsChristian Persch2010-05-252-21/+43
| | | | So we can distinguish this case in ev_application_register_uri().
* [daemon] Add some debug logging to the daemonChristian Persch2010-05-251-0/+13
|
* [daemon] Fix RegisterDocumentChristian Persch2010-05-251-6/+4
| | | | | Was returning the wrong type. Also use g_set_prgname() in main().
* [build] Port to GDBus completed!Christian Persch2010-05-251-9/+8
| | | | Now remove libdbus and libdbus-glib dependency.
* [shell] Port EvMediaPlayerKeys to GDBusChristian Persch2010-05-251-79/+105
|
* [shell] Safely get the screen from the message argumentsChristian Persch2010-05-251-1/+3
| | | | Check for out-of-bounds.
* [shell] Save a strdupChristian Persch2010-05-251-1/+1
|
* [shell] Plug refcount leaksChristian Persch2010-05-252-3/+5
|
* [shell] Port EvApplication to GDBusChristian Persch2010-05-253-312/+200
|
* [daemon] Port to GDBusChristian Persch2010-05-253-291/+220
|
* [shell] Do not use the gconf gsettings backend any moreCarlos Garcia Campos2010-05-222-7/+1
| | | | | | | | - rename keys to follow gsettings name restrictions (s/_/-/) - remove the hardcoding of the gconf backend - use new gsettings macros as they have changed in glib 2.25.6 Based on patch by Matthias Clasen, see bug #619335.
* [shell] Use delay-apply mode for last_settingsCarlos Garcia Campos2010-05-221-0/+2
|
* [shell] Fix opening files with '#' in its nameCarlos Garcia Campos2010-05-111-1/+23
| | | | See bug #616515.
* [shell] Use G_DEFINE_INTERFACE and remove our own macroCarlos Garcia Campos2010-05-076-27/+27
|
* [shell] Remove fontconfig lock/unlock when showing the main windowCarlos Garcia Campos2010-05-071-4/+0
| | | | | Hopefully it's not needed anymore since there isn't loading text in the view.
* [shell] Fix typo: request_width -> request_heightEspeonEefi2010-05-041-1/+1
|
* [shell] Do not store metadata for files under /tmpCarlos Garcia Campos2010-05-041-22/+25
|
* [shell] Add saved documents with "save a copy" to recent file listCarlos Garcia Campos2010-05-041-0/+2
| | | | Fixes bug #617580.
* [shell] Invert colors of thumbnails when loading in inverted color modeCarlos Garcia Campos2010-05-041-4/+7
| | | | Based on patch by Juanjo Marín. Fixes bug #616111.
* [shell] Remove redundant checkCarlos Garcia Campos2010-05-041-1/+1
|
* Take default settings from last document openedCarlos Garcia Campos2010-05-041-12/+30
| | | | Fixes regression caused by migration to gio metadata. Bug #606090.
* [ev-daemon] Respect GNOME22_USER_DIR env variableCarlos Garcia Campos2010-05-031-8/+14
|
* Remove unneeded GLIB_CHECK_VERSION macrosCarlos Garcia Campos2010-05-031-2/+0
|
* [shell] Port override_restrictions gconf key to GSettingsCarlos Garcia Campos2010-05-032-14/+36
|
* Hide sidebar by default when window is emptyCarlos Garcia Campos2010-04-301-1/+1
|
* Remove GTK_CHECK_VERSION macrosCarlos Garcia Campos2010-04-301-4/+0
| | | | We already depend on gtk+ 2.20.0
* [shell] Add icons to the recent items, and always show them in menuChristian Persch2010-04-291-1/+19
| | | | Bug #614400.
* [shell] Ellipsise the recent action's labelChristian Persch2010-04-291-1/+23
| | | | Otherwise a long document name makes the menu oversized.