Merge from default. Hope I did it right...
@@ -1,6 +1,7 @@
|
||||
syntax: glob
|
||||
|
||||
*~
|
||||
*.orig
|
||||
|
||||
CMakeFiles
|
||||
Makefile
|
||||
@@ -10,12 +11,14 @@ CMakeCache.txt
|
||||
Debug
|
||||
RelWithDebInfo
|
||||
MinSizeRel
|
||||
release
|
||||
Release
|
||||
|
||||
rtdata/rawtherapee.desktop
|
||||
rtengine/librtengine.a
|
||||
rtexif/librtexif.a
|
||||
rtgui/config.h
|
||||
rtgui/version.h
|
||||
rtgui/rawtherapee
|
||||
rtgui/rawtherapee.exe
|
||||
install_manifest.txt
|
||||
AboutThisBuild.txt
|
||||
|
@@ -1,3 +1,4 @@
|
||||
|
||||
Project initiator:
|
||||
|
||||
Gábor Horváth <hgabor@rawtherapee.com>
|
||||
@@ -18,6 +19,7 @@ Developement contributors, in last name alphabetical order:
|
||||
Ilia Popov
|
||||
Philip Rinn
|
||||
Jan Rinze
|
||||
Ben S.
|
||||
Andrey Skvortsov
|
||||
Fabio Suprani
|
||||
|
||||
|
@@ -1,14 +1,14 @@
|
||||
Branch: ${HG_BRANCH}
|
||||
Version: ${HG_VERSION}
|
||||
Changeset: ${HG_CHANGESET}
|
||||
Compiler: GCC ${GCC_VERSION}
|
||||
Processor: ${PROC_LABEL}
|
||||
System: ${SYSTEM}
|
||||
Bit depth: ${PROC_BIT_DEPTH}
|
||||
Gtkmm: V${GTKMM_VERSION}
|
||||
Build type: ${BUILD_TYPE}
|
||||
Build flags: ${CXX_FLAGS}
|
||||
Link flags: ${LFLAGS}
|
||||
OpenMP support: ${OPTION_OMP}
|
||||
MMAP support: ${WITH_MYFILE_MMAP}
|
||||
|
||||
Branch: ${HG_BRANCH}
|
||||
Version: ${HG_VERSION}
|
||||
Changeset: ${HG_CHANGESET}
|
||||
Compiler: GCC ${GCC_VERSION}
|
||||
Processor: ${PROC_LABEL}
|
||||
System: ${SYSTEM}
|
||||
Bit depth: ${PROC_BIT_DEPTH}
|
||||
Gtkmm: V${GTKMM_VERSION}
|
||||
Build type: ${BUILD_TYPE}
|
||||
Build flags: ${CXX_FLAGS}
|
||||
Link flags: ${LFLAGS}
|
||||
OpenMP support: ${OPTION_OMP}
|
||||
MMAP support: ${WITH_MYFILE_MMAP}
|
||||
|
||||
|
@@ -34,8 +34,10 @@ set (RTENGINE_CXX_FLAGS "-ffast-math -funroll-loops" CACHE STRING "Special compi
|
||||
include (ProcessorTargets.cmake)
|
||||
set (PROC_LABEL "undefined" CACHE STRING "Target processor label, unused if PROC_TARGET_NUMBER = 0 or 2")
|
||||
set (PROC_FLAGS "" CACHE STRING "Target processor related build/link flags")
|
||||
if ((NOT(PROC_TARGET_NUMBER NOT EQUAL 0)) AND (NOT(PROC_TARGET_NUMBER EQUAL 2)))
|
||||
if ((NOT(PROC_TARGET_NUMBER EQUAL 0)) AND (NOT(PROC_TARGET_NUMBER EQUAL 2)))
|
||||
set (PROC_LABEL ${PROC_TARGET_${PROC_TARGET_NUMBER}_LABEL})
|
||||
endif ()
|
||||
if (NOT(PROC_TARGET_NUMBER EQUAL 0))
|
||||
set (PROC_FLAGS ${PROC_TARGET_${PROC_TARGET_NUMBER}_FLAGS})
|
||||
endif ()
|
||||
|
||||
@@ -334,14 +336,14 @@ if(USE_CLANG)
|
||||
|
||||
SET (CMAKE_C_COMPILER ${CLANG_CMD})
|
||||
SET (CMAKE_C_FLAGS "") #-Wall
|
||||
SET (CMAKE_C_FLAGS_DEBUG "-g")
|
||||
SET (CMAKE_C_FLAGS_DEBUG "-O0 -g")
|
||||
SET (CMAKE_C_FLAGS_MINSIZEREL "-Os -DNDEBUG")
|
||||
SET (CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG")
|
||||
SET (CMAKE_C_FLAGS_RELWITHDEBINFO "-O2 -g")
|
||||
|
||||
SET (CMAKE_CXX_COMPILER ${CLANGPP_CMD})
|
||||
SET (CMAKE_CXX_FLAGS "") #-Wall
|
||||
SET (CMAKE_CXX_FLAGS_DEBUG "-g")
|
||||
SET (CMAKE_CXX_FLAGS_DEBUG "-O0 -g")
|
||||
SET (CMAKE_CXX_FLAGS_MINSIZEREL "-Os -DNDEBUG")
|
||||
SET (CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
||||
SET (CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g")
|
||||
@@ -359,6 +361,7 @@ endif(USE_CLANG)
|
||||
install (FILES AUTHORS.txt DESTINATION ${CREDITSDIR})
|
||||
install (FILES LICENSE.txt DESTINATION ${LICENCEDIR})
|
||||
install (FILES AboutThisBuild.txt DESTINATION ${CREDITSDIR})
|
||||
install (FILES RELEASE_NOTES.txt DESTINATION ${CREDITSDIR} OPTIONAL)
|
||||
|
||||
add_subdirectory (rtexif)
|
||||
add_subdirectory (rtengine)
|
||||
|
1280
LICENSE.txt
@@ -1,36 +1,37 @@
|
||||
# We have to create a label variable if we want to display it in AboutThisBuild.txt...
|
||||
|
||||
# This first choice should be used for official releases
|
||||
set(PROC_TARGET_1_LABEL generic x86 CACHE STRING "Processor-1 label - should be used for official Windows release")
|
||||
set(PROC_TARGET_1_FLAGS "-mtune=generic" CACHE STRING "Processor-1 flags")
|
||||
|
||||
# This second choice should be used for your own build only
|
||||
set(PROC_TARGET_2_LABEL native CACHE STRING "Processor-2 label - use it for your own build")
|
||||
set(PROC_TARGET_2_FLAGS "-march=native" CACHE STRING "Processor-2 flags")
|
||||
|
||||
# The later choices is intended to be used if you want to provide specific builds, but it should match your own processor
|
||||
# You can cross compile but you have to know what you're doing, this mechanism has not been designed for that
|
||||
|
||||
set(PROC_TARGET_3_LABEL pentium CACHE STRING "Processor-3 label - use it to provide a pentium optimized build, if you have this processor")
|
||||
set(PROC_TARGET_3_FLAGS "-march=pentium" CACHE STRING "Processor-3 flags")
|
||||
|
||||
set(PROC_TARGET_4_LABEL pentium4 CACHE STRING "Processor-4 label - use it to provide a pentium4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_4_FLAGS "-march=pentium4" CACHE STRING "Processor-4 flags")
|
||||
|
||||
set(PROC_TARGET_5_LABEL core2 CACHE STRING "Processor-5 label - use it to provide a core2 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_5_FLAGS "-march=core2" CACHE STRING "Processor-5 flags")
|
||||
|
||||
set(PROC_TARGET_6_LABEL corei7 CACHE STRING "Processor-6 label - use it to provide a corei7 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_6_FLAGS "-march=corei7" CACHE STRING "Processor-6 flags")
|
||||
|
||||
set(PROC_TARGET_7_LABEL athlon-4 CACHE STRING "Processor-7 label - use it to provide a athlon-4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_7_FLAGS "-march=athlon-4" CACHE STRING "Processor-7 flags")
|
||||
|
||||
set(PROC_TARGET_8_LABEL athlon64 CACHE STRING "Processor-8 label - use it to provide a athlon64 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_8_FLAGS "-march=athlon64 -mtune=athlon64" CACHE STRING "Processor-8 flags")
|
||||
|
||||
set(PROC_TARGET_9_LABEL phenomX4 CACHE STRING "Processor-9 label - use it to provide a phenomX4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_9_FLAGS "-march=amdfam10" CACHE STRING "Processor-9 flags")
|
||||
|
||||
#set(PROC_TARGET__LABEL procLabel CACHE STRING "Processor- label")
|
||||
#set(PROC_TARGET__FLAGS "procFlags" CACHE STRING "Processor- flags")
|
||||
# We have to create a label variable if we want to display it in AboutThisBuild.txt...
|
||||
|
||||
# This first choice should be used for official releases
|
||||
set(PROC_TARGET_1_LABEL generic x86 CACHE STRING "Processor-1 label - should be used for official Windows release")
|
||||
set(PROC_TARGET_1_FLAGS "-mtune=generic" CACHE STRING "Processor-1 flags")
|
||||
|
||||
# This second choice should be used for your own build only
|
||||
set(PROC_TARGET_2_LABEL native CACHE STRING "Processor-2 label - use it for your own build")
|
||||
set(PROC_TARGET_2_FLAGS "-march=native" CACHE STRING "Processor-2 flags")
|
||||
|
||||
# The later choices is intended to be used if you want to provide specific builds, but it should match your own processor
|
||||
# You can cross compile but you have to know what you're doing, this mechanism has not been designed for that
|
||||
|
||||
set(PROC_TARGET_3_LABEL pentium CACHE STRING "Processor-3 label - use it to provide a pentium optimized build, if you have this processor")
|
||||
set(PROC_TARGET_3_FLAGS "-march=pentium" CACHE STRING "Processor-3 flags")
|
||||
|
||||
set(PROC_TARGET_4_LABEL pentium4 CACHE STRING "Processor-4 label - use it to provide a pentium4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_4_FLAGS "-march=pentium4" CACHE STRING "Processor-4 flags")
|
||||
|
||||
set(PROC_TARGET_5_LABEL core2 CACHE STRING "Processor-5 label - use it to provide a core2 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_5_FLAGS "-march=core2" CACHE STRING "Processor-5 flags")
|
||||
|
||||
set(PROC_TARGET_6_LABEL corei7 CACHE STRING "Processor-6 label - use it to provide a corei7 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_6_FLAGS "-march=corei7" CACHE STRING "Processor-6 flags")
|
||||
|
||||
set(PROC_TARGET_7_LABEL athlon-4 CACHE STRING "Processor-7 label - use it to provide a athlon-4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_7_FLAGS "-march=athlon-4" CACHE STRING "Processor-7 flags")
|
||||
|
||||
set(PROC_TARGET_8_LABEL athlon64 CACHE STRING "Processor-8 label - use it to provide a athlon64 optimized build, if you have this processor")
|
||||
#set(PROC_TARGET_8_FLAGS "-march=athlon64 -mtune=athlon64" CACHE STRING "Processor-8 flags")
|
||||
set(PROC_TARGET_8_FLAGS "-mfpmath=sse -march=athlon64 -mtune=athlon64 -mmmx -msse -msse2 -mthreads -m64" CACHE STRING "Processor-8 flags")
|
||||
|
||||
set(PROC_TARGET_9_LABEL phenomX4 CACHE STRING "Processor-9 label - use it to provide a phenomX4 optimized build, if you have this processor")
|
||||
set(PROC_TARGET_9_FLAGS "-march=amdfam10" CACHE STRING "Processor-9 flags")
|
||||
|
||||
#set(PROC_TARGET__LABEL procLabel CACHE STRING "Processor- label")
|
||||
#set(PROC_TARGET__FLAGS "procFlags" CACHE STRING "Processor- flags")
|
||||
|
471
RELEASE_NOTES.txt
Normal file
@@ -0,0 +1,471 @@
|
||||
|
||||
RAWTHERAPEE 4.0.7 RELEASE NOTES
|
||||
-------------------------------
|
||||
|
||||
CAVEATS
|
||||
-------
|
||||
- Memory requirements
|
||||
Please read http://rawtherapee.com/blog/maximizing-memory-efficiency
|
||||
|
||||
- Differences between the preview and the output image
|
||||
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 the 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 rendered output.
|
||||
|
||||
For generic use in an sRGB workflow when the output target is web-based image display, it is recommended to use the default values of the Color/ICM toolset (Working Profile = sRGB, Output Profile = RT_sRGB).
|
||||
|
||||
Future releases of RawTherapee are planned to support a more comprehensive color-managed preview that will allow proofing with accurate visualization of the final output render based not only on the working space and monitor profiles, but also on the user-selected Output Profile and Output Gamma.
|
||||
|
||||
- Auto Levels behavior has changed
|
||||
The new algorithm drives the following parameters:
|
||||
Exposure compensation,
|
||||
Highlight recovery amount & threshold,
|
||||
Black level & shadow compression,
|
||||
RGB brightness,
|
||||
RGB contrast.
|
||||
|
||||
The profiles supplied with RawTherapee were changed to be compatible with the new Auto Levels logic, as in older profiles RGB contrast and brightness were preset to a fixed value. Old Tuned-# profiles have been removed.
|
||||
|
||||
- The new Exposure Compensation tag in thumbnail captions and in the file browser filter requires clearing of Rawtherapee's thumbnail cache (see Preferences > File Browser). If the thumbnail cache is not cleared, exposure compensation values will not be displayed in captions or recognized in filtering *for previously browsed images only*.
|
||||
|
||||
NEW FEATURES
|
||||
------------
|
||||
- New RGB curves,
|
||||
- New white balance presets for specific spectra,
|
||||
- New preview modes: red, green, blue, luminosity and Focus Mask (see which areas are in focus),
|
||||
- New Export Panel with Fast Export Options,
|
||||
- DCRAW updated to 9.12
|
||||
Support added for these cameras:
|
||||
Canon PowerShot S100
|
||||
Fujifilm X10
|
||||
Leica V-Lux 3
|
||||
Nikon 1
|
||||
Panasonic DMC-FZ4
|
||||
Panasonic DMC-GX1
|
||||
Samsung NX
|
||||
Samsung NX200
|
||||
Sony NEX-7
|
||||
- Enhanced color matrices and RT-specific input ICC profiles for the following cameras:
|
||||
Canon EOS 5D
|
||||
Canon PowerShot G10
|
||||
Nikon D3100
|
||||
- Additional crop ratios,
|
||||
- Additional output ICC profiles,
|
||||
- 1-click neutral setting for exposure values,
|
||||
- Exposure Compensation thumbnail caption and filter option in the file browser metadata filter,
|
||||
- Automatic display of this RELEASE_NOTES.txt file on the first run after a RawTherapee upgrade (e.g. 4.0.6 > 4.0.7)
|
||||
|
||||
|
||||
DOCUMENTATION
|
||||
-------------
|
||||
http://rawtherapee.com/blog/documentation
|
||||
|
||||
|
||||
REPORTING BUGS
|
||||
--------------
|
||||
http://rawtherapee.com/forum/viewtopic.php?f=3&t=3639#p25814
|
||||
|
||||
|
||||
LIVE CHAT WITH RT USERS
|
||||
-----------------------
|
||||
Network: freenode
|
||||
Server: chat.freenode.net
|
||||
Channel #rawtherapee
|
||||
http://webchat.freenode.net/?randomnick=1&channels=rawtherapee&prompt=1
|
||||
http://rawtherapee.com/forum/viewtopic.php?f=1&t=945#p4603
|
||||
|
||||
|
||||
REVISION HISTORY
|
||||
----------------
|
||||
The complete change log is available at
|
||||
http://code.google.com/p/rawtherapee/source/list
|
||||
|
||||
Changes since version 4.0.6:
|
||||
changeset: 1757:0d7bf6ba4a29
|
||||
tag: tip
|
||||
user: Hombre
|
||||
date: Tue Jan 31 00:46:04 2012 +0100
|
||||
description: Updated french strings and ben_pcc added to the Authors
|
||||
list (without his complete name as requested)
|
||||
|
||||
changeset: 1756:70397c2dea1c
|
||||
user: Michael Ezra
|
||||
date: Mon Jan 30 08:19:06 2012 -0500
|
||||
description: Fixing spelling errors in the release notes
|
||||
|
||||
changeset: 1755:4dc3126bca36
|
||||
user: Michael Ezra
|
||||
date: Sun Jan 29 16:25:27 2012 -0500
|
||||
description: Changes to ICM panel tooltips (see issue 1220)
|
||||
|
||||
changeset: 1754:6345b81b1d3d
|
||||
user: Michael Ezra
|
||||
date: Sun Jan 29 16:15:26 2012 -0500
|
||||
description: New feature: Export panel with Fast Export options.
|
||||
Fast Export options provide overrides to bypass time and
|
||||
resource consuming development settings and to run queue
|
||||
processing using the fast export settings instead. This
|
||||
method is recommended for quicker generation of lower
|
||||
resolution images when speed is a priority or when resized
|
||||
output is desired for one or many images without making
|
||||
modifications to their saved development parameters.
|
||||
|
||||
changeset: 1753:295cdd4f2329
|
||||
user: Michael Ezra
|
||||
date: Sun Jan 29 10:58:49 2012 -0500
|
||||
description: Fix for correctly reflecting Input Profile option in the UI.
|
||||
If auto-matched camera-specific ICC profile is not found
|
||||
Editor UI falls back to reflect "Camera standard" option.
|
||||
|
||||
changeset: 1752:68c38e327c03
|
||||
user: Michael Ezra
|
||||
date: Fri Jan 27 11:18:10 2012 -0500
|
||||
description: Monospace formatting for license and release notes in the
|
||||
splash screen.
|
||||
|
||||
changeset: 1751:fc727c21dbb3
|
||||
user: Michael Ezra
|
||||
date: Thu Jan 26 21:57:23 2012 -0500
|
||||
description: Renaming Caveats to Release Notes, adding text margins to
|
||||
the splash screen
|
||||
|
||||
changeset: 1749:1782f47ae9c9
|
||||
user: Hombre
|
||||
date: Wed Jan 25 23:14:59 2012 +0100
|
||||
description: CAVEATS file now word-wrapped in the Text area.
|
||||
|
||||
changeset: 1748:d4a2ae08dad5
|
||||
user: DrSlony
|
||||
date: Tue Jan 24 20:53:13 2012 +0000
|
||||
description: Fixed a problem where the CAVEATS.txt file was not copied
|
||||
into the compiled dir in Linux. Wrong capitalization in
|
||||
CMakeLists.txt. Issue 1206
|
||||
|
||||
changeset: 1746:f0dd4ae23d76
|
||||
user: Michael Ezra
|
||||
date: Wed Jan 25 22:47:18 2012 -0500
|
||||
description: Renaming profile Tuned-1 to Highkey-1
|
||||
|
||||
changeset: 1745:78318196e0de
|
||||
user: Hombre
|
||||
date: Wed Jan 18 00:20:19 2012 +0100
|
||||
description: Solving issue 1206: "Caveats file handling". May also solve
|
||||
issue 1089: "About RT: version window disappears". This
|
||||
patch also cleanup the Gamma tool a little bite. The
|
||||
CAVEATS.txt is optional and may be deleted in future
|
||||
release.
|
||||
|
||||
changeset: 1743:f55d097357ec
|
||||
user: Hombre
|
||||
date: Mon Jan 16 02:16:09 2012 +0100
|
||||
description: Fix a bug in the Adjuster class that were causing system
|
||||
Beep when reaching the limits, or at each move when the
|
||||
limits where below 1.0 (like for Distortion). Also fix the
|
||||
bug of the too small spin button (displaying not enough
|
||||
digits).
|
||||
|
||||
changeset: 1741:a51f811a74a9
|
||||
user: MichaelEzra
|
||||
date: Sun Jan 15 15:54:24 2012 -0500
|
||||
description: Preview modes (RGBLF) - adding icons and code optimization
|
||||
|
||||
changeset: 1740:357fb2cd4855
|
||||
user: Philippe Hupe
|
||||
date: Sun Jan 15 21:11:09 2012 +0100
|
||||
description: gtk-paste and gtk-copy icons were missing for both Dark and
|
||||
Light theme. They have been added.
|
||||
|
||||
changeset: 1739:0f2d5a79b325
|
||||
user: jdc
|
||||
date: Sun Jan 15 18:36:20 2012 +0100
|
||||
description: little correction for tags Output profiles
|
||||
|
||||
changeset: 1738:51f334300825
|
||||
user: jdc
|
||||
date: Sun Jan 15 18:32:37 2012 +0100
|
||||
description: modification of LUT of Output-profiles Output-gamma
|
||||
Free-Gamma, suppression of discontinuity
|
||||
|
||||
changeset: 1737:82d31eab71b1
|
||||
user: DrSlony
|
||||
date: Sat Jan 14 03:22:07 2012 +0000
|
||||
description: Updated Polish translations
|
||||
|
||||
changeset: 1736:2be56e1f68e1
|
||||
user: DrSlony
|
||||
date: Sat Jan 14 03:20:03 2012 +0000
|
||||
description: Modified the generateTranslationDiffs.sh file, runs ~34%
|
||||
faster
|
||||
|
||||
changeset: 1735:43ae4752ef6e
|
||||
user: Hombre
|
||||
date: Fri Jan 13 00:33:40 2012 +0100
|
||||
description: Updated french strings + added localisation for the "RGB
|
||||
Curves" tool
|
||||
|
||||
changeset: 1734:abfe22ba9400
|
||||
user: Hombre
|
||||
date: Wed Jan 11 02:06:23 2012 +0100
|
||||
description: Solving issue 1001: "Auto WB is saved as Custom in profile
|
||||
files" and 929: "Crash on image open with WB method = Auto"
|
||||
with a different workaround
|
||||
|
||||
changeset: 1733:03d19f04768d
|
||||
user: Hombre
|
||||
date: Wed Jan 11 01:50:10 2012 +0100
|
||||
description: Solving issue 1196: "Strange blown highlights with control
|
||||
cage tone curve in 32 bit release builds"
|
||||
|
||||
changeset: 1732:d25652ca80b3
|
||||
user: DrSlony
|
||||
date: Sun Jan 08 18:29:38 2012 +0000
|
||||
description: Set InputProfile=(CameraICC), WorkingProfile=sRGB,
|
||||
OutputProfile=RT_sRGB, GammaValue=2.22 and GammaSlope=4.5
|
||||
in all pp3 files.
|
||||
|
||||
changeset: 1731:6e231b0019ee
|
||||
user: DrSlony
|
||||
date: Sun Jan 08 17:35:33 2012 +0000
|
||||
description: Code cleanup: size() vs empty(), possible memleaks,
|
||||
initialization list order. On behalf of lebedev.ri, see
|
||||
issue 1195
|
||||
|
||||
changeset: 1730:d91fe5efdbb2
|
||||
user: DrSlony
|
||||
date: Mon Jan 02 15:00:48 2012 +0000
|
||||
description: Code cleanup: removal of unnessesary backslashes, committed
|
||||
on behalf of lebedev.ri, issue 1162
|
||||
|
||||
changeset: 1729:d267c081df9d
|
||||
user: DrSlony
|
||||
date: Mon Jan 02 13:53:27 2012 +0000
|
||||
description: Updated German translation on behalf of maweso, issue 1164
|
||||
|
||||
changeset: 1728:d14be2436fef
|
||||
user: DrSlony
|
||||
date: Mon Jan 02 13:44:44 2012 +0000
|
||||
description: Updated Czech translation on behalf of mkyral, issue 1180
|
||||
|
||||
changeset: 1727:1620adfa76ca
|
||||
user: Michael Ezra
|
||||
date: Mon Jan 02 00:10:55 2012 -0500
|
||||
description: Focus Mask (beta) and shortcuts for preview modes (issue
|
||||
1172)
|
||||
Preview Red channel: r
|
||||
Preview Blue channel: b
|
||||
Preview Green channel: g
|
||||
Preview Luminosity: v
|
||||
Preview Focus Mask: Shift-F
|
||||
Before-After: changed to Shift-B
|
||||
|
||||
changeset: 1726:513c6326fcdc
|
||||
user: Oliver Duis
|
||||
date: Sun Jan 01 20:37:34 2012 +0100
|
||||
description: New camera color profiles: Canon 5D, G10, Nikon D3100;
|
||||
DCRAW cleanups
|
||||
see issue 1186
|
||||
|
||||
changeset: 1725:2c1afe0fd883
|
||||
user: Oliver Duis
|
||||
date: Fri Dec 30 11:57:11 2011 +0100
|
||||
description: Update to DCRAW 9.12, adding new cameras
|
||||
see issue 1179
|
||||
|
||||
changeset: 1724:d14df629a92d
|
||||
user: DrSlony
|
||||
date: Wed Dec 28 19:05:15 2011 +0000
|
||||
description: Set all tools to SET by default in Preferences - Batch
|
||||
Processing, issue 1154
|
||||
|
||||
changeset: 1723:264a8634e1b3
|
||||
user: Hombre
|
||||
date: Wed Dec 28 12:23:56 2011 +0100
|
||||
description: Solving issue 1096: "Infinite loop when switching to
|
||||
before/after view"
|
||||
|
||||
changeset: 1722:449d8192217c
|
||||
user: DrSlony
|
||||
date: Tue Dec 27 20:00:47 2011 +0000
|
||||
description: Updated Nederlands translation on behalf of Paul
|
||||
Matthijsse, issue 1129, and ran generateTranslationDiffs
|
||||
|
||||
changeset: 1721:8478428eeb2e
|
||||
user: Hombre
|
||||
date: Mon Dec 26 14:24:33 2011 +0100
|
||||
description: Solving issue 1175: "Pls add the [Nikon's] file extension
|
||||
nrw to the "Parsed Extensions" list by default".
|
||||
|
||||
changeset: 1720:0c4018b036a8
|
||||
user: jdc
|
||||
date: Mon Dec 26 06:18:19 2011 +0100
|
||||
description: Change with ICC files
|
||||
|
||||
changeset: 1719:eb5b9a526b93
|
||||
user: jdc
|
||||
date: Sun Dec 25 09:11:26 2011 +0100
|
||||
description: suppress RT_Middle_gsRGB.icc
|
||||
|
||||
changeset: 1716:d6976838a524
|
||||
user: jdc
|
||||
date: Sun Dec 25 07:57:59 2011 +0100
|
||||
description: New Output Profiles see #issue1166
|
||||
|
||||
changeset: 1713:8ed4c2edc88f
|
||||
user: MichaelEzra
|
||||
date: Sat Dec 24 12:12:01 2011 -0500
|
||||
description: Fix for typo in comment
|
||||
|
||||
changeset: 1711:d3d4f7b28576
|
||||
user: MichaelEzra
|
||||
date: Sat Dec 24 12:04:22 2011 -0500
|
||||
description: Preview modes: R,B,G channels and Luminosity (issue 1167)
|
||||
|
||||
changeset: 1709:f3eea179e4de
|
||||
user: Hombre
|
||||
date: Sat Dec 24 15:57:48 2011 +0100
|
||||
description: Adding 2 lines forgotten in the previous WB patch: the LED
|
||||
profiles wasn't applied.
|
||||
|
||||
changeset: 1707:136288db1b0b
|
||||
user: DrSlony
|
||||
date: Mon Dec 19 20:48:54 2011 +0000
|
||||
description: Re-tagging 4.0.6, hopefully fixing the screwed up tag and
|
||||
aligning the latesttagdistance back with what it should be
|
||||
|
||||
changeset: 1705:40958891b202
|
||||
user: MichaelEzra
|
||||
date: Sun Dec 18 19:12:47 2011 -0500
|
||||
description: Neutral Levels & tooltips (issue 1161)
|
||||
|
||||
changeset: 1703:dca21e324066
|
||||
user: MichaelEzra
|
||||
date: Sat Dec 17 12:14:44 2011 -0500
|
||||
description: Major rework of headers inclusion style Part2 on behalf of
|
||||
lebedev.ri (issue 1079)
|
||||
|
||||
changeset: 1701:bc56188f39df
|
||||
user: MichaelEzra
|
||||
date: Sat Dec 17 12:08:57 2011 -0500
|
||||
description: Major rework of headers inclusion style on behalf of
|
||||
lebedev.ri (issue 1079)
|
||||
|
||||
changeset: 1699:d40209c8298b
|
||||
user: Emil Martinec
|
||||
date: Fri Dec 16 11:25:46 2011 -0600
|
||||
description: Bugfix :) for flat field correction bugfix :(
|
||||
|
||||
changeset: 1697:1a4d9d0f95fb
|
||||
user: Hombre
|
||||
date: Fri Dec 16 01:37:22 2011 +0100
|
||||
description: Patch from issue 1131: "Predefined White Balance values".
|
||||
|
||||
changeset: 1695:29639856f89a
|
||||
user: DrSlony
|
||||
date: Thu Dec 15 23:05:19 2011 +0000
|
||||
description: Removed rtstart reference from CMakeLists.txt, see issue
|
||||
1160
|
||||
|
||||
changeset: 1693:0afb790abada
|
||||
user: Emil Martinec
|
||||
date: Thu Dec 15 09:43:22 2011 -0600
|
||||
description: Implementing RGB curves.
|
||||
|
||||
changeset: 1691:218eac5d3a3b
|
||||
user: Emil Martinec
|
||||
date: Wed Dec 14 15:10:00 2011 -0600
|
||||
description: Bugfix for flatfield correction tool.
|
||||
|
||||
changeset: 1689:f08ce67af335
|
||||
user: Michael Ezra
|
||||
date: Mon Dec 12 15:58:20 2011 -0500
|
||||
description: Crop ratios: new values, code optimization (issue 1153)
|
||||
|
||||
changeset: 1687:2bfb4b5255a7
|
||||
user: Michael Ezra
|
||||
date: Fri Dec 09 21:17:37 2011 -0500
|
||||
description: Thumbnail Exif string: append exposure compensation (see
|
||||
issue 1150)
|
||||
In order for this option to work on previously browsed
|
||||
thumbs the cache must be cleared.
|
||||
(Please be sure to add to the build release notes)
|
||||
|
||||
changeset: 1685:78fee2fd065b
|
||||
user: Philippe Hupe
|
||||
date: Wed Dec 07 20:45:06 2011 +0100
|
||||
description: lock-off.png and lock-on.png icon were trimmed, the header
|
||||
height has been increased from 15 to 17 (issue 1116)
|
||||
|
||||
changeset: 1683:69b8bd8bb944
|
||||
user: MichaelEzra
|
||||
date: Tue Dec 06 19:33:37 2011 -0500
|
||||
description: File browser filter: Exposure Compensation (see issue 1003)
|
||||
In order to use this new filter with previously browsed
|
||||
thumbnails there are 2 options:
|
||||
Option 1. Global fix: clear cache/data folder
|
||||
Option 2. Local Fix: select thumbs, right click, Cache
|
||||
/Clear from cache - partial
|
||||
reload folder in file browser
|
||||
|
||||
changeset: 1681:c7337c4732d3
|
||||
user: DrSlony
|
||||
date: Sun Dec 04 10:40:24 2011 +0000
|
||||
description: Updated Japanese translation on behalf of a3novy, issue 1145
|
||||
|
||||
changeset: 1678:eda4134c4a2b
|
||||
user: Hombre
|
||||
date: Sat Dec 03 19:10:34 2011 +0100
|
||||
description: Solving issue 1084 (please confirm): "White rectangles
|
||||
appear in the final image file". See also issue 1112,
|
||||
comment 150.
|
||||
|
||||
changeset: 1676:643dcde3c0a2
|
||||
user: DrSlony
|
||||
date: Thu Dec 01 00:53:19 2011 +0000
|
||||
description: - language file changes,
|
||||
- profile changes,
|
||||
- tagged 4.0.6 (tag was lost)
|
||||
- line endings normalized to CR+LF in language files and
|
||||
postprocessing profiles
|
||||
- fixed capitalization of "raw"
|
||||
- patched generateTranslationDiffs.sh to properly sort
|
||||
numbered entries, e.g. 113 should be after 11 and 12, not
|
||||
between. Small change - now comments appear before the
|
||||
"!!!!!" section. Not worth worrying about imho. Also used
|
||||
sort's -unique capabilities to not unnecessarily spawn
|
||||
another process. See
|
||||
http://code.google.com/p/rawtherapee/source/detail?r=71bb39a
|
||||
b934e2e8654b35c1e36dcc1a572a26f03
|
||||
|
||||
changeset: 1667:112fc99c7186
|
||||
user: Emil Martinec
|
||||
date: Wed Nov 30 15:06:33 2011 -0600
|
||||
description: More fixes
|
||||
|
||||
changeset: 1653:5fc887f050d5
|
||||
user: DrSlony
|
||||
date: Tue Nov 29 20:06:42 2011 +0000
|
||||
description: Changed OutputProfile from 'No ICM: sRGB output' to
|
||||
'RT_sRGB'. Issue 1102, comments 34 onwards.
|
||||
|
||||
changeset: 1652:286a06753099
|
||||
user: MichaelEzra
|
||||
date: Mon Nov 28 21:40:22 2011 -0500
|
||||
description: Small fix to partialpaste/tone mapper
|
||||
|
||||
changeset: 1651:0032d73774a1
|
||||
user: DrSlony
|
||||
date: Tue Nov 29 00:42:56 2011 +0000
|
||||
description: Updated default and Polish translations with missing
|
||||
HISTORY_MSG_162, and updated all profiles to
|
||||
AppVersion=4.0.6
|
||||
|
||||
changeset: 1650:c13a0b4316f5
|
||||
user: DrSlony
|
||||
date: Mon Nov 28 23:50:28 2011 +0000
|
||||
description: Added tag 4.0.6 for changeset 71bb39ab934e
|
||||
|
||||
changeset: 1649:71bb39ab934e
|
||||
tag: 4.0.6
|
||||
user: DrSlony
|
||||
date: Mon Nov 28 23:49:05 2011 +0000
|
||||
description: Removed WindowsEnvironmentSetup.html Issue 1112 comments
|
||||
125 onwards.
|
||||
|
2
clean
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
rm -v CMakeCache.txt
|
||||
find -name CMakeCache.txt -delete
|
||||
rm -v install_manifest.txt
|
||||
|
||||
rm -vr ./CMakeFiles
|
||||
|
34
clean.bat
@@ -1,17 +1,17 @@
|
||||
del CMakeCache.txt
|
||||
del install_manifest.txt
|
||||
del ./CMakeFiles
|
||||
del ./rtengine/CMakeFiles
|
||||
rm -R ./rtexif/CMakeFiles
|
||||
rm -R ./rtgui/CMakeFiles
|
||||
rm ./cmake*
|
||||
rm ./rtengine/cmake*
|
||||
rm ./rtexif/cmake*
|
||||
rm ./rtgui/cmake*
|
||||
rm ./Makefile
|
||||
rm ./rtengine/Makefile
|
||||
rm ./rtexif/Makefile
|
||||
rm ./rtgui/Makefile
|
||||
rm ./rtengine/librtengine.so
|
||||
rm ./rtgui/rth
|
||||
rm ./rtexif/librtexif.a
|
||||
del CMakeCache.txt
|
||||
del install_manifest.txt
|
||||
del ./CMakeFiles
|
||||
del ./rtengine/CMakeFiles
|
||||
rm -R ./rtexif/CMakeFiles
|
||||
rm -R ./rtgui/CMakeFiles
|
||||
rm ./cmake*
|
||||
rm ./rtengine/cmake*
|
||||
rm ./rtexif/cmake*
|
||||
rm ./rtgui/cmake*
|
||||
rm ./Makefile
|
||||
rm ./rtengine/Makefile
|
||||
rm ./rtexif/Makefile
|
||||
rm ./rtgui/Makefile
|
||||
rm ./rtengine/librtengine.so
|
||||
rm ./rtgui/rth
|
||||
rm ./rtexif/librtexif.a
|
||||
|
BIN
doc/built/pdf/en/RawTherapeeManual_4.0.7.pdf
Normal file
36
header
@@ -1,18 +1,18 @@
|
||||
/*
|
||||
* This file is part of RawTherapee.
|
||||
*
|
||||
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
||||
*
|
||||
* RawTherapee is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RawTherapee is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/*
|
||||
* This file is part of RawTherapee.
|
||||
*
|
||||
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
||||
*
|
||||
* RawTherapee is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* RawTherapee is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
BIN
rtdata/iccprofiles/input/Canon EOS 5D.icc
Normal file
BIN
rtdata/iccprofiles/input/Canon PowerShot G10.icc
Normal file
BIN
rtdata/iccprofiles/input/Nikon D3100.icc
Normal file
BIN
rtdata/iccprofiles/output/RT_Medium_gsRGB.icc
Normal file
32
rtdata/icons/mime-types
Normal file
@@ -0,0 +1,32 @@
|
||||
# Add all image extensions supported by RT to this file, using the image/x- format.
|
||||
# Convert this human-readable list into a desktop file format using
|
||||
# tr -d '\n' < mime-types
|
||||
image/jpeg;
|
||||
image/png;
|
||||
image/tiff;
|
||||
image/x-adobe-dng;
|
||||
image/x-canon-cr2;
|
||||
image/x-canon-crf;
|
||||
image/x-canon-crw;
|
||||
image/x-fuji-raf;
|
||||
image/x-jpg;
|
||||
image/x-kodak-dcr;
|
||||
image/x-kodak-k25;
|
||||
image/x-kodak-kdc;
|
||||
image/x-mamiya-mef;
|
||||
image/x-minolta-mrw;
|
||||
image/x-nikon-nef;
|
||||
image/x-nikon-nrw;
|
||||
image/x-olympus-orf;
|
||||
image/x-panasonic-raw;
|
||||
image/x-panasonic-rw2;
|
||||
image/x-pentax-pef;
|
||||
image/x-pentax-raw;
|
||||
image/x-raw;
|
||||
image/x-rwz;
|
||||
image/x-samsung-srw;
|
||||
image/x-sony-arw;
|
||||
image/x-sony-sr2;
|
||||
image/x-sony-srf;
|
||||
image/x-tif;
|
||||
inode/directory;
|
@@ -1,16 +1,17 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Version=1.0
|
||||
Name=RawTherapee
|
||||
GenericName=RAW image editor
|
||||
GenericName[cs]=Editor RAW obrázků
|
||||
GenericName[fr]=Éditeur d'images RAW
|
||||
Comment=The RAW converter and digital photo processing software.
|
||||
GenericName=Raw photo editor
|
||||
GenericName[cs]=Editor raw obrázků
|
||||
GenericName[fr]=Éditeur d'images raw
|
||||
GenericName[pl]=Edytor zdjęć raw
|
||||
Comment=An advanced photo development program
|
||||
Comment[cs]=Program pro konverzi a zpracování digitálních RAW fotografií.
|
||||
Comment[fr]=Logiciel de conversion et de traitement de photos numériques de format RAW (but de capteur).
|
||||
Exec=${BINDIR}/rawtherapee
|
||||
Icon=rawtherapee.png
|
||||
Comment[pl]=Zaawansowany program do wywoływania zdjęć
|
||||
Icon=rawtherapee
|
||||
Exec=rawtherapee %f
|
||||
Terminal=false
|
||||
Categories=Graphics;Photography;GTK;
|
||||
|
||||
MimeType=image/jpeg;image/png;image/tiff;image/x-adobe-dng;image/x-canon-crw;image/x-canon-cr2;image/x-fuji-raf;image/x-kodak-dcr;image/x-kodak-kdc;image/x-kodak-k25;image/x-minolta-mrw;image/x-nikon-nef;image/x-olympus-orf;image/x-panasonic-raw;image/x-pentax-pef;image/x-sony-arw;image/x-sony-srf;image/x-sony-sr2;
|
||||
MimeType=image/jpeg;image/png;image/tiff;image/x-adobe-dng;image/x-canon-cr2;image/x-canon-crf;image/x-canon-crw;image/x-fuji-raf;image/x-jpg;image/x-kodak-dcr;image/x-kodak-k25;image/x-kodak-kdc;image/x-mamiya-mef;image/x-minolta-mrw;image/x-nikon-nef;image/x-nikon-nrw;image/x-olympus-orf;image/x-panasonic-raw;image/x-panasonic-rw2;image/x-pentax-pef;image/x-pentax-raw;image/x-raw;image/x-rwz;image/x-samsung-srw;image/x-sony-arw;image/x-sony-sr2;image/x-sony-srf;image/x-tif;inode/directory;
|
||||
Categories=Photography;Graphics;2DGraphics;RasterGraphics;GTK;
|
||||
|
BIN
rtdata/images/Dark/actions/gtk-copy.png
Normal file
After Width: | Height: | Size: 676 B |
BIN
rtdata/images/Dark/actions/gtk-paste.png
Normal file
After Width: | Height: | Size: 607 B |
BIN
rtdata/images/Dark/actions/previewmodeB-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeB-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeF-off.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Dark/actions/previewmodeF-on.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Dark/actions/previewmodeG-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeG-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeL-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeL-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeR-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Dark/actions/previewmodeR-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/gtk-copy.png
Normal file
After Width: | Height: | Size: 660 B |
BIN
rtdata/images/Light/actions/gtk-paste.png
Normal file
After Width: | Height: | Size: 612 B |
BIN
rtdata/images/Light/actions/previewmodeB-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeB-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeF-off.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Light/actions/previewmodeF-on.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
rtdata/images/Light/actions/previewmodeG-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeG-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeL-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeL-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeR-off.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
rtdata/images/Light/actions/previewmodeR-on.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 82 KiB |
@@ -1,18 +1,18 @@
|
||||
# All files in this directory are part of RawTherapee.
|
||||
#
|
||||
# Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
||||
#
|
||||
# RawTherapee is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# RawTherapee is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
# All files in this directory are part of RawTherapee.
|
||||
#
|
||||
# Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
||||
#
|
||||
# RawTherapee is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# RawTherapee is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
|
@@ -1,67 +1,67 @@
|
||||
This is the directory where all translations should go.
|
||||
|
||||
Translations are loaded for a given term at three levels:
|
||||
|
||||
1) default
|
||||
2) <Language>
|
||||
3) <Language> <Locale/Variant>
|
||||
|
||||
Developers who are adding a new feature should add new strings *only* to
|
||||
default. This file should be comprised of basic English text. It will be used
|
||||
in the event that there are no more specific languages specified. Once you
|
||||
have modified default, you should run ./tools/generateTranslationDiffs.sh (bash
|
||||
script) which will re-generate the localizations with commented out additions
|
||||
which you have just added.
|
||||
|
||||
Translators should in general implement the <Language> file. This is the
|
||||
generic translation for a given language; for instance, 'French', 'German',
|
||||
'Norsk', etc. If a string exists in this file (and the user has specified this
|
||||
language), then RawTherapee will override the value in default with the value
|
||||
in <Language>. Please note that the filename for this file must not contain
|
||||
any spaces.
|
||||
|
||||
In some situations, translations may differ based on region, locale, etc. A
|
||||
good example of this is the difference in spelling between 'color' (American
|
||||
English) and 'colour' (British English). In this case, the vast majority of
|
||||
strings are identical between English and English (UK); however, to keep the
|
||||
proper spelling in Britain, we have a locale file called 'English (UK)' which
|
||||
contains the differences between the two. RawTherapee uses locale files when:
|
||||
a) The user has selected a language which has a space in the file name
|
||||
b) There is another file which is identical to the locale file up until the
|
||||
space (i.e., 'English' to the locale file 'English (UK)').
|
||||
|
||||
If a locale file is used, it is applied in the same manner as <Language> is to
|
||||
default. The locale will override any keys present from the ones in the
|
||||
language file (and in turn, the default).
|
||||
|
||||
After the generateTranslationDiffs.sh has been run, all untranslated terms for
|
||||
a given language/locale will exist at the end of the file, prefixed by a !
|
||||
comment marker. Translators should go through this section of the file and
|
||||
translate all terms which they can. After you have translated a line, just
|
||||
remove the ! comment marker. Comments may be included using the #xx comment
|
||||
marker, where xx is a numeric prefix used to make sure automated sorting keeps
|
||||
comments in the right order, e.g.:
|
||||
#00 Comment line 1...
|
||||
#01 Line 2...
|
||||
#02 3, etc.
|
||||
|
||||
To create a file with only Latin characters from a non-Latin one, you can use
|
||||
sed with the "y" command. For example, to create a latin-only "Polish (Latin
|
||||
Characters)" file from the non-latin "Polish" one:
|
||||
sed 'y/ĄĆĘŁŃÓŚŹŻąćęłńóśźż/ACELNOSZZacelnoszz/' < Polish > "Polish (Latin Characters)"
|
||||
|
||||
You can use this Wikipedia "Character sets" category page to help you find all
|
||||
the characters in the language file you want to convert into Latin-only:
|
||||
http://en.wikipedia.org/wiki/Category:Character_sets
|
||||
|
||||
To convert all line terminators in all language files to CRLF (dos/mac/unix)
|
||||
you can use vim:
|
||||
a) cd ~/rawtherapee/rtdata/languages
|
||||
vim
|
||||
b) In vim, type:
|
||||
:set ffs=dos
|
||||
:args *
|
||||
:argdo w
|
||||
c) vim will process all language files. Once done, you can close it:
|
||||
:q
|
||||
|
||||
This is the directory where all translations should go.
|
||||
|
||||
Translations are loaded for a given term at three levels:
|
||||
|
||||
1) default
|
||||
2) <Language>
|
||||
3) <Language> <Locale/Variant>
|
||||
|
||||
Developers who are adding a new feature should add new strings *only* to
|
||||
default. This file should be comprised of basic English text. It will be used
|
||||
in the event that there are no more specific languages specified. Once you
|
||||
have modified default, you should run ./tools/generateTranslationDiffs (Bash
|
||||
script) which will re-generate the localizations with commented out additions
|
||||
which you have just added.
|
||||
|
||||
Translators should in general implement the <Language> file. This is the
|
||||
generic translation for a given language; for instance, 'French', 'German',
|
||||
'Norsk', etc. If a string exists in this file (and the user has specified this
|
||||
language), then RawTherapee will override the value in default with the value
|
||||
in <Language>. Please note that the filename for this file must not contain
|
||||
any spaces.
|
||||
|
||||
In some situations, translations may differ based on region, locale, etc. A
|
||||
good example of this is the difference in spelling between 'color' (American
|
||||
English) and 'colour' (British English). In this case, the vast majority of
|
||||
strings are identical between English and English (UK); however, to keep the
|
||||
proper spelling in Britain, we have a locale file called 'English (UK)' which
|
||||
contains the differences between the two. RawTherapee uses locale files when:
|
||||
a) The user has selected a language which has a space in the file name
|
||||
b) There is another file which is identical to the locale file up until the
|
||||
space (i.e., 'English' to the locale file 'English (UK)').
|
||||
|
||||
If a locale file is used, it is applied in the same manner as <Language> is to
|
||||
default. The locale will override any keys present from the ones in the
|
||||
language file (and in turn, the default).
|
||||
|
||||
After the generateTranslationDiffs has been run, all untranslated terms for
|
||||
a given language/locale will exist at the end of the file, prefixed by a !
|
||||
comment marker. Translators should go through this section of the file and
|
||||
translate all terms which they can. After you have translated a line, just
|
||||
remove the ! comment marker. Comments may be included using the #xx comment
|
||||
marker, where xx is a numeric prefix used to make sure automated sorting keeps
|
||||
comments in the right order, e.g.:
|
||||
#00 Comment line 1...
|
||||
#01 Line 2...
|
||||
#02 3, etc.
|
||||
|
||||
To create a file with only Latin characters from a non-Latin one, you can use
|
||||
sed with the "y" command. For example, to create a latin-only "Polish (Latin
|
||||
Characters)" file from the non-latin "Polish" one:
|
||||
sed 'y/ĄĆĘŁŃÓŚŹŻąćęłńóśźż/ACELNOSZZacelnoszz/' < Polish > "Polish (Latin Characters)"
|
||||
|
||||
You can use this Wikipedia "Character sets" category page to help you find all
|
||||
the characters in the language file you want to convert into Latin-only:
|
||||
http://en.wikipedia.org/wiki/Category:Character_sets
|
||||
|
||||
To convert all line terminators in all language files to CRLF (dos/mac/unix)
|
||||
you can use vim:
|
||||
a) cd ~/rawtherapee/rtdata/languages
|
||||
vim
|
||||
b) In vim, type:
|
||||
:set ffs=dos
|
||||
:args *
|
||||
:argdo w
|
||||
c) vim will process all language files. Once done, you can close it:
|
||||
:q
|
||||
|
||||
|
@@ -11,8 +11,8 @@
|
||||
MultiUser=true
|
||||
|
||||
[File Browser]
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;nrw;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
|
||||
[Output]
|
||||
PathTemplate=%p1/converted/%f
|
||||
|
@@ -11,8 +11,8 @@
|
||||
MultiUser=true
|
||||
|
||||
[File Browser]
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;nrw;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
|
||||
[Output]
|
||||
PathTemplate=%p1/converted/%f
|
||||
|
@@ -13,8 +13,8 @@ MultiUser=true
|
||||
UseSystemTheme=false
|
||||
|
||||
[File Browser]
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
ParseExtensions=arw;cr2;crf;crw;dng;jpg;kdc;mef;mrw;nef;nrw;orf;pef;png;raf;raw;rw2;rwz;sr2;srw;tif;tiff;
|
||||
ParseExtensionsEnabled=1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;
|
||||
|
||||
[Output]
|
||||
PathTemplate=%p1/converted/%f
|
||||
|
@@ -19,7 +19,7 @@ Black=0
|
||||
HighlightCompr=0
|
||||
HighlightComprThreshold=33
|
||||
ShadowCompr=50
|
||||
Curve=1;0;0;0.040000000000000015;0.029999999999999995;0.17684498029510265;0.21732319394192093;0.70232558139534862;0.74883720930232545;1;1;
|
||||
Curve=1;0;0;0.04;0.03;0.17684498029510265;0.21732319394192093;0.70232558139534862;0.74883720930232545;1;1;
|
||||
|
||||
[Channel Mixer]
|
||||
Red=100;0;0;
|
||||
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,21 +74,11 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
Threshold=50
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4276
|
||||
Height=2836
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,21 +74,11 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
Threshold=50
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4276
|
||||
Height=2836
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
163
rtdata/profiles/Highkey-1.pp3
Normal file
@@ -0,0 +1,163 @@
|
||||
|
||||
[Version]
|
||||
AppVersion=4.0.6
|
||||
Version=301
|
||||
|
||||
[General]
|
||||
Rank=0
|
||||
ColorLabel=0
|
||||
InTrash=false
|
||||
|
||||
[Exposure]
|
||||
Auto=true
|
||||
Clip=0
|
||||
Compensation=0
|
||||
Brightness=0
|
||||
Contrast=0
|
||||
Saturation=-10
|
||||
Black=0
|
||||
HighlightCompr=0
|
||||
HighlightComprThreshold=33
|
||||
ShadowCompr=50
|
||||
Curve=2;0.10500000000000001;0.25;0.75;15;60;30;-70;
|
||||
|
||||
[Channel Mixer]
|
||||
Red=100;0;0;
|
||||
Green=0;100;0;
|
||||
Blue=0;0;100;
|
||||
|
||||
[Luminance Curve]
|
||||
Brightness=0
|
||||
Contrast=5
|
||||
Saturation=-10
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=40
|
||||
LCurve=0;
|
||||
aCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[Sharpening]
|
||||
Enabled=false
|
||||
Method=usm
|
||||
Radius=0.5
|
||||
Amount=250
|
||||
Threshold=512
|
||||
OnlyEdges=false
|
||||
EdgedetectionRadius=1.9
|
||||
EdgeTolerance=1800
|
||||
HalocontrolEnabled=false
|
||||
HalocontrolAmount=85
|
||||
DeconvRadius=0.75
|
||||
DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
Strength=50
|
||||
ThreeChannels=false
|
||||
|
||||
[SharpenMicro]
|
||||
Enabled=false
|
||||
Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
Threshold=50
|
||||
|
||||
[Defringing]
|
||||
Enabled=false
|
||||
Radius=2
|
||||
Threshold=25
|
||||
|
||||
[Directional Pyramid Denoising]
|
||||
Enabled=false
|
||||
Luma=5
|
||||
Chroma=5
|
||||
Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
Highlights=10
|
||||
HighlightTonalWidth=80
|
||||
Shadows=10
|
||||
ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
Mult0=3
|
||||
Mult1=1
|
||||
Mult2=1
|
||||
Mult3=1
|
||||
Mult4=0.2
|
||||
|
||||
[HSV Equalizer]
|
||||
HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
HotDeadPixels=false
|
||||
HotDeadPixelThresh=40
|
||||
LineDenoise=0
|
||||
GreenEqThreshold=0
|
||||
CcSteps=1
|
||||
Method=amaze
|
||||
DCBIterations=2
|
||||
DCBEnhance=false
|
||||
ALLEnhance=false
|
||||
PreExposure=1
|
||||
PrePreserv=0
|
||||
PreBlackzero=0
|
||||
PreBlackone=0
|
||||
PreBlacktwo=0
|
||||
PreBlackthree=0
|
||||
PreTwoGreen=true
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -11,7 +11,7 @@ InTrash=false
|
||||
[Exposure]
|
||||
Auto=true
|
||||
Clip=0
|
||||
Compensation=-0
|
||||
Compensation=0.0
|
||||
Brightness=0
|
||||
Contrast=0
|
||||
Saturation=0
|
||||
@@ -74,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5745
|
||||
Green=1.0353332844067824
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -106,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -125,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1.0
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -202,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -74,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5745
|
||||
Green=1.0349999999999993
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -106,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -125,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1.0
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4276
|
||||
Height=2836
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -202,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=true
|
||||
@@ -97,15 +96,6 @@ Gamma=1.2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=true
|
||||
@@ -97,15 +96,6 @@ Gamma=1.2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,69 +106,22 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
OutputProfile=RT_sRGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|
@@ -9,17 +9,17 @@ ColorLabel=0
|
||||
InTrash=false
|
||||
|
||||
[Exposure]
|
||||
Auto=true
|
||||
Clip=0
|
||||
Auto=false
|
||||
Clip=0.0000
|
||||
Compensation=0
|
||||
Brightness=0
|
||||
Contrast=0
|
||||
Saturation=-10
|
||||
Saturation=0
|
||||
Black=0
|
||||
HighlightCompr=0
|
||||
HighlightComprThreshold=33
|
||||
ShadowCompr=50
|
||||
Curve=2;0.10500000000000001;0.25;0.75;15;60;30;-70;
|
||||
HighlightComprThreshold=0
|
||||
ShadowCompr=0
|
||||
Curve=0;
|
||||
|
||||
[Channel Mixer]
|
||||
Red=100;0;0;
|
||||
@@ -28,11 +28,11 @@ Blue=0;0;100;
|
||||
|
||||
[Luminance Curve]
|
||||
Brightness=0
|
||||
Contrast=5
|
||||
Saturation=-10
|
||||
Contrast=0
|
||||
Saturation=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=40
|
||||
SaturationLimit=50
|
||||
LCurve=0;
|
||||
aCurve=0;
|
||||
bCurve=0;
|
||||
@@ -41,7 +41,7 @@ bCurve=0;
|
||||
Enabled=false
|
||||
Method=usm
|
||||
Radius=0.5
|
||||
Amount=250
|
||||
Amount=125
|
||||
Threshold=512
|
||||
OnlyEdges=false
|
||||
EdgedetectionRadius=1.9
|
||||
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5000
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -86,7 +85,7 @@ Threshold=50
|
||||
|
||||
[Defringing]
|
||||
Enabled=false
|
||||
Radius=2
|
||||
Radius=2.0
|
||||
Threshold=25
|
||||
|
||||
[Directional Pyramid Denoising]
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -120,8 +110,8 @@ Radius=30
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4281
|
||||
H=2871
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
@@ -167,13 +157,13 @@ Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4281
|
||||
Height=2871
|
||||
Width=4276
|
||||
Height=2836
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=ProPhoto
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
@@ -181,8 +171,8 @@ GammaValue=2.22
|
||||
GammaSlope=4.5
|
||||
|
||||
[Directional Pyramid Equalizer]
|
||||
Enabled=true
|
||||
Mult0=3
|
||||
Enabled=false
|
||||
Mult0=1
|
||||
Mult1=1
|
||||
Mult2=1
|
||||
Mult3=1
|
||||
@@ -193,6 +183,11 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
@@ -53,6 +53,15 @@ DeconvAmount=75
|
||||
DeconvDamping=20
|
||||
DeconvIterations=30
|
||||
|
||||
[Vibrance]
|
||||
Enabled=false
|
||||
Pastels=50
|
||||
Saturated=50
|
||||
PSThreshold=75
|
||||
ProtectSkins=false
|
||||
AvoidColorShift=true
|
||||
PastSatTog=true
|
||||
|
||||
[SharpenEdge]
|
||||
Enabled=false
|
||||
Passes=2
|
||||
@@ -65,20 +74,10 @@ Matrix=false
|
||||
Strength=20
|
||||
Uniformity=50
|
||||
|
||||
[Color Boost]
|
||||
Amount=0
|
||||
AvoidColorClipping=false
|
||||
SaturationLimiter=false
|
||||
SaturationLimit=75
|
||||
|
||||
[White Balance]
|
||||
Setting=Camera
|
||||
Temperature=5200
|
||||
Green=1
|
||||
|
||||
[Color Shift]
|
||||
ChannelA=0
|
||||
ChannelB=0
|
||||
Temperature=5745
|
||||
Green=1.0
|
||||
|
||||
[Impulse Denoising]
|
||||
Enabled=false
|
||||
@@ -86,7 +85,7 @@ Threshold=50
|
||||
|
||||
[Defringing]
|
||||
Enabled=false
|
||||
Radius=2
|
||||
Radius=2.0
|
||||
Threshold=25
|
||||
|
||||
[Directional Pyramid Denoising]
|
||||
@@ -97,15 +96,6 @@ Gamma=2
|
||||
LumCurve=0;
|
||||
ChromCurve=0;
|
||||
|
||||
[Luminance Denoising]
|
||||
Enabled=false
|
||||
Radius=2.5
|
||||
EdgeTolerance=1500
|
||||
|
||||
[Chrominance Denoising]
|
||||
Enabled=false
|
||||
Amount=20
|
||||
|
||||
[Shadows & Highlights]
|
||||
Enabled=false
|
||||
HighQuality=false
|
||||
@@ -116,64 +106,17 @@ ShadowTonalWidth=80
|
||||
LocalContrast=0
|
||||
Radius=30
|
||||
|
||||
[Crop]
|
||||
Enabled=false
|
||||
X=0
|
||||
Y=0
|
||||
W=4276
|
||||
H=2836
|
||||
FixedRatio=false
|
||||
Ratio=3:2
|
||||
Orientation=Landscape
|
||||
Guide=None
|
||||
|
||||
[Coarse Transformation]
|
||||
Rotate=0
|
||||
HorizontalFlip=false
|
||||
VerticalFlip=false
|
||||
|
||||
[Common Properties for Transformations]
|
||||
AutoFill=false
|
||||
|
||||
[Rotation]
|
||||
Degree=0
|
||||
|
||||
[Distortion]
|
||||
Amount=0
|
||||
UseLensFun=false
|
||||
|
||||
[Perspective]
|
||||
Horizontal=0
|
||||
Vertical=0
|
||||
|
||||
[CACorrection]
|
||||
Red=0
|
||||
Blue=0
|
||||
|
||||
[Vignetting Correction]
|
||||
Amount=0
|
||||
Radius=50
|
||||
Strength=1
|
||||
CenterX=0
|
||||
CenterY=0
|
||||
|
||||
[HLRecovery]
|
||||
Enabled=false
|
||||
Method=Blend
|
||||
|
||||
[Resize]
|
||||
Enabled=false
|
||||
Scale=1
|
||||
AppliesTo=Cropped area
|
||||
Method=Bicubic
|
||||
DataSpecified=0
|
||||
Width=4276
|
||||
Height=2836
|
||||
|
||||
[Color Management]
|
||||
InputProfile=(camera)
|
||||
BlendCMSMatrix=false
|
||||
WorkingProfile=Adobe RGB
|
||||
InputProfile=(cameraICC)
|
||||
BlendCMSMatrix=true
|
||||
WorkingProfile=sRGB
|
||||
OutputProfile=RT_sRGB
|
||||
Gammafree=default
|
||||
Freegamma=false
|
||||
@@ -193,13 +136,12 @@ HCurve=0;
|
||||
SCurve=0;
|
||||
VCurve=0;
|
||||
|
||||
[RGB Curves]
|
||||
rCurve=0;
|
||||
gCurve=0;
|
||||
bCurve=0;
|
||||
|
||||
[RAW]
|
||||
DarkFrame=
|
||||
DarkFrameAuto=false
|
||||
FlatFieldFile=
|
||||
FlatFieldAutoSelect=false
|
||||
FlatFieldBlurRadius=32
|
||||
FlatFieldBlurType=Area Flatfield
|
||||
CA=false
|
||||
CARed=0
|
||||
CABlue=0
|
||||
|