diff --git a/NEWS b/NEWS index 17dd126e1ae2bfdff02ea500c7724871c461e952..3f7b79bce1d9a89e5c0f2219f20e2fe292ca8c05 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,45 @@ +Version 2.29.3 +~~~~~~~~~~~~~~ +Released: 2010-02-01 + +* Translations + - Added Italian translation (Francesco Groccia) + - Updated Danish translation (Joe Hansen) + - Updated French translation (Claude Paroz) + - Updated German translation (Mario Blättermann) + - Updated Norwegian bokmål translation (Kjartan Maraas) + - Updated Portuguese translation (António Lima) + - Updated Russian translation (Alexandre Prokoudine) + - Updated Slovenian translation (Andrej Žnidaršič) + - Updated Swedish translation (Daniel Nylander) + +* New Features: + - Enable the rendering intent and default colorspace UI elements (Richard Hughes) + - Show whether the ICC profile has a VCGT tag in the UI (Richard Hughes) + - Filter out non RGB and CMYK color space profiles from the combo-boxes using a heuristic (Richard Hughes) + - Add a new DBus method GetProfileForWindow which can return a profile for a supplied XID (Richard Hughes) + - Add some new text and tooltips to the prefs dialog (Richard Hughes) + - Add per-user OSX ICC profiles at startup (Richard Hughes) + - Add OSX and Windows ICC profiles if they exist from mounted volumes. Fixes #607390 (Richard Hughes) + - Add a device profile entry of 'Other profile...' to be able to easily import a profile. Fixes #607389 (Richard Hughes) + - Add a precision GConf variable to control the time a calibration takes. Fixes #605558 (Richard Hughes) + - Screenscrape the Argyll output to better support other hardware devices. Fixes #605558 (Richard Hughes) + - Do not show the 'Fine tuning' expander by default, and have configuration in GConf (Richard Hughes) + +* Bugfix: + - Zero out GErrors after freeing. Fixes crash (Christian Hergert) + - Add gnome-desktop path as fallback for pci.ids (Frederic Crozat) + - Do not generate an error if a display profile does not have CLUT data (Richard Hughes) + - Add gcm-fix-profile to load and then re-save existing profiles using lcms (Richard Hughes) + - Fix compile when using an ld that defaults to --as-needed (Richard Hughes) + - Do not allow the colorspace combobox to be zero sized. Fixes #606484 (Richard Hughes) + - Make gcm-prefs a normal dialog rather than a modal dialog (Richard Hughes) + - Only scan ICC locations with hfs partition types for OSX and msdos/NTFS types for Windows (Richard Hughes) + - Make gcm-prefs startup a few hundred ms quicker by not loading the list of screens (Richard Hughes) + - Cache gnome_rr_screen_new and take 0.7 seconds off the start time (Richard Hughes) + - Don't resize the window on startup. Fixes #607391 (Richard Hughes) + - Update the Free Software Foundation address (Richard Hughes) + Version 2.29.2 ~~~~~~~~~~~~~~ Released: 2010-01-04 diff --git a/RELEASE b/RELEASE index 2893bf0cde19c1aa3dc76a69052e3f6310aae06a..e091cea47cacaaa2a0830d0a7df1a7bc634efa94 100644 --- a/RELEASE +++ b/RELEASE @@ -2,6 +2,14 @@ PackageKit Release Notes 1. Write NEWS entries for gnome-color-manager in the same format as usual. +Version 2.29.x +~~~~~~~~~~~~~~ +Released: 2010-xx-xx + +* Translations +* New Features: +* Bugfix: + git shortlog GNOME_COLOR_MANAGER_2_29_2.. | grep -i -v trivial | grep -v Merge | uniq > NEWS.new 3. Commit changes in gnome-color-manager git: diff --git a/src/gcm-prefs.c b/src/gcm-prefs.c index 7474c180388f343d75f81c4d13f9cd9f217cf807..d9ff8bf75260197296dcb6ae1cab0d4c595058a9 100644 --- a/src/gcm-prefs.c +++ b/src/gcm-prefs.c @@ -1380,9 +1380,11 @@ gcm_prefs_is_profile_suitable_for_device_type (GcmProfile *profile, GcmDeviceTyp if (profile_type_tmp != profile_type) goto out; +#if 0 /* no VCGT for a display (is a crap profile) */ if (profile_type_tmp == GCM_PROFILE_TYPE_ENUM_DISPLAY_DEVICE && !has_vcgt) goto out; +#endif /* success */ ret = TRUE;