CAVEATS file now word-wrapped in the Text area.

This commit is contained in:
natureh
2012-01-25 23:14:59 +01:00
parent cf9083bcbb
commit a159e295ce
2 changed files with 5 additions and 15 deletions

View File

@@ -1,24 +1,13 @@
RT 4.0.7 CAVEATS
RT 4.0.7 CAVEATS
Difference between Preview and Output image: Difference between Preview and Output image:
The color managed preview in RawTherapee is (and has always been) based The color managed preview in RawTherapee is (and has always been) based on image data in the Working Space profile. Although the actual preview is rendered using a monitor profile (or sRGB profile, if monitor profile is not specified), it does not reflect the Output profile & Output Gamma settings. This can lead to a slightly different output rendering when Working Space profile and Output Space profiles are not the same. A workaround is to set them to the same values to ensure the preview accurately reflects the final render output.
on image data in the Working Space profile. Although the actual preview
is rendered using a monitor profile (or sRGB profile, if monitor profile
is not specified), it does not reflect the Output profile & Output Gamma
settings. This can lead to a slightly different output rendering when
Working Space profile and Output Space profiles are not the same.
A workaround is to set them to the same values to ensure the preview
accurately reflects the final render output.
For generic use in sRGB workflow when output is targeting web-based image For generic use in sRGB workflow when output is targeting web-based image display, it is recommended to use the default values of the Color/ICM toolset.
display, it is recommended to use the default values of the Color/ICM toolset.
Future releases of RawTherapee are planned to support a more comprehensive Future releases of RawTherapee are planned to support a more comprehensive color-managed preview that will allow accurate visualization of the final output render based on not only the working space and monitor profiles, but also on user-selected Output color profile and Output Gamma.
color-managed preview that will allow accurate visualization of the final
output render based on not only the working space and monitor profiles,
but also on user-selected Output color profile and Output Gamma.

View File

@@ -171,6 +171,7 @@ Splash::Splash (Gtk::Window& parent) : Gtk::Dialog(M("GENERAL_ABOUT"), parent, t
caveatsSW = Gtk::manage (new Gtk::ScrolledWindow()); caveatsSW = Gtk::manage (new Gtk::ScrolledWindow());
Gtk::TextView *caveatsTV = Gtk::manage (new Gtk::TextView (textBuffer)); Gtk::TextView *caveatsTV = Gtk::manage (new Gtk::TextView (textBuffer));
caveatsTV->set_editable(false); caveatsTV->set_editable(false);
caveatsTV->set_wrap_mode(Gtk::WRAP_WORD);
caveatsSW->add(*caveatsTV); caveatsSW->add(*caveatsTV);
nb->append_page (*caveatsSW, M("ABOUT_TAB_CAVEATS")); nb->append_page (*caveatsSW, M("ABOUT_TAB_CAVEATS"));
} }