summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* GnomeRROutputInfo: rename boolean accessorsgobject-gnomerrGiovanni Campagna2011-01-062-6/+6
| | | | | Rename get_connected() to is_connected() and get_active() to is_active(), following the normal convention.
* Disallow null filenames passed to gnome_rr_config_load_filename()Federico Mena Quintero2011-01-051-4/+10
| | | | | | | This also fixes a leak when the default intended filename was generated on-the-fly. Signed-off-by: Federico Mena Quintero <federico@gnome.org>
* Make the signal be GnomeRRScreen::changed, not screen-changed, to match the ↵Federico Mena Quintero2011-01-051-1/+1
| | | | | | vmethod name Signed-off-by: Federico Mena Quintero <federico@gnome.org>
* Turn the RANDR version checks into macrosFederico Mena Quintero2011-01-051-12/+15
| | | | | | | | This makes them less error-prone to use. Also, fixes the master check for RANDR 1.2 in gnome_rr_screen_initable_init(), which wouldn't handle RANDR versions above 1.x. Signed-off-by: Federico Mena Quintero <federico@gnome.org>
* Update GnomeRRConfigGiovanni Campagna2010-11-283-46/+38
| | | | | | | | | Added two public methods, gnome_rr_config_load_current and gnome_rr_config_load_filename, that allow initialization of the config (creating a new one with g_object_new results in an empty one). As a result, GnomeRRConfig is no more a GInitable and the :current property is gone.
* Update GnomeRRScreenGiovanni Campagna2010-11-282-94/+121
| | | | | | | | | Incorporate Federico's advice from bug 630913, including: - store priv as a local variable - chain up in finalize (this was actually a bug) - make :gdk-screen readwrite - add a ::changed vmethod for the signal - remove the callback in gnome_rr_screen_new, and drop gnome_rr_screen_destroy
* Turn GnomeRRConfig and GnomeOutputInfo into GObjectsGiovanni Campagna2010-11-289-600/+947
| | | | | | | | | | | | | | For easier binding and introspectability, rework GnomeRRConfig and GnomeOutputInfo to be GObjects (GInitables, actually) instead of boxed types. This commit *does* break API, as previous API just accessed fields in the public structs, while now everything has been moved to private structures and accessors must be used. Also, rework GnomeRRLabeler to use both a public and a private structure, so that gobject-introspection can find instance/class sizes. Modifications to gnome-control-center and gnome-settings-daemon will follow. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Add support for GObjectIntrospectionGiovanni Campagna2010-11-289-41/+194
| | | | | | | | | Turned all GnomeRR structures into boxed types, then added the needed annotations and the Makefile.am bits. Does not yet include API changes, but should bind (awfully) all of libgnome-desktop. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Turn GnomeRRScreen into a GObjectGiovanni Campagna2010-11-284-132/+308
| | | | | | | | | | Rework GnomeRRScreen so that it is a full GObject, and all its data is moved to GnomeRRScreenPrivate. GObject's are more supported when it comes to introspection and bindings, in particular wrt constructors. Therefore, this is a necessary step for useful introspection generation. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Remove gnome-aboutWilliam Jon McCann2010-11-2623-3065/+2
| | | | | The System Information panel in the System Settings will provide similar functionality.
* Fix wrong attribution in NEWS fileBastien Nocera2010-11-251-1/+1
|
* Post-release version bump to 2.91.4Bastien Nocera2010-11-251-1/+1
|
* 2.91.3GNOME_DESKTOP_2_91_3Bastien Nocera2010-11-251-0/+10
|
* Add object to monitor system timezone filesBastien Nocera2010-11-253-1/+241
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=626346
* gnome-bg: Tweak a bit 63c36f78Vincent Untz2010-11-251-22/+32
| | | | No real change, I just wanted to cleanup the code a bit.
* gnome-bg: Cache resized wallpaper to help CPU at startupDidier Roche2010-11-251-39/+199
| | | | | | | | | | | Resized and transformed wallpapers are stored in ~/.cache/wallpaper/. The cache is refreshed for each new current wallpaper depending on the resolution or transformation, and each time the source image is refreshed. The source image format is preserved. https://bugzilla.gnome.org/show_bug.cgi?id=608419
* Added Brazilian Portuguese translationMarcelo Rodrigues2010-11-241-0/+1177
|
* Added pt_BR to Makefile.amDjavan Fagundes2010-11-241-1/+1
|
* rr: unset primary on displays that are offWilliam Jon McCann2010-11-231-2/+4
|
* Updated Thai translation.Theppitak Karoonboonyanan2010-11-231-79/+55
|
* rr: add api for ensuring a primary display is set in configWilliam Jon McCann2010-11-222-0/+65
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=635455
* Added UG translationGheyret T.Kenji2010-11-201-2/+2
|
* Remove gconf-2.0 from pkg-config fileVincent Untz2010-11-171-1/+1
| | | | We don't have gconf anymore in the public headers.
* release: post-release bump to 2.91.3Rodrigo Moya2010-11-171-1/+1
|
* release: 2.91.2GNOME_DESKTOP_2_91_2Rodrigo Moya2010-11-171-0/+18
|
* Fix translations which do not respect python variable namesClaude Paroz2010-11-167-13/+13
| | | | This is a side-effect of #519869. Fixes #628919.
* Added UG translationGheyret T.Kenji2010-11-131-506/+446
|
* docs: Update generated files to match latest changesBastien Nocera2010-11-112-127/+147
|
* docs: Fix include path for API docsBastien Nocera2010-11-111-1/+1
|
* Fix possible double-free when destroying private windowsBastien Nocera2010-11-111-0/+5
| | | | | | | | This could cause free'ing random data when the members of ->windows were destroyed, but ->windows itself wasn't. As it was != NULL, we'd be free memory that wouldn't belong to us anymore. https://bugzilla.gnome.org/show_bug.cgi?id=634534
* Revert "Turn GnomeRRScreen into a GObject"Giovanni Campagna2010-11-094-308/+132
| | | | This reverts commit 4d2a27d55bcf9bb8de170ae6c6540724125aafa3.
* Revert "Add support for GObjectIntrospection"Giovanni Campagna2010-11-099-193/+40
| | | | This reverts commit cad94246fb5be76482212407a380cd75f9e7b932.
* Revert "Turn GnomeRRConfig and GnomeOutputInfo into GObjects"Giovanni Campagna2010-11-099-914/+574
| | | | | | This reverts commit 139ac9d3510767444e425366594f7e7e6bb5c1f8. I messed with git push. Really, I promise I will not commit a patch without reviewing it!
* Fix a typo in last commit.Giovanni Campagna2010-11-091-1/+1
| | | | | Of course, install folder is libgnome-desktop, not libgnome-destkop. Sorry for the noise.
* Turn GnomeRRConfig and GnomeOutputInfo into GObjectsGiovanni Campagna2010-11-099-574/+914
| | | | | | | | | | | | | | For easier binding and introspectability, rework GnomeRRConfig and GnomeOutputInfo to be GObjects (GInitables, actually) instead of boxed types. This commit *does* break API, as previous API just accessed fields in the public structs, while now everything has been moved to private structures and accessors must be used. Also, rework GnomeRRLabeler to use both a public and a private structure, so that gobject-introspection can find instance/class sizes. Modifications to gnome-control-center and gnome-settings-daemon will follow. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Add support for GObjectIntrospectionGiovanni Campagna2010-11-099-40/+193
| | | | | | | | | Turned all GnomeRR structures into boxed types, then added the needed annotations and the Makefile.am bits. Does not yet include API changes, but should bind (awfully) all of libgnome-desktop. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Turn GnomeRRScreen into a GObjectGiovanni Campagna2010-11-094-132/+308
| | | | | | | | | | Rework GnomeRRScreen so that it is a full GObject, and all its data is moved to GnomeRRScreenPrivate. GObject's are more supported when it comes to introspection and bindings, in particular wrt constructors. Therefore, this is a necessary step for useful introspection generation. https://bugzilla.gnome.org/show_bug.cgi?id=630913
* Move include files to libgnome-desktop/Giovanni Campagna2010-11-0919-34/+26
| | | | | | | | | gobject-introspection requires all header and source files to be defined in one place. This is one way to achieve that, without using non recursive automake. Also, remove the outdated references to libgnome and libgnomeui https://bugzilla.gnome.org/show_bug.cgi?id=630913
* release: post-release bump to 2.91.2Tomas Bzatek2010-11-091-1/+1
|
* release: 2.91.1GNOME_DESKTOP_2_91_1Tomas Bzatek2010-11-091-0/+23
|
* gnome-bg: Port to GSettingsTomas Bzatek2010-11-095-215/+149
| | | | | | This also introduces API break for loading/saving settings. See bug 626021 for details.
* Updated Catalan (Valencian) translationCarles Ferrando2010-10-291-23/+86
|
* Update Persian translationMahyar Moghimi2010-10-271-2/+2
|
* Update Persian translationMahyar Moghimi2010-10-271-417/+224
|
* bgo#629168 - Don't read past the end of a stringFederico Mena Quintero2010-10-261-1/+1
| | | | Signed-off-by: Federico Mena Quintero <federico@novell.com>
* Added sl for Slovenian translationMatej Urbančič2010-10-181-1/+1
|
* Updated Slovenian translationMatej Urbančič2010-10-181-0/+418
|
* Added sl for Slovenian translationMatej Urbančič2010-10-181-1/+1
|
* Updated Slovenian translationMatej Urbančič2010-10-181-0/+302
|
* Updated Slovenian translationMatej Urbančič2010-10-181-2/+1
|