diff --git a/graphics/rawtherapee/Makefile b/graphics/rawtherapee/Makefile index aa8e4f87cf40..fbd1305a02df 100644 --- a/graphics/rawtherapee/Makefile +++ b/graphics/rawtherapee/Makefile @@ -1,204 +1,207 @@ PORTNAME= rawtherapee -PORTVERSION= 5.12 -PORTREVISION= 3 +PORTVERSION= 5.13 +PORTREVISION= 0 CATEGORIES= graphics MASTER_SITES= https://github.com/RawTherapee/RawTherapee/releases/download/${PORTVERSION}/ \ https://rawtherapee.com/shared/source/ \ LOCAL/mandree/ MAINTAINER= mandree@FreeBSD.org COMMENT= Powerful RAW image processing application WWW= https://www.rawtherapee.com/ LICENSE= GPLv3 LIB_DEPENDS= \ libcanberra-gtk3.so:audio/libcanberra-gtk3 \ libexiv2.so:graphics/exiv2 \ libexpat.so:textproc/expat2 \ libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float \ + libfmt.so:devel/libfmt \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libiptcdata.so:graphics/libiptcdata \ libjxl_threads.so:graphics/libjxl \ liblcms2.so:graphics/lcms2 \ liblensfun.so:graphics/lensfun \ libpng.so:graphics/png \ libsigc-2.0.so:devel/libsigc++20 \ libtiff.so:graphics/tiff # We cannot use gcc-c++11-lib as of 2024-02-23 because # Uses/compiler.mk would use the default compiler instead # as though USE_GCC=yes had been set. USES= autoreconf:build cmake desktop-file-utils compiler:c++11-lib gnome \ jpeg libtool:build localbase:ldflags pkgconfig tar:xz USE_GNOME= gtkmm30 librsvg2 CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \ -DCREDITSDIR="${DOCSDIR}" \ -DLICENCEDIR="${DOCSDIR}" \ -DDESKTOPDIR="${DESKTOPDIR}" \ -DDATADIR="${DATADIR}" \ -DCACHE_NAME_SUFFIX="" \ -Wno-dev \ + -DWITH_SYSTEM_FMT="ON" \ -DCMAKE_AR:FILEPATH=${_AR} \ -DCMAKE_RANLIB:FILEPATH=${_RANLIB} \ -DCMAKE_POLICY_DEFAULT_CMP0056:STRING=NEW -CONFIGURE_ENV+= AR=${_AR} RANLIB=${_RANLIB} # for embedded LibRaw +CONFIGURE_ENV+= AR=${_AR} RANLIB=${_RANLIB} # for embedded LibRaw # 3.4.x: CMAKE_EXE_LINKER_FLAGS is not passed to TRY_COMPILE by default # any more. The CMP0056 policy must be explicitly set to NEW to ensure # linker flags are passed. Else -lomp is not found with clang. # See: https://cmake.org/cmake/help/v3.4/policy/CMP0056.html CFLAGS+= -I${LOCALBASE}/include -fPIC ${_OPT_FLAGS} LDFLAGS+= -Wl,--as-needed -lpthread ${_OPT_FLAGS} # Fix : # Make sure that USE_BINUTILS override those in /usr/bin # which usually is first in the PATH, before ${LOCALBASE}/bin: # (For some reason, poudriere does not trigger this.) BINARY_ALIAS+= ar=${_AR} ranlib=${_RANLIB} OPTIONS_DEFINE= DOCS GCC LTO NATIVE OPTIONS_DEFINE_amd64= OPENMP OPTIONS_DEFINE_i386= OPENMP OPTIONS_DEFAULT= OPENMP GCC LTO GCC_DESC= Build with ports's GCC 14 (newer fail with libc++) NATIVE_DESC= Use -march=native (avoid for generic packages!) OPENMP_DESC= Enable OpenMP parallel processing (i386/amd64 only) LTO_CFLAGS= ${_LTO_FLAGS} LTO_LDFLAGS= ${_LTO_FLAGS} NATIVE_CMAKE_ON= -DPROC_TARGET_NUMBER="2" OPENMP_CMAKE_BOOL= OPTION_OMP OPENMP_LDFLAGS= -lm -lomp # For gcc-based builds, rawtherapee's cmake ends up with GCC's absolute path # in the CC/CXX variables, effectively disabling ccache. Wrap compiler in ccache explicitly. # CCACHE_ENABLED does not get enabled soon enough as of dceadb6b0011 in February 2024, # so we need to re-do what bsd.ccache.mk does. # See also https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277204 # NB: When changing this, make sure that the compiler is still wrapped by ccache! .if "${WITH_CCACHE_BUILD}" == "yes" && !defined(NO_CCACHE) CMAKE_ARGS+= -DCMAKE_C_COMPILER_LAUNCHER=${CCACHE_BIN} \ -DCMAKE_CXX_COMPILER_LAUNCHER=${CCACHE_BIN} .endif .include # ------------------------------------------------------------------- # As of 2024-02, GCC-12.3 compiled RawTherapee appears to be # up to twice as fast as clang-16.0 compiled code. # So we shall stick to a modern GCC for now. # # However, as of 2026-02-20, GCC-15 fails to build with # -stdlib=libc++, and without it, we get link-time failures # because the C++ libraries such as Exiv2 and Glib-related # use the libc++ ABI, so we can't move to GCC 15. # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=293329 (port) # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=292692 (meta) # .if !empty(PORT_OPTIONS:MGCC) USE_GCC= 14 # pin 14 for now, 15 incompatible _LTO_FLAGS= -flto=${MAKE_JOBS_NUMBER} _AR= ${CC:S/gcc/gcc-ar/} _RANLIB= ${CC:S/gcc/gcc-ranlib/} .else # default path, usually clang _LTO_FLAGS= -flto=thin _AR= ${AR} _RANLIB= ${RANLIB} .endif .if empty(PORT_OPTIONS:MNATIVE) && empty(CFLAGS:M-march*) && (${ARCH} == i386 || ${ARCH} == amd64 || ${ARCH} == aarch64) # this gets translated to -mtune=generic, see ${WRKSRC}/ProcessorTargets.cmake # and as of GCC 8.3, it appears that among FreeBSD's supported architectures, # only the three listed above support this GCC option. CMAKE_ARGS+= -DPROC_TARGET_NUMBER="1" .endif .if (${OPSYS} == FreeBSD) && (${OSVERSION} >= 1600000) # don't waste everybody's time with Tier-2 and moving targets. ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON=only amd64 is supported on non-released FreeBSD versions .endif .if defined(WITH_DEBUG) STRIP= CMAKE_BUILD_TYPE= None # Arch Linux packaging trick to avoid cmake overriding our flags _OPT_FLAGS= -ggdb3 -Og # -Og is GCC-specific, use -O1 for clang .else _OPT_FLAGS= -O3 -funroll-loops .endif # x86_64/amd64 includes -msse2 by default .if ${ARCH} == i386 -# -mstackrealign: workaround for values passed on the stack that cause SIGBUS on SSE2 # -msse2: SSE2 has been around since the year 2003 latest _OPT_FLAGS+= -msse2 +# -mstackrealign: workaround for values passed on the stack that cause SIGBUS on SSE2 _OPT_FLAGS+= -mstackrealign .endif # ------------------------------------------------------------------- .include +# align Standard C++ Library with what every other port uses, to match ABI .if ${COMPILER_FEATURES:Mlibc++} CXXFLAGS+= -stdlib=libc++ .endif post-patch: ${REINPLACE_CMD} -e '/COMMAND.*SHELL/s/-l -c/-c/' ${WRKSRC}/rtengine/LibRaw.cmake ${REINPLACE_CMD} -e 's#DESTINATION "$${CMAKE_INSTALL_PREFIX}/share/man/man1"#DESTINATION "${PREFIX}/share/man/man1/"#' \ ${WRKSRC}/CMakeLists.txt TESTIMAGES= ${MASTERDIR}/testimages # paranoia: run rawtherapee to be sure it finds all its # shared libraries (this hinges on proper RPATH setting and propagation) # # _check_version strips stuffixes from distnames etc. that do not appear # in the program's version numbering _check_version= ${PKGVERSION:C/.g0//} _env= LANGUAGE= DISPLAY= HOME="$$TMP" RT_SETTINGS=${WRKDIR}/rt-config RT_CACHE="$$TMP/rtcache" post-install: @${RM} -f ${WRKDIR}/selftest.exitcodes ${WRKDIR}/selftest.expect @(set -e; _mp=$$(/bin/df -P ${STAGEDIR}${PREFIX}/bin/rawtherapee | ${AWK} 'NR==2{print $$NF}') ; \ _fsflags=$$(${MOUNT} -p | ${AWK} "{ if (\$$2 == \"$$_mp\") { print \$$4 } }") ; \ case $$_fsflags in *noexec*) \ ${TOUCH} ${WRKDIR}/selftest.expect ${WRKDIR}/selftest.exitcodes ; \ ${ECHO_CMD} "===> Skipping smoke tests, STAGEDIR=${STAGEDIR} is on a noexec file system" ; \ exit 0 ;; \ esac ; \ ${ECHO_MSG} "===> Running smoke tests" ; \ ${RM} -rf ${WRKDIR}/rt-config ; \ ${MKDIR} ${WRKDIR}/rt-config ${WRKDIR}/rt-config/dcpprofiles ${WRKDIR}/rt-config/profiles ; \ ${CP} ${WRKSRC}/rtengine/camconst.json ${WRKDIR}/rt-config ; \ ${CP} ${WRKSRC}/rtdata/options/options.lin ${WRKDIR}/rt-config/options ; \ (cd ${WRKSRC}/rtdata/ && ${COPYTREE_SHARE} "profiles dcpprofiles" ${WRKDIR}/rt-config ) ; \ (set -x ; TMP=$$(${MKTEMP} -d -t ${PORTNAME}) && trap "rc=$$? ; ${RM} -rf \"$$TMP\" ; exit \$$rc" 0 && \ ( set +e ; ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee -v ; \ ${ECHO_CMD} $$? >&3 ) 3>&3 | ${EGREP} -q "RawTherapee, version ${_check_version:C/_.*//:C/,.*//}|cannot open display:" && \ ( set +e ; ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli | dd ibs=8k ; \ ${ECHO_CMD} $$? >&3 ) 3>&3 | ${EGREP} -q "RawTherapee, version ${_check_version:C/_.*//:C/,.*//}" && \ expect=$$'0\n0\n' && \ onefile=$$(ls "${TESTIMAGES}"/* | head -1) && \ if test -d "${TESTIMAGES}" && test -n "$$onefile" -a -r "$$onefile" ; then \ expect=$$'0\n0\n0\n0\n0\n' && \ ( set +e ; \ /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ -o "$$TMP" -q -f -c ${TESTIMAGES} ; ${ECHO_CMD} $$? >&3 ; \ /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ -o "$$TMP" -q -s -Y -c ${TESTIMAGES} ; ${ECHO_CMD} $$? >&3 ; \ /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ -o "$$TMP" -q -s -Y -tz -c ${TESTIMAGES} ; ${ECHO_CMD} $$? >&3 ) 3>&3 ; \ fi ; \ ls -Rlbai "${TESTIMAGES}" "$${TMP}" || :; \ ${PRINTF} "%s" "$$expect" >&4 ) ) 3>${WRKDIR}/selftest.exitcodes 4>${WRKDIR}/selftest.expect ; \ ${HEAD} ${WRKDIR}/selftest.exitcodes ${WRKDIR}/selftest.expect ; \ cmp ${WRKDIR}/selftest.expect ${WRKDIR}/selftest.exitcodes \ || { ${ECHO_CMD} '===> !!! SELF-TEST FAILED !!! <===' ; exit 1 ; } .include diff --git a/graphics/rawtherapee/distinfo b/graphics/rawtherapee/distinfo index 9ff354378ff8..4bcace2d303a 100644 --- a/graphics/rawtherapee/distinfo +++ b/graphics/rawtherapee/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749030819 -SHA256 (rawtherapee-5.12.tar.xz) = d9a6c10537d64a285bc465675fe59aaa94ce3223823dfbecf0ae2c9599082d57 -SIZE (rawtherapee-5.12.tar.xz) = 18306944 +TIMESTAMP = 1786659985 +SHA256 (rawtherapee-5.13.tar.xz) = 23bdff4b1817e1274c11a94b11d21cac59e9c1b1d209795d3194710ee73e77bf +SIZE (rawtherapee-5.13.tar.xz) = 19063124 diff --git a/graphics/rawtherapee/files/patch-CMakeLists.txt b/graphics/rawtherapee/files/patch-CMakeLists.txt deleted file mode 100644 index fa3770cb9380..000000000000 --- a/graphics/rawtherapee/files/patch-CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -Strip warnings we don't need to see as packagers: - ---- CMakeLists.txt.orig 2025-05-28 01:02:22 UTC -+++ CMakeLists.txt -@@ -662,7 +662,7 @@ set(CMAKE_CXX_FLAGS - endif() - - set(CMAKE_CXX_FLAGS -- "${CMAKE_CXX_FLAGS} -Wall -Wuninitialized -Wcast-qual -Wno-deprecated-declarations -Wno-unused-result -Wunused-macros" -+ "${CMAKE_CXX_FLAGS} -Wuninitialized -Wcast-qual -Wno-deprecated-declarations -Wno-unused-result" - ) - if(OPTION_OMP) - find_package(OpenMP) diff --git a/graphics/rawtherapee/files/patch-rtengine_LibRaw.cmake b/graphics/rawtherapee/files/patch-rtengine_LibRaw.cmake index 37bf0c66f12d..28e341b1630c 100644 --- a/graphics/rawtherapee/files/patch-rtengine_LibRaw.cmake +++ b/graphics/rawtherapee/files/patch-rtengine_LibRaw.cmake @@ -1,30 +1,40 @@ ---- rtengine/LibRaw.cmake.orig 2025-05-28 01:02:22 UTC +--- rtengine/LibRaw.cmake.orig 2026-07-25 22:58:00 UTC +++ rtengine/LibRaw.cmake -@@ -33,6 +33,27 @@ execute_process( +@@ -28,7 +28,8 @@ set(CONFIGURE_FLAGS "--disable-examples") + + # Configuration flags. + set(CONFIGURE_FLAGS "--disable-examples") +-set(LIBRAW_CXX_FLAGS "${CXX_FLAGS} -std=gnu++11 -Wno-error=unknown-pragmas") ++set(LIBRAW_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX_FLAGS} -std=gnu++11 -Wno-error=unknown-pragmas") ++message("LIBRAW_CXX_FLAGS: ${LIBRAW_CXX_FLAGS}, ENV: $ENV{CXXFLAGS}") + # Let the configure script handle OpenMP flags. + string(REPLACE "${OpenMP_CXX_FLAGS}" "" LIBRAW_CXX_FLAGS "${LIBRAW_CXX_FLAGS}") + if(OPTION_OMP) +@@ -42,6 +43,27 @@ message(STATUS "Configuring LibRaw") + # Configuration commands. message(STATUS "Configuring LibRaw") - execute_process( ++execute_process( + COMMAND pkg-config --cflags-only-I libjpeg + RESULT_VARIABLE PROCESS_RESULT + OUTPUT_VARIABLE JPEG_BIGI_FLAGS + OUTPUT_STRIP_TRAILING_WHITESPACE +) +if(PROCESS_RESULT AND NOT PROCESS_RESULT EQUAL 0) + message(FATAL_ERROR "Could not obtain libjpeg -I flags from pkg-config") +endif() +execute_process( + COMMAND pkg-config --libs-only-L libjpeg + RESULT_VARIABLE PROCESS_RESULT + OUTPUT_VARIABLE JPEG_BIGL_FLAGS + OUTPUT_STRIP_TRAILING_WHITESPACE +) +if(PROCESS_RESULT AND NOT PROCESS_RESULT EQUAL 0) + message(FATAL_ERROR "Could not obtain libjpeg -L flags from pkg-config") +endif() +message(STATUS "libjpeg flags (from pkg-config): CFLAGS=\"${JPEG_BIGI_FLAGS}\" LIBS=\"${JPEG_BIGL_FLAGS}\"") +set(CONFIGURE_FLAGS "${CONFIGURE_FLAGS} CFLAGS=\"${CFLAGS} ${JPEG_BIGI_FLAGS}\"") +set(CONFIGURE_FLAGS "${CONFIGURE_FLAGS} LIBS=\"${LIBS} ${JPEG_BIGL_FLAGS}\"") -+execute_process( + execute_process( COMMAND cp -p -R "${CMAKE_CURRENT_SOURCE_DIR}/libraw" . WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" - RESULT_VARIABLE PROCESS_RESULT diff --git a/graphics/rawtherapee/pkg-plist b/graphics/rawtherapee/pkg-plist index f535e30e1386..dc1286a7ee2c 100644 --- a/graphics/rawtherapee/pkg-plist +++ b/graphics/rawtherapee/pkg-plist @@ -1,624 +1,622 @@ bin/rawtherapee bin/rawtherapee-cli share/applications/rawtherapee.desktop %%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt %%PORTDOCS%%%%DOCSDIR%%/AboutThisBuild.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES.txt share/icons/hicolor/128x128/apps/rawtherapee.png share/icons/hicolor/16x16/apps/rawtherapee.png share/icons/hicolor/24x24/apps/rawtherapee.png share/icons/hicolor/256x256/apps/rawtherapee.png share/icons/hicolor/32x32/apps/rawtherapee.png share/icons/hicolor/48x48/apps/rawtherapee.png share/icons/hicolor/64x64/apps/rawtherapee.png share/icons/hicolor/scalable/apps/rawtherapee.svg share/man/man1/rawtherapee.1.gz share/metainfo/com.rawtherapee.RawTherapee.appdata.xml %%DATADIR%%/camconst.json %%DATADIR%%/cammatrices.json %%DATADIR%%/dcpprofiles/CANON EOS 250D.dcp %%DATADIR%%/dcpprofiles/CANON EOS 800D.dcp %%DATADIR%%/dcpprofiles/CANON EOS M50.dcp %%DATADIR%%/dcpprofiles/CANON POWERSHOT G5 X MARK II.dcp %%DATADIR%%/dcpprofiles/Canon EOS 100D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 1300D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 20D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 400D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 40D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 450D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 50D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 550D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D Mark II.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D Mark III.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D Mark IV.dcp %%DATADIR%%/dcpprofiles/Canon EOS 5D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 600D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 60D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 650D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 6D Mark II.dcp %%DATADIR%%/dcpprofiles/Canon EOS 6D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 7D Mark II.dcp %%DATADIR%%/dcpprofiles/Canon EOS 7D.dcp %%DATADIR%%/dcpprofiles/Canon EOS 90D.dcp %%DATADIR%%/dcpprofiles/Canon EOS D60.dcp %%DATADIR%%/dcpprofiles/Canon EOS M6 Mark II.dcp %%DATADIR%%/dcpprofiles/Canon EOS R.dcp %%DATADIR%%/dcpprofiles/Canon EOS R5.dcp %%DATADIR%%/dcpprofiles/Canon EOS R6.dcp %%DATADIR%%/dcpprofiles/Canon EOS R8.dcp %%DATADIR%%/dcpprofiles/Canon EOS RP.dcp %%DATADIR%%/dcpprofiles/Canon EOS-1D Mark III.dcp %%DATADIR%%/dcpprofiles/Canon EOS-1D X Mark III.dcp %%DATADIR%%/dcpprofiles/Canon EOS-1Ds Mark II.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot G1 X Mark II.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot G10.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot G12.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot G7 X.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot S110.dcp %%DATADIR%%/dcpprofiles/Canon PowerShot S120.dcp %%DATADIR%%/dcpprofiles/FUJIFILM DBP for GX680.dcp %%DATADIR%%/dcpprofiles/FUJIFILM FinePix F600EXR.dcp %%DATADIR%%/dcpprofiles/FUJIFILM GFX 50R.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-A5.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-A7.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-E3.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-H1.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-Pro2.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-Pro3.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-S1.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-S10.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T1.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T10.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T2.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T20.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T3.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T30.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T4.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X100S.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X100T.dcp %%DATADIR%%/dcpprofiles/Fujifilm FinePix S9500.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E1.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E2.dcp %%DATADIR%%/dcpprofiles/LG Mobile LG-H815.dcp %%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp %%DATADIR%%/dcpprofiles/MINOLTA DYNAX 7D.dcp %%DATADIR%%/dcpprofiles/NIKON COOLPIX P7800.dcp %%DATADIR%%/dcpprofiles/NIKON D300.dcp %%DATADIR%%/dcpprofiles/NIKON D3300.dcp %%DATADIR%%/dcpprofiles/NIKON D50.dcp %%DATADIR%%/dcpprofiles/NIKON D500.dcp %%DATADIR%%/dcpprofiles/NIKON D5000.dcp %%DATADIR%%/dcpprofiles/NIKON D5300.dcp %%DATADIR%%/dcpprofiles/NIKON D5600.dcp %%DATADIR%%/dcpprofiles/NIKON D600.dcp %%DATADIR%%/dcpprofiles/NIKON D610.dcp %%DATADIR%%/dcpprofiles/NIKON D700.dcp %%DATADIR%%/dcpprofiles/NIKON D70s.dcp %%DATADIR%%/dcpprofiles/NIKON D7100.dcp %%DATADIR%%/dcpprofiles/NIKON D7200.dcp %%DATADIR%%/dcpprofiles/NIKON D750.dcp %%DATADIR%%/dcpprofiles/NIKON D7500.dcp %%DATADIR%%/dcpprofiles/NIKON D80.dcp %%DATADIR%%/dcpprofiles/NIKON D800.dcp %%DATADIR%%/dcpprofiles/NIKON D800E.dcp %%DATADIR%%/dcpprofiles/NIKON D810.dcp %%DATADIR%%/dcpprofiles/NIKON D850.dcp %%DATADIR%%/dcpprofiles/NIKON Z 5.dcp %%DATADIR%%/dcpprofiles/NIKON Z 50.dcp %%DATADIR%%/dcpprofiles/NIKON Z 6.dcp %%DATADIR%%/dcpprofiles/NIKON Z 6_2.dcp %%DATADIR%%/dcpprofiles/NIKON Z 7.dcp %%DATADIR%%/dcpprofiles/NIKON Z 8.dcp %%DATADIR%%/dcpprofiles/NIKON Z 9.dcp %%DATADIR%%/dcpprofiles/NIKON Z F.dcp %%DATADIR%%/dcpprofiles/Nikon D200.dcp %%DATADIR%%/dcpprofiles/Nikon D3000.dcp %%DATADIR%%/dcpprofiles/Nikon D3100.dcp %%DATADIR%%/dcpprofiles/Nikon D3S.dcp %%DATADIR%%/dcpprofiles/Nikon D5100.dcp %%DATADIR%%/dcpprofiles/Nikon D7000.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-510.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M1.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M10.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M1MarkII.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M5MarkII.dcp %%DATADIR%%/dcpprofiles/Olympus E-1.dcp %%DATADIR%%/dcpprofiles/Olympus E-520.dcp %%DATADIR%%/dcpprofiles/Olympus E-M5.dcp %%DATADIR%%/dcpprofiles/Olympus E-P2.dcp %%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp %%DATADIR%%/dcpprofiles/PANASONIC DMC-LX100.dcp %%DATADIR%%/dcpprofiles/PENTAX K-5 II.dcp %%DATADIR%%/dcpprofiles/PENTAX K-5.dcp %%DATADIR%%/dcpprofiles/PENTAX K-50.dcp %%DATADIR%%/dcpprofiles/PENTAX K10D.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-G9.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-GX9.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-S1.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-S5.dcp %%DATADIR%%/dcpprofiles/PANASONIC DC-S5M2.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-TZ91.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ1000.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ150.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ35.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-FZ38.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-G1.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-G3.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-G5.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GH1.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GH2.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GX7.dcp %%DATADIR%%/dcpprofiles/Panasonic DMC-GX85.dcp %%DATADIR%%/dcpprofiles/Pentax K-r.dcp %%DATADIR%%/dcpprofiles/Pentax K200D.dcp %%DATADIR%%/dcpprofiles/RICOH GR III.dcp %%DATADIR%%/dcpprofiles/RICOH PENTAX K-1.dcp %%DATADIR%%/dcpprofiles/RICOH PENTAX K-3.dcp %%DATADIR%%/dcpprofiles/SONY DSC-RX100M6.dcp %%DATADIR%%/dcpprofiles/SONY DSLR-A580.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6000.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6300.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6400.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6500.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6600.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7C.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7M2.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7M3.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7M4.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7RM3.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7RM4.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7SM3.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-9.dcp %%DATADIR%%/dcpprofiles/SONY SLT-A99V.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A700.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A900.dcp %%DATADIR%%/dcpprofiles/Sony NEX-5N.dcp %%DATADIR%%/dcpprofiles/Sony SLT-A55V.dcp %%DATADIR%%/dcpprofiles/YI TECHNOLOGY M1.dcp %%DATADIR%%/dcpprofiles/camera_model_aliases.json %%DATADIR%%/dcpprofiles/samsung SM-G930V.dcp %%DATADIR%%/dcraw.json %%DATADIR%%/iccprofiles/input/Canon EOS 20D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 40D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 450D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 550D.icc %%DATADIR%%/iccprofiles/input/Canon EOS 5D.icc %%DATADIR%%/iccprofiles/input/Canon EOS-1D Mark III.icc %%DATADIR%%/iccprofiles/input/Canon PowerShot G10.icc %%DATADIR%%/iccprofiles/input/Canon PowerShot G12.icc %%DATADIR%%/iccprofiles/input/Nikon D200.icc %%DATADIR%%/iccprofiles/input/Nikon D3000.icc %%DATADIR%%/iccprofiles/input/Nikon D3100.icc %%DATADIR%%/iccprofiles/input/Nikon D3S.icc %%DATADIR%%/iccprofiles/input/Nikon D700.icc %%DATADIR%%/iccprofiles/input/Nikon D7000.icc %%DATADIR%%/iccprofiles/input/Olympus E-P2.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ150.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ35.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-FZ38.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-G1.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-G3.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-GH1.icc %%DATADIR%%/iccprofiles/input/Panasonic DMC-GH2.icc %%DATADIR%%/iccprofiles/input/Pentax K200D.icc %%DATADIR%%/iccprofiles/input/Sony DSLR-A700.icc %%DATADIR%%/iccprofiles/input/Sony DSLR-A900.icc %%DATADIR%%/iccprofiles/input/Sony SLT-A55V.icc %%DATADIR%%/iccprofiles/input/sd14-bl15-crop-matrix-gamma-wp10.icm %%DATADIR%%/iccprofiles/input/sd14-bl15-crop-matrix-gamma-wp11.icm %%DATADIR%%/iccprofiles/input/sd14-bl15-crop-matrix-gamma-wp12.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_cloudy8140-CROP-WP10.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_cloudy8140-CROP-WP11.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_sunny8161-crop-wp10.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_sunny8161-crop-wp11.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_tungsten8130-CROP-WP10.icm %%DATADIR%%/iccprofiles/input/sd1_merrill_tungsten8130-CROP-WP11.icm %%DATADIR%%/iccprofiles/output/DCI-P3 D65.icc %%DATADIR%%/iccprofiles/output/DCI-P3 Theater.icc %%DATADIR%%/iccprofiles/output/RTv2_ACES-AP0.icc %%DATADIR%%/iccprofiles/output/RTv2_ACES-AP1.icc %%DATADIR%%/iccprofiles/output/RTv2_Best.icc %%DATADIR%%/iccprofiles/output/RTv2_Beta.icc %%DATADIR%%/iccprofiles/output/RTv2_Bruce.icc %%DATADIR%%/iccprofiles/output/RTv2_Large.icc %%DATADIR%%/iccprofiles/output/RTv2_Medium.icc %%DATADIR%%/iccprofiles/output/RTv2_Rec2020.icc %%DATADIR%%/iccprofiles/output/RTv2_Wide.icc %%DATADIR%%/iccprofiles/output/RTv2_sRGB.icc %%DATADIR%%/iccprofiles/output/RTv4_ACES-AP0.icc %%DATADIR%%/iccprofiles/output/RTv4_ACES-AP1.icc %%DATADIR%%/iccprofiles/output/RTv4_Best.icc %%DATADIR%%/iccprofiles/output/RTv4_Beta.icc %%DATADIR%%/iccprofiles/output/RTv4_Bruce.icc %%DATADIR%%/iccprofiles/output/RTv4_Large.icc %%DATADIR%%/iccprofiles/output/RTv4_Medium.icc %%DATADIR%%/iccprofiles/output/RTv4_Rec2020.icc %%DATADIR%%/iccprofiles/output/RTv4_Wide.icc %%DATADIR%%/iccprofiles/output/RTv4_sRGB.icc %%DATADIR%%/icons/rawtherapee/24x24/apps/empty.png %%DATADIR%%/icons/rawtherapee/index.theme %%DATADIR%%/icons/rawtherapee/scalable/apps/add-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/add.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/aperture.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow-down-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow-left-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow-right-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow-up-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow-updown.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow2-left.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/arrow2-right.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/atom.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/bayer.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/beforeafter.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/bidirectional-arrow-horizontal-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/bidirectional-arrow-horizontal-prelight.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/bidirectional-arrow-vertical-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/bidirectional-arrow-vertical-prelight.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/box.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/cancel-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/cancel.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-black-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-blue-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-blue-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-blue-yellow-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-cyan-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-cyan-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-darkgray-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-darkgray-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-gray-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-purple-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-empty-yellow-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-gray-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-gray-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-gray-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-gray-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-green-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-green-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-magenta-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-multicolor-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-orange-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-purple-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-red-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-red-cyan-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-red-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-white-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-yellow-blue-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/circle-yellow-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-circles.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-add-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-add.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-bars.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-hide.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/color-picker.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/contrastmask-off.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/contrastmask-on.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/copy.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crop-auto-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crop-auto.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crop-point-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crop-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crop.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crossed-arrows-in.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crossed-arrows-out.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crosshair-adjust.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crosshair-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crosshair-node-curve.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/crosshair-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-catmullrom-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-catmullrom.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-controlpoints-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-controlpoints.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-flat-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-flat.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-linear-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-linear.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-nurbs-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-nurbs.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-parametric-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-parametric.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-spline-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/curve-spline.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/detail.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/device-floppy.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/device-hdd.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/device-network.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/device-optical.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/device-usb.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-auto-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-auto.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-barrel-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-barrel.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-pincushion-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/distortion-pincushion.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/draw.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/edit-point.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/edit-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/edit.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/equilizer-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/equilizer-wide.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/expander-closed-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/expander-open-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/exposure.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filetype-hdr.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filetype-ps.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filter-clear.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filter-original.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filter-original2.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/filter.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/flip-horizontal.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/flip-vertical.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/focusscreen-off.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/focusscreen-on.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed-home-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed-home.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed-recent-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed-recent.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-closed.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-open-recent-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-open-recent.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-open-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-open.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/folder-subfolder.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/fullscreen-enter.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/fullscreen-leave.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gamut-hist.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gamut-plus.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gamut-softproof.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gamut-warning.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gamut_srgb_prophoto_xy.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gears-pause.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gears-play.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gears-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/gears.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/goto-end-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/goto-start-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/hand-closed-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/hand-open-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/hand-open.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-bar-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-bar-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-blue-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-blue-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-ellipsis-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-gold-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-gold-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-green-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-green-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-mode-linear-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-mode-logx-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-mode-logxy-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-red-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-red-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-silver-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-silver-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-histogram-raw-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-histogram-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-parade-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-vectorscope-hc-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-vectorscope-hs-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/histogram-type-waveform-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/info.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/intent-absolute.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/intent-perceptual.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/intent-relative.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/intent-saturation.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-1to1-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-1to1.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-crop.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-fit.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-minus-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-minus.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-plus-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier-plus.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/magnifier.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/metadata.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/node-move-nw-se-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/node-move-sw-ne-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/node-move-x-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/node-move-xy-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/node-move-y-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/one-to-one-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/padlock-locked-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/padlock-unlocked-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/palette-brush.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/panel-to-bottom.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/panel-to-left.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/panel-to-right.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/panel-to-top.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/paste.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-horizontal-left-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-horizontal-left.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-horizontal-right-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-horizontal-right.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-horizontal-vertical.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-vertical-bottom-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-vertical-bottom.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-vertical-top-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/perspective-vertical-top.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/power-inconsistent-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/power-off-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/power-on-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/preferences.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/profile-filled.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/profile-partial.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/questionmark.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/redo-all.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/redo-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/redo.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/refresh-red-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/refresh-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/refresh.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/remove-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/remove.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-aroundnode-hicontrast.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-aroundnode.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-left-90.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-left-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-left.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-right-90.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-right-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-right.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-straighten-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rotate-straighten.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/rt-spot.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/save-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/save.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/saved-no-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/saved-yes-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/spot-active.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/spot-normal.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/spot-prelight.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-black-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-black-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-blue-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-blue-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-gray-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-gray-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-green-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-green-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-luminosity-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-luminosity-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-red-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-red-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-theme-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-theme-on-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-white-off-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/square-toggle-white-on-narrow.svg -%%DATADIR%%/icons/rawtherapee/scalable/apps/star-gold-hollow-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/star-gold-hollow-small.svg -%%DATADIR%%/icons/rawtherapee/scalable/apps/star-gold-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/star-gold-small.svg -%%DATADIR%%/icons/rawtherapee/scalable/apps/star-hollow-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/star-hollow-small.svg -%%DATADIR%%/icons/rawtherapee/scalable/apps/star-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/star-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/star.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/template-16.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/template-24.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/template-narrow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-green-hollow-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-green-hollow.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-green-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-green.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-hollow-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/tick.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/transform.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-delete.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-empty-show.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-empty.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-full-show.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-full.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-hide-deleted.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-remove-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-remove.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/trash-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/undo-all.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/undo-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/undo.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/warning-highlights.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/warning-shadows.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/warning.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wavelets.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-auto-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-auto.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-camera-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-camera.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-cloudy-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-cloudy.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-custom-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-custom.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-flash-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-flash.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-fluorescent-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-fluorescent.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-lamp-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-lamp.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-led-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-led.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-shade-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-shade.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-sun-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-sun.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-tungsten-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-tungsten.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-water-small.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/wb-water.svg %%DATADIR%%/icons/rawtherapee/scalable/apps/window-add.svg %%DATADIR%%/images/ornament1.svg %%DATADIR%%/images/rawtherapee.ico %%DATADIR%%/images/rt-logo-text-black.svg %%DATADIR%%/images/rt-logo-text-white.svg %%DATADIR%%/images/splash.svg %%DATADIR%%/images/splash_template.svg %%DATADIR%%/languages/Catala %%DATADIR%%/languages/Chinese (Simplified) %%DATADIR%%/languages/Czech %%DATADIR%%/languages/Dansk %%DATADIR%%/languages/Deutsch %%DATADIR%%/languages/English (UK) %%DATADIR%%/languages/English (US) %%DATADIR%%/languages/Espanol (Castellano) %%DATADIR%%/languages/Espanol (Latin America) %%DATADIR%%/languages/Francais +%%DATADIR%%/languages/Hebrew %%DATADIR%%/languages/Italiano %%DATADIR%%/languages/Japanese +%%DATADIR%%/languages/Korean %%DATADIR%%/languages/LICENSE %%DATADIR%%/languages/Magyar %%DATADIR%%/languages/Nederlands %%DATADIR%%/languages/Polish %%DATADIR%%/languages/Portugues %%DATADIR%%/languages/Portugues (Brasil) %%DATADIR%%/languages/README %%DATADIR%%/languages/Russian %%DATADIR%%/languages/Serbian (Cyrilic Characters) %%DATADIR%%/languages/Slovenian %%DATADIR%%/languages/Swedish %%DATADIR%%/languages/Ukrainian %%DATADIR%%/languages/default %%DATADIR%%/options %%DATADIR%%/profiles/Auto-Matched Curve - ISO High.pp3 %%DATADIR%%/profiles/Auto-Matched Curve - ISO Low.pp3 %%DATADIR%%/profiles/Auto-Matched Curve - ISO Medium.pp3 %%DATADIR%%/profiles/Film Negative - Black and White.pp3 %%DATADIR%%/profiles/Film Negative.pp3 %%DATADIR%%/profiles/Non-raw/Brighten.pp3 %%DATADIR%%/profiles/Pixel Shift/PS ISO High.pp3 %%DATADIR%%/profiles/Pixel Shift/PS ISO Low.pp3 %%DATADIR%%/profiles/Pixel Shift/PS ISO Medium.pp3 %%DATADIR%%/profiles/Pixel Shift/PS No Motion.pp3 %%DATADIR%%/profiles/Pop/Pop 1.pp3 %%DATADIR%%/profiles/Pop/Pop 2 Lab.pp3 %%DATADIR%%/profiles/Pop/Pop 3 Skin.pp3 %%DATADIR%%/profiles/Pop/Pop 4 Black-and-White.pp3 %%DATADIR%%/profiles/Standard Film Curve - ISO High.pp3 %%DATADIR%%/profiles/Standard Film Curve - ISO Low.pp3 %%DATADIR%%/profiles/Standard Film Curve - ISO Medium.pp3 %%DATADIR%%/profiles/Unclipped.pp3 %%DATADIR%%/rt.json %%DATADIR%%/sounds/BatchComplete.wav %%DATADIR%%/sounds/Empty.wav %%DATADIR%%/sounds/ProcessComplete.wav %%DATADIR%%/themes/RawTherapee - Legacy.css %%DATADIR%%/themes/RawTherapee.css %%DATADIR%%/themes/TooWaBlue - Bright.css %%DATADIR%%/themes/TooWaBlue - Dark.css %%DATADIR%%/themes/TooWaBlue.css %%DATADIR%%/themes/TooWaGrey - Average Surround.css %%DATADIR%%/themes/TooWaGrey - Bright.css %%DATADIR%%/themes/TooWaGrey - Dark.css %%DATADIR%%/themes/TooWaGrey.css %%DATADIR%%/themes/common/size - Legacy.css %%DATADIR%%/themes/common/size.css %%DATADIR%%/themes/system.iconset