Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gnome-color-manager
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gnome-color-manager
Commits
62f5b5ec
Commit
62f5b5ec
authored
Feb 01, 2010
by
Richard Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release version 2.29.3
parent
2358f870
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
0 deletions
+52
-0
NEWS
NEWS
+42
-0
RELEASE
RELEASE
+8
-0
src/gcm-prefs.c
src/gcm-prefs.c
+2
-0
No files found.
NEWS
View file @
62f5b5ec
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
...
...
RELEASE
View file @
62f5b5ec
...
...
@@ -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:
...
...
src/gcm-prefs.c
View file @
62f5b5ec
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment