Index: head/graphics/rawtherapee/Makefile =================================================================== --- head/graphics/rawtherapee/Makefile (revision 525751) +++ head/graphics/rawtherapee/Makefile (revision 525752) @@ -1,162 +1,199 @@ # Created by: stas # $FreeBSD$ PORTNAME= rawtherapee -PORTVERSION= 5.7 -PORTREVISION= 2 +PORTVERSION= 5.8 CATEGORIES= graphics -MASTER_SITES= http://rawtherapee.com/shared/source/ +MASTER_SITES= https://rawtherapee.com/shared/source/ \ + LOCAL/mandree/ MAINTAINER= mandree@FreeBSD.org COMMENT= Powerful RAW image processing application LICENSE= GPLv3 LIB_DEPENDS= \ liblensfun.so:graphics/lensfun \ libcanberra-gtk.so:audio/libcanberra \ libcanberra-gtk3.so:audio/libcanberra-gtk3 \ libexpat.so:textproc/expat2 \ libfftw3.so:math/fftw3 \ libfftw3f.so:math/fftw3-float \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libiptcdata.so:graphics/libiptcdata \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png \ libsigc-2.0.so:devel/libsigc++20 \ libtiff.so:graphics/tiff USES= cmake desktop-file-utils compiler:gcc-c++11-lib gnome \ jpeg localbase:ldflags pkgconfig tar:xz DOS2UNIX_REGEX= .*\.(cc|h) USE_GNOME= gtkmm30 librsvg2 +INSTALLS_ICONS= yes # Binutils required for LTO (base ar/nm/ld/ranlib don't work) USE_BINUTILS= yes # As of 2019-09-29, this port is known to be miscompiled by clang90 -# (SIGSEGV or SIBGUS). +# (SIGSEGV or SIBGUS) and 12.1's base clang. # # FreeBSD 11.2/12.0's base clang 6.0.1 emits worse code with # considerably higher processing times, and on i386 additional calls to # __atomic_*(), so we shall stick to GCC 9.x for now USE_GCC= 9+ _LTO_FLAGS= -flto=${MAKE_JOBS_NUMBER} # gcc needs -flto=${MAKE_JOBS_NUMBER} for parallel link (fixed in GCC 10?) # and does not understand -flto=thin -# +# # llvm/clang needs -flto=thin and will automatically parallelize the link # -# XXX re _AR/_RANLIB: might be worth checking if plain binutils is good _AR= ${CC:S/gcc/gcc-ar/} _RANLIB= ${CC:S/gcc/gcc-ranlib/} CFLAGS+= -I${LOCALBASE}/include -fPIC ${_LTO_FLAGS} ${_OPT_FLAGS} LDFLAGS+= -Wl,--as-needed -lpthread ${_LTO_FLAGS} ${_OPT_FLAGS} CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}" \ -DCREDITSDIR="${DOCSDIR}" \ -DLICENCEDIR="${DOCSDIR}" \ -DDESKTOPDIR="${DESKTOPDIR}" \ -DDATADIR="${DATADIR}" \ -DCACHE_NAME_SUFFIX="" \ -Wno-dev \ -DCMAKE_AR:FILEPATH=${_AR} \ -DCMAKE_RANLIB:FILEPATH=${_RANLIB} \ -DCMAKE_POLICY_DEFAULT_CMP0056:STRING=NEW # 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 -INSTALLS_ICONS= yes - .if defined(PACKAGE_BUILDING) && 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 "${WITH_CCACHE_BUILD}" == "yes" && !defined(NO_CCACHE) CMAKE_ARGS+= -DCMAKE_C_COMPILER_LAUNCHER=${CCACHE_BIN} \ -DCMAKE_CXX_COMPILER_LAUNCHER=${CCACHE_BIN} .endif -RTDIR= ${PREFIX}/libdata/${PORTNAME} - OPTIONS_DEFINE= DOCS NATIVE -OPTIONS_DEFINE_i386= DOCS NATIVE OPENMP -OPTIONS_DEFINE_amd64= DOCS NATIVE OPENMP -OPTIONS_DEFAULT= OPENMP +OPTIONS_DEFINE_i386= OPENMP TCMALLOC +OPTIONS_DEFINE_amd64= OPENMP TCMALLOC +OPTIONS_DEFAULT= OPENMP TCMALLOC OPENMP_DESC= Enable OpenMP parallel processing (i386/amd64 only) NATIVE_DESC= Use -march=native (avoid for generic packages!) +TCMALLOC_DESC= Use Google's tcmalloc instead of system allocator OPENMP_CMAKE_BOOL= OPTION_OMP +TCMALLOC_CMAKE_BOOL= ENABLE_TCMALLOC +TCMALLOC_LIB_DEPENDS= libtcmalloc.so:devel/google-perftools + .include # ------------------------------------------------------------------- +.if (${OPSYS} == FreeBSD) && (${OSVERSION} < 1200000) +# can't save 16-bit TIFF on FreeBSD 11.3 i386: +# "TIFFWriteDirectoryTagIfdIfd8Array: Attempt to write value +# larger than 0xFFFFFFFF in Classic TIFF file" +# +# And no, the maintainer is not going to spend any time on it +# unless there is a tested proven well-integrated patch offered. +# +# Tier-2 only supported on the latest stable FreeBSD release. +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= i386 malfunctions on 11.x - upgrade to 12.x +.endif + .if (${OPSYS} == FreeBSD) && (${OSVERSION} >= 1300000) # don't waste everybody's time with Tier-2 and moving targets. # might add ARM64 or SPARC64 later on if they are established by the # time FreeBSD 12 is out. ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON=Only amd64 is supported on non-released FreeBSD versions. .endif .if ${PORT_OPTIONS:MNATIVE} CMAKE_ARGS+= -DPROC_TARGET_NUMBER="2" .endif .if !empty(PORT_OPTIONS:MOPENMP) && !empty(OPTIONS_DEFINE:MOPENMP) +. if ${OSVERSION} < 1102507 || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1200506) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300050) LIB_DEPENDS+= libomp.so:devel/openmp +. endif OPENMP_FLAGS= -lm -lomp LDFLAGS+= ${OPENMP_FLAGS} .endif .if defined(WITH_DEBUG) STRIP= +CMAKE_BUILD_TYPE= RelWithDebInfo +_OPT_FLAGS= -O1 +.else +_OPT_FLAGS= -O3 -funroll-loops .endif -_OPT_FLAGS= -O3 -funroll-loops # GCC >= 5.4 includes -fexpensive-optimizations in -O2 already .if (${ARCH} == i386) || (${ARCH} == amd64) # and SSE2 has been around since the years 2000...2003 latest _OPT_FLAGS+= -msse2 .endif # workaround for values on the stack that cause SIGBUS on SSE2: .if ${ARCH} == i386 _OPT_FLAGS+= -mstackrealign .endif # ------------------------------------------------------------------- .include post-patch: @${REINPLACE_CMD} -e 's#DESTINATION "$${CMAKE_INSTALL_PREFIX}/share/man/man1"#DESTINATION "${MANPREFIX}/man/man1/"#' \ ${WRKSRC}/CMakeLists.txt TESTIMAGES= ${FILESDIR}/../testimages -# paranoia: run rawtherapee --help to be sure it finds all its +# 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= LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" RT_SETTINGS=${WRKDIR}/rt-config RT_CACHE="$$TMP/rtcache" post-install: @${ECHO_MSG} "===> Running smoke tests" + @${RM} -f ${WRKDIR}/selftest.exitcodes ${WRKDIR}/selftest.expect + @${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 && \ - ${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" ${STAGEDIR}${PREFIX}/bin/rawtherapee --help 2>&1 \ - | ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}|cannot open display:" && \ - ${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli --version 2>&1 \ - | ${EGREP} -q "RawTherapee, version ${PKGVERSION:C/_.*//:C/,.*//}" && \ - if test -n "$(TESTIMAGES)" ; then \ - time ${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ - -o "$$TMP" -q -f -c $(TESTIMAGES) && \ - time ${SETENV} LANG= LC_ALL=C LANGUAGE= DISPLAY= HOME="$$TMP" ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ - -o "$$TMP" -q -s -Y -c $(TESTIMAGES) ; \ - fi ) + ( ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee -v 2>&1 ; \ + echo $$? >&3 ) 3>&3 | ${EGREP} -q "RawTherapee, version ${_check_version:C/_.*//:C/,.*//}|cannot open display:" && \ + ( ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli 2>&1 ; \ + echo $$? >&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' && \ + /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ + -o "$$TMP" -q -f -c ${TESTIMAGES} ; echo $$? >&3 ; \ + /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ + -o "$$TMP" -q -s -Y -c ${TESTIMAGES} ; echo $$? >&3 ; \ + /usr/bin/time ${SETENV} ${_env} ${STAGEDIR}${PREFIX}/bin/rawtherapee-cli \ + -o "$$TMP" -q -s -Y -tz -c ${TESTIMAGES} ; echo $$? >&3 ; \ + fi ; \ + ls -Rlbai "${TESTIMAGES}" "$${TMP}"; \ + ${PRINTF} "%s" "$$expect" >&4 ) 3>${WRKDIR}/selftest.exitcodes 4>${WRKDIR}/selftest.expect ; \ + ${PRINTF} "$$(cat ${WRKDIR}/selftest.expect)" | cmp - ${WRKDIR}/selftest.exitcodes || { ${ECHO_CMD} '===> !!! SELF-TEST FAILED !!! <===' ; exit 1 ; } .include Index: head/graphics/rawtherapee/distinfo =================================================================== --- head/graphics/rawtherapee/distinfo (revision 525751) +++ head/graphics/rawtherapee/distinfo (revision 525752) @@ -1,3 +1,3 @@ -TIMESTAMP = 1568321120 -SHA256 (rawtherapee-5.7.tar.xz) = dbd7c7cf7488fb97c520821eee2c745291637644b391e3ec0ed3a29701f1a9c7 -SIZE (rawtherapee-5.7.tar.xz) = 12092496 +TIMESTAMP = 1581163686 +SHA256 (rawtherapee-5.8.tar.xz) = 360528a0aae922eb5af8742f415475fb91b6d62a739da5f2804828f04ec40853 +SIZE (rawtherapee-5.8.tar.xz) = 12653148 Index: head/graphics/rawtherapee/files/patch-rtdata_CMakeLists.txt =================================================================== --- head/graphics/rawtherapee/files/patch-rtdata_CMakeLists.txt (nonexistent) +++ head/graphics/rawtherapee/files/patch-rtdata_CMakeLists.txt (revision 525752) @@ -0,0 +1,15 @@ +--- rtdata/CMakeLists.txt.orig 2020-02-04 06:39:52 UTC ++++ rtdata/CMakeLists.txt +@@ -29,9 +29,12 @@ if(UNIX) + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/rawtherapee.desktop" DESTINATION ${DESKTOPDIR}) + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-16.png" DESTINATION "${ICONSDIR}/hicolor/16x16/apps" RENAME rawtherapee.png) + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-24.png" DESTINATION "${ICONSDIR}/hicolor/24x24/apps" RENAME rawtherapee.png) ++ install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-32.png" DESTINATION "${ICONSDIR}/hicolor/32x32/apps" RENAME rawtherapee.png) + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-48.png" DESTINATION "${ICONSDIR}/hicolor/48x48/apps" RENAME rawtherapee.png) ++ install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-64.png" DESTINATION "${ICONSDIR}/hicolor/64x64/apps" RENAME rawtherapee.png) + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-128.png" DESTINATION "${ICONSDIR}/hicolor/128x128/apps" RENAME rawtherapee.png) + install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/png/rawtherapee-logo-256.png" DESTINATION "${ICONSDIR}/hicolor/256x256/apps" RENAME rawtherapee.png) ++ install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/images/svg/rt-logo.svg" DESTINATION "${ICONSDIR}/hicolor/scalable/apps" RENAME rawtherapee.svg) + endif() + + install(FILES ${LANGUAGEFILES} DESTINATION "${DATADIR}/languages") Property changes on: head/graphics/rawtherapee/files/patch-rtdata_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/graphics/rawtherapee/files/patch-rtengine_dcraw.cc =================================================================== --- head/graphics/rawtherapee/files/patch-rtengine_dcraw.cc (nonexistent) +++ head/graphics/rawtherapee/files/patch-rtengine_dcraw.cc (revision 525752) @@ -0,0 +1,16 @@ +https://github.com/Beep6581/RawTherapee/commit/4221fdf31e43658cef98ad660ad398b8ae81b8d7 + +fix regression in Canon sRAW/mRAW black level computation, taken from… + +… ART, fixes #5638 + +--- rtengine/dcraw.cc.orig 2020-02-04 06:39:52 UTC ++++ rtengine/dcraw.cc +@@ -9868,6 +9868,7 @@ void CLASS identify() + filters = 0; + tiff_samples = colors = 3; + load_raw = &CLASS canon_sraw_load_raw; ++ FORC4 cblack[c] = 0; // ALB + } else if (!strcmp(model,"PowerShot 600")) { + height = 613; + width = 854; Property changes on: head/graphics/rawtherapee/files/patch-rtengine_dcraw.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/graphics/rawtherapee/files/patch-rtengine_imagedata.cc =================================================================== --- head/graphics/rawtherapee/files/patch-rtengine_imagedata.cc (revision 525751) +++ head/graphics/rawtherapee/files/patch-rtengine_imagedata.cc (revision 525752) @@ -1,11 +1,11 @@ ---- rtengine/imagedata.cc.orig 2018-12-18 19:12:08 UTC +--- rtengine/imagedata.cc.orig 2020-02-04 06:39:52 UTC +++ rtengine/imagedata.cc -@@ -413,7 +413,7 @@ FrameData::FrameData (rtexif::TagDirectory* frameRootD +@@ -506,7 +506,7 @@ FrameData::FrameData(rtexif::TagDirectory* frameRootDi if (baseIsoTag) { std::string isoData = baseIsoTag->valueToString(); if (isoData.size() > 1) { - iso_speed = stoi(isoData); + iso_speed = std::stoi(isoData); } } } Index: head/graphics/rawtherapee/pkg-plist =================================================================== --- head/graphics/rawtherapee/pkg-plist (revision 525751) +++ head/graphics/rawtherapee/pkg-plist (revision 525752) @@ -1,556 +1,570 @@ @comment env LC_ALL=C sort -f bin/rawtherapee bin/rawtherapee-cli man/man1/rawtherapee.1.gz share/applications/rawtherapee.desktop 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/64x64/apps/rawtherapee.png share/icons/hicolor/48x48/apps/rawtherapee.png +share/icons/hicolor/scalable/apps/rawtherapee.svg share/metainfo/com.rawtherapee.RawTherapee.appdata.xml %%PORTDOCS%%%%DOCSDIR%%/AboutThisBuild.txt %%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt %%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES.txt %%DATADIR%%/camconst.json %%DATADIR%%/dcpprofiles/camera_model_aliases.json %%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 III.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 D60.dcp +%%DATADIR%%/dcpprofiles/Canon EOS RP.dcp %%DATADIR%%/dcpprofiles/Canon EOS-1D Mark III.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/FUJIFILM FinePix F600EXR.dcp %%DATADIR%%/dcpprofiles/Fujifilm FinePix S9500.dcp %%DATADIR%%/dcpprofiles/FUJIFILM GFX 50R.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E1.dcp %%DATADIR%%/dcpprofiles/Fujifilm X-E2.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-Pro2.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-S1.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T1.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X-T2.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X-T10.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X-T20.dcp +%%DATADIR%%/dcpprofiles/FUJIFILM X-T30.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X100S.dcp %%DATADIR%%/dcpprofiles/FUJIFILM X100T.dcp %%DATADIR%%/dcpprofiles/Leaf Aptus 75.dcp %%DATADIR%%/dcpprofiles/LG Mobile LG-H815.dcp %%DATADIR%%/dcpprofiles/MINOLTA DYNAX 7D.dcp %%DATADIR%%/dcpprofiles/NIKON COOLPIX P7800.dcp %%DATADIR%%/dcpprofiles/Nikon D200.dcp %%DATADIR%%/dcpprofiles/NIKON D300.dcp %%DATADIR%%/dcpprofiles/Nikon D3000.dcp %%DATADIR%%/dcpprofiles/Nikon D3100.dcp %%DATADIR%%/dcpprofiles/Nikon D3S.dcp %%DATADIR%%/dcpprofiles/NIKON D50.dcp %%DATADIR%%/dcpprofiles/NIKON D5000.dcp %%DATADIR%%/dcpprofiles/Nikon D5100.dcp %%DATADIR%%/dcpprofiles/NIKON D5600.dcp %%DATADIR%%/dcpprofiles/NIKON D600.dcp %%DATADIR%%/dcpprofiles/NIKON D700.dcp %%DATADIR%%/dcpprofiles/Nikon D7000.dcp %%DATADIR%%/dcpprofiles/NIKON D70s.dcp %%DATADIR%%/dcpprofiles/NIKON D7200.dcp %%DATADIR%%/dcpprofiles/NIKON D750.dcp %%DATADIR%%/dcpprofiles/NIKON D80.dcp %%DATADIR%%/dcpprofiles/NIKON D800E.dcp %%DATADIR%%/dcpprofiles/NIKON D810.dcp %%DATADIR%%/dcpprofiles/Olympus E-1.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-510.dcp %%DATADIR%%/dcpprofiles/Olympus E-520.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M10.dcp %%DATADIR%%/dcpprofiles/OLYMPUS E-M1MarkII.dcp %%DATADIR%%/dcpprofiles/Olympus E-M5.dcp %%DATADIR%%/dcpprofiles/Olympus E-P2.dcp %%DATADIR%%/dcpprofiles/Olympus XZ-1.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-G9.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-GX9.dcp %%DATADIR%%/dcpprofiles/Panasonic DC-S1.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-5 II.dcp %%DATADIR%%/dcpprofiles/PENTAX K-5.dcp %%DATADIR%%/dcpprofiles/Pentax K-r.dcp %%DATADIR%%/dcpprofiles/PENTAX K10D.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 DSLR-A580.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A700.dcp %%DATADIR%%/dcpprofiles/Sony DSLR-A900.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-6000.dcp +%%DATADIR%%/dcpprofiles/SONY ILCE-6300.dcp +%%DATADIR%%/dcpprofiles/SONY ILCE-6500.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7M2.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7M3.dcp %%DATADIR%%/dcpprofiles/SONY ILCE-7RM3.dcp %%DATADIR%%/dcpprofiles/Sony NEX-5N.dcp %%DATADIR%%/dcpprofiles/Sony SLT-A55V.dcp %%DATADIR%%/dcpprofiles/SONY SLT-A99V.dcp %%DATADIR%%/dcpprofiles/YI TECHNOLOGY M1.dcp %%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/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/input/Sony DSLR-A700.icc %%DATADIR%%/iccprofiles/input/Sony DSLR-A900.icc %%DATADIR%%/iccprofiles/input/Sony SLT-A55V.icc %%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_sRGB.icc %%DATADIR%%/iccprofiles/output/RTv2_Wide.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_sRGB.icc %%DATADIR%%/iccprofiles/output/RTv4_Wide.icc %%DATADIR%%/images/add-small.svg %%DATADIR%%/images/add.svg %%DATADIR%%/images/aperture.svg %%DATADIR%%/images/arrow-down-small.svg %%DATADIR%%/images/arrow-left-small.svg %%DATADIR%%/images/arrow-right-small.svg %%DATADIR%%/images/arrow-up-small.svg %%DATADIR%%/images/arrow-updown.svg %%DATADIR%%/images/arrow2-left.svg %%DATADIR%%/images/arrow2-right.svg %%DATADIR%%/images/atom.svg %%DATADIR%%/images/bayer.svg %%DATADIR%%/images/beforeafter.svg %%DATADIR%%/images/cancel-small.svg %%DATADIR%%/images/cancel.svg %%DATADIR%%/images/circle-black-small.svg %%DATADIR%%/images/circle-blue-green-small.svg %%DATADIR%%/images/circle-blue-red-small.svg %%DATADIR%%/images/circle-blue-small.svg %%DATADIR%%/images/circle-blue-yellow-small.svg %%DATADIR%%/images/circle-cyan-red-small.svg %%DATADIR%%/images/circle-cyan-small.svg %%DATADIR%%/images/circle-darkgray-small.svg %%DATADIR%%/images/circle-empty-blue-small.svg %%DATADIR%%/images/circle-empty-darkgray-small.svg %%DATADIR%%/images/circle-empty-gray-small.svg %%DATADIR%%/images/circle-empty-green-small.svg %%DATADIR%%/images/circle-empty-purple-small.svg %%DATADIR%%/images/circle-empty-red-small.svg %%DATADIR%%/images/circle-empty-yellow-small.svg %%DATADIR%%/images/circle-gray-blue-small.svg %%DATADIR%%/images/circle-gray-green-small.svg %%DATADIR%%/images/circle-gray-red-small.svg %%DATADIR%%/images/circle-gray-small.svg %%DATADIR%%/images/circle-green-blue-small.svg %%DATADIR%%/images/circle-green-red-small.svg %%DATADIR%%/images/circle-green-small.svg %%DATADIR%%/images/circle-magenta-small.svg %%DATADIR%%/images/circle-orange-small.svg %%DATADIR%%/images/circle-purple-small.svg %%DATADIR%%/images/circle-red-blue-small.svg %%DATADIR%%/images/circle-red-cyan-small.svg %%DATADIR%%/images/circle-red-green-small.svg %%DATADIR%%/images/circle-red-small.svg %%DATADIR%%/images/circle-white-small.svg %%DATADIR%%/images/circle-yellow-blue-small.svg %%DATADIR%%/images/circle-yellow-small.svg %%DATADIR%%/images/color-circles.svg %%DATADIR%%/images/color-picker-add-hicontrast.svg %%DATADIR%%/images/color-picker-add.svg %%DATADIR%%/images/color-picker-bars.svg %%DATADIR%%/images/color-picker-hicontrast.svg %%DATADIR%%/images/color-picker-hide.svg %%DATADIR%%/images/color-picker-small.svg %%DATADIR%%/images/color-picker.svg %%DATADIR%%/images/contrastmask-off.svg %%DATADIR%%/images/contrastmask-on.svg %%DATADIR%%/images/copy.svg %%DATADIR%%/images/crop-auto-small.svg %%DATADIR%%/images/crop-auto.svg %%DATADIR%%/images/crop-point-hicontrast.svg %%DATADIR%%/images/crop-small.svg %%DATADIR%%/images/crop.svg %%DATADIR%%/images/crossed-arrows-in.svg %%DATADIR%%/images/crossed-arrows-out.svg %%DATADIR%%/images/crosshair-adjust.svg %%DATADIR%%/images/crosshair-hicontrast.svg %%DATADIR%%/images/crosshair-node-curve.svg %%DATADIR%%/images/crosshair-small.svg %%DATADIR%%/images/curve-catmullrom-small.svg %%DATADIR%%/images/curve-catmullrom.svg %%DATADIR%%/images/curve-controlpoints-small.svg %%DATADIR%%/images/curve-controlpoints.svg %%DATADIR%%/images/curve-flat-small.svg %%DATADIR%%/images/curve-flat.svg %%DATADIR%%/images/curve-linear-small.svg %%DATADIR%%/images/curve-linear.svg %%DATADIR%%/images/curve-nurbs-small.svg %%DATADIR%%/images/curve-nurbs.svg %%DATADIR%%/images/curve-parametric-small.svg %%DATADIR%%/images/curve-parametric.svg %%DATADIR%%/images/curve-spline-small.svg %%DATADIR%%/images/curve-spline.svg %%DATADIR%%/images/detail.svg %%DATADIR%%/images/device-floppy.svg %%DATADIR%%/images/device-hdd.svg %%DATADIR%%/images/device-network.svg %%DATADIR%%/images/device-optical.svg %%DATADIR%%/images/device-usb.svg %%DATADIR%%/images/distortion-auto-small.svg %%DATADIR%%/images/distortion-auto.svg %%DATADIR%%/images/distortion-barrel-small.svg %%DATADIR%%/images/distortion-barrel.svg %%DATADIR%%/images/distortion-pincushion-small.svg %%DATADIR%%/images/distortion-pincushion.svg %%DATADIR%%/images/edit-point.svg %%DATADIR%%/images/empty.png %%DATADIR%%/images/equilizer-narrow.svg %%DATADIR%%/images/equilizer-wide.svg %%DATADIR%%/images/expander-closed-small.svg %%DATADIR%%/images/expander-open-small.svg %%DATADIR%%/images/exposure.svg %%DATADIR%%/images/filetype-hdr.svg %%DATADIR%%/images/filetype-ps.svg %%DATADIR%%/images/filter-clear.svg %%DATADIR%%/images/filter-original.svg %%DATADIR%%/images/filter-original2.svg %%DATADIR%%/images/filter.svg %%DATADIR%%/images/flip-horizontal.svg %%DATADIR%%/images/flip-vertical.svg %%DATADIR%%/images/focusscreen-off.svg %%DATADIR%%/images/focusscreen-on.svg %%DATADIR%%/images/folder-closed-home-small.svg %%DATADIR%%/images/folder-closed-home.svg %%DATADIR%%/images/folder-closed-recent-small.svg %%DATADIR%%/images/folder-closed-recent.svg %%DATADIR%%/images/folder-closed-small.svg %%DATADIR%%/images/folder-closed.svg %%DATADIR%%/images/folder-open-recent-small.svg %%DATADIR%%/images/folder-open-recent.svg %%DATADIR%%/images/folder-open-small.svg %%DATADIR%%/images/folder-open.svg %%DATADIR%%/images/fullscreen-enter.svg %%DATADIR%%/images/fullscreen-leave.svg %%DATADIR%%/images/gamut-hist.svg %%DATADIR%%/images/gamut-plus.svg %%DATADIR%%/images/gamut-softproof.svg %%DATADIR%%/images/gamut-warning.svg %%DATADIR%%/images/gamut_srgb_prophoto_xy.svg %%DATADIR%%/images/gears-pause.svg %%DATADIR%%/images/gears-play.svg %%DATADIR%%/images/gears-small.svg %%DATADIR%%/images/gears.svg %%DATADIR%%/images/goto-end-small.svg %%DATADIR%%/images/goto-start-small.svg %%DATADIR%%/images/hand-closed-hicontrast.svg %%DATADIR%%/images/hand-open-hicontrast.svg %%DATADIR%%/images/hand-open.svg %%DATADIR%%/images/histogram-bar-off-small.svg %%DATADIR%%/images/histogram-bar-on-small.svg %%DATADIR%%/images/histogram-bayer-off-small.svg %%DATADIR%%/images/histogram-bayer-on-small.svg %%DATADIR%%/images/histogram-blue-off-small.svg %%DATADIR%%/images/histogram-blue-on-small.svg %%DATADIR%%/images/histogram-gold-off-small.svg %%DATADIR%%/images/histogram-gold-on-small.svg %%DATADIR%%/images/histogram-green-off-small.svg %%DATADIR%%/images/histogram-green-on-small.svg %%DATADIR%%/images/histogram-mode-linear-small.svg %%DATADIR%%/images/histogram-mode-logx-small.svg %%DATADIR%%/images/histogram-mode-logxy-small.svg %%DATADIR%%/images/histogram-red-off-small.svg %%DATADIR%%/images/histogram-red-on-small.svg %%DATADIR%%/images/histogram-silver-off-small.svg %%DATADIR%%/images/histogram-silver-on-small.svg %%DATADIR%%/images/info.svg %%DATADIR%%/images/intent-absolute.svg %%DATADIR%%/images/intent-perceptual.svg %%DATADIR%%/images/intent-relative.svg %%DATADIR%%/images/intent-saturation.svg %%DATADIR%%/images/magnifier-1to1-small.svg %%DATADIR%%/images/magnifier-1to1.svg %%DATADIR%%/images/magnifier-crop.svg %%DATADIR%%/images/magnifier-fit.svg %%DATADIR%%/images/magnifier-minus-small.svg %%DATADIR%%/images/magnifier-minus.svg %%DATADIR%%/images/magnifier-plus-small.svg %%DATADIR%%/images/magnifier-plus.svg %%DATADIR%%/images/magnifier.svg %%DATADIR%%/images/metadata.svg %%DATADIR%%/images/node-move-nw-se-hicontrast.svg %%DATADIR%%/images/node-move-sw-ne-hicontrast.svg %%DATADIR%%/images/node-move-x-hicontrast.svg %%DATADIR%%/images/node-move-xy-hicontrast.svg %%DATADIR%%/images/node-move-y-hicontrast.svg %%DATADIR%%/images/one-to-one-small.svg %%DATADIR%%/images/ornament1.svg %%DATADIR%%/images/padlock-locked-small.svg %%DATADIR%%/images/padlock-unlocked-small.svg %%DATADIR%%/images/palette-brush.svg %%DATADIR%%/images/panel-to-bottom.svg %%DATADIR%%/images/panel-to-left.svg %%DATADIR%%/images/panel-to-right.svg %%DATADIR%%/images/panel-to-top.svg %%DATADIR%%/images/paste.svg %%DATADIR%%/images/perspective-horizontal-left-small.svg %%DATADIR%%/images/perspective-horizontal-left.svg %%DATADIR%%/images/perspective-horizontal-right-small.svg %%DATADIR%%/images/perspective-horizontal-right.svg %%DATADIR%%/images/perspective-vertical-bottom-small.svg %%DATADIR%%/images/perspective-vertical-bottom.svg %%DATADIR%%/images/perspective-vertical-top-small.svg %%DATADIR%%/images/perspective-vertical-top.svg %%DATADIR%%/images/power-inconsistent-small.svg %%DATADIR%%/images/power-off-small.svg %%DATADIR%%/images/power-on-small.svg %%DATADIR%%/images/preferences.svg %%DATADIR%%/images/profile-filled.svg %%DATADIR%%/images/profile-partial.svg +%%DATADIR%%/images/questionmark.svg %%DATADIR%%/images/rawtherapee-logo-128.png %%DATADIR%%/images/rawtherapee-logo-16.png %%DATADIR%%/images/rawtherapee-logo-24.png %%DATADIR%%/images/rawtherapee-logo-256.png %%DATADIR%%/images/rawtherapee-logo-32.png %%DATADIR%%/images/rawtherapee-logo-48.png %%DATADIR%%/images/rawtherapee-logo-64.png %%DATADIR%%/images/rawtherapee.ico %%DATADIR%%/images/rawtherapee_ico.xcf %%DATADIR%%/images/redo-all.svg %%DATADIR%%/images/redo-small.svg %%DATADIR%%/images/redo.svg %%DATADIR%%/images/refresh-red-small.svg %%DATADIR%%/images/refresh-small.svg %%DATADIR%%/images/refresh.svg %%DATADIR%%/images/remove-small.svg %%DATADIR%%/images/remove.svg %%DATADIR%%/images/rotate-aroundnode-hicontrast.svg %%DATADIR%%/images/rotate-aroundnode.svg %%DATADIR%%/images/rotate-left-90.svg %%DATADIR%%/images/rotate-left-small.svg %%DATADIR%%/images/rotate-left.svg %%DATADIR%%/images/rotate-right-90.svg %%DATADIR%%/images/rotate-right-small.svg %%DATADIR%%/images/rotate-right.svg %%DATADIR%%/images/rotate-straighten-small.svg %%DATADIR%%/images/rotate-straighten.svg %%DATADIR%%/images/rt-logo.svg %%DATADIR%%/images/save-small.svg %%DATADIR%%/images/save.svg %%DATADIR%%/images/saved-no-small.svg %%DATADIR%%/images/saved-yes-small.svg %%DATADIR%%/images/splash.svg +%%DATADIR%%/images/splash_template.svg %%DATADIR%%/images/square-toggle-black-off-narrow.svg %%DATADIR%%/images/square-toggle-black-on-narrow.svg %%DATADIR%%/images/square-toggle-blue-off-narrow.svg %%DATADIR%%/images/square-toggle-blue-on-narrow.svg %%DATADIR%%/images/square-toggle-gray-off-narrow.svg %%DATADIR%%/images/square-toggle-gray-on-narrow.svg %%DATADIR%%/images/square-toggle-green-off-narrow.svg %%DATADIR%%/images/square-toggle-green-on-narrow.svg %%DATADIR%%/images/square-toggle-luminosity-off-narrow.svg %%DATADIR%%/images/square-toggle-luminosity-on-narrow.svg %%DATADIR%%/images/square-toggle-red-off-narrow.svg %%DATADIR%%/images/square-toggle-red-on-narrow.svg %%DATADIR%%/images/square-toggle-theme-off-narrow.svg %%DATADIR%%/images/square-toggle-theme-on-narrow.svg %%DATADIR%%/images/square-toggle-white-off-narrow.svg %%DATADIR%%/images/square-toggle-white-on-narrow.svg %%DATADIR%%/images/star-gold-hollow-narrow.svg %%DATADIR%%/images/star-gold-hollow-small.svg %%DATADIR%%/images/star-gold-narrow.svg %%DATADIR%%/images/star-gold-small.svg %%DATADIR%%/images/star-hollow-narrow.svg %%DATADIR%%/images/star-hollow-small.svg %%DATADIR%%/images/star-narrow.svg %%DATADIR%%/images/star-small.svg %%DATADIR%%/images/star.svg %%DATADIR%%/images/template-16.svg %%DATADIR%%/images/template-24.svg %%DATADIR%%/images/template-narrow.svg %%DATADIR%%/images/tick-green-hollow-small.svg %%DATADIR%%/images/tick-green-hollow.svg %%DATADIR%%/images/tick-green-small.svg %%DATADIR%%/images/tick-green.svg %%DATADIR%%/images/tick-hollow-small.svg %%DATADIR%%/images/tick-small.svg %%DATADIR%%/images/tick.svg %%DATADIR%%/images/transform.svg %%DATADIR%%/images/trash-delete.svg %%DATADIR%%/images/trash-empty-show.svg %%DATADIR%%/images/trash-empty.svg %%DATADIR%%/images/trash-full-show.svg %%DATADIR%%/images/trash-full.svg %%DATADIR%%/images/trash-hide-deleted.svg %%DATADIR%%/images/trash-remove-small.svg %%DATADIR%%/images/trash-remove.svg %%DATADIR%%/images/trash-small.svg %%DATADIR%%/images/undo-all.svg %%DATADIR%%/images/undo-small.svg %%DATADIR%%/images/undo.svg %%DATADIR%%/images/warning-highlights.svg %%DATADIR%%/images/warning-shadows.svg %%DATADIR%%/images/warning.svg %%DATADIR%%/images/wavelets.svg %%DATADIR%%/images/wb-auto-small.svg %%DATADIR%%/images/wb-auto.svg %%DATADIR%%/images/wb-camera-small.svg %%DATADIR%%/images/wb-camera.svg %%DATADIR%%/images/wb-cloudy-small.svg %%DATADIR%%/images/wb-cloudy.svg %%DATADIR%%/images/wb-custom-small.svg %%DATADIR%%/images/wb-custom.svg %%DATADIR%%/images/wb-flash-small.svg %%DATADIR%%/images/wb-flash.svg %%DATADIR%%/images/wb-fluorescent-small.svg %%DATADIR%%/images/wb-fluorescent.svg %%DATADIR%%/images/wb-lamp-small.svg %%DATADIR%%/images/wb-lamp.svg %%DATADIR%%/images/wb-led-small.svg %%DATADIR%%/images/wb-led.svg %%DATADIR%%/images/wb-shade-small.svg %%DATADIR%%/images/wb-shade.svg %%DATADIR%%/images/wb-sun-small.svg %%DATADIR%%/images/wb-sun.svg %%DATADIR%%/images/wb-tungsten-small.svg %%DATADIR%%/images/wb-tungsten.svg %%DATADIR%%/images/wb-water-small.svg %%DATADIR%%/images/wb-water.svg %%DATADIR%%/images/window-add.svg %%DATADIR%%/languages/Catala %%DATADIR%%/languages/Chinese (Simplified) %%DATADIR%%/languages/Czech %%DATADIR%%/languages/default %%DATADIR%%/languages/Deutsch %%DATADIR%%/languages/English (UK) %%DATADIR%%/languages/English (US) %%DATADIR%%/languages/Espanol %%DATADIR%%/languages/Francais %%DATADIR%%/languages/Italiano %%DATADIR%%/languages/Japanese %%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%%/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/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%%/sounds/BatchComplete.wav %%DATADIR%%/sounds/Empty.wav %%DATADIR%%/sounds/ProcessComplete.wav %%DATADIR%%/themes/images/svg/twb/checkbox-checked-disabled.svg %%DATADIR%%/themes/images/svg/twb/checkbox-checked.svg %%DATADIR%%/themes/images/svg/twb/checkbox-inconsistent-disabled.svg %%DATADIR%%/themes/images/svg/twb/checkbox-inconsistent.svg %%DATADIR%%/themes/images/svg/twb/checkbox-unchecked-disabled.svg %%DATADIR%%/themes/images/svg/twb/checkbox-unchecked.svg %%DATADIR%%/themes/images/svg/twb/radio-checked-disabled.svg %%DATADIR%%/themes/images/svg/twb/radio-checked.svg %%DATADIR%%/themes/images/svg/twb/radio-inconsistent-disabled.svg %%DATADIR%%/themes/images/svg/twb/radio-inconsistent.svg %%DATADIR%%/themes/images/svg/twb/radio-unchecked-disabled.svg %%DATADIR%%/themes/images/svg/twb/radio-unchecked.svg %%DATADIR%%/themes/images/twb/checkbox-checked-disabled.png %%DATADIR%%/themes/images/twb/checkbox-checked.png %%DATADIR%%/themes/images/twb/checkbox-inconsistent-disabled.png %%DATADIR%%/themes/images/twb/checkbox-inconsistent.png %%DATADIR%%/themes/images/twb/checkbox-unchecked-disabled.png %%DATADIR%%/themes/images/twb/checkbox-unchecked.png %%DATADIR%%/themes/images/twb/radio-checked-disabled.png %%DATADIR%%/themes/images/twb/radio-checked.png %%DATADIR%%/themes/images/twb/radio-inconsistent-disabled.png %%DATADIR%%/themes/images/twb/radio-inconsistent.png %%DATADIR%%/themes/images/twb/radio-unchecked-disabled.png %%DATADIR%%/themes/images/twb/radio-unchecked.png %%DATADIR%%/themes/RawTherapee-GTK3-20_.css %%DATADIR%%/themes/RawTherapee-GTK3-_19.css %%DATADIR%%/themes/size.css %%DATADIR%%/themes/system.iconset %%DATADIR%%/themes/TooWaBlue - Bright-GTK3-20_.css %%DATADIR%%/themes/TooWaBlue - Dark-GTK3-20_.css %%DATADIR%%/themes/TooWaBlue-GTK3-20_.css %%DATADIR%%/themes/TooWaBlue-GTK3-_19.css %%DATADIR%%/themes/TooWaGrey - Average Surround-GTK3-20_.css %%DATADIR%%/themes/TooWaGrey - Bright-GTK3-20_.css %%DATADIR%%/themes/TooWaGrey - Dark-GTK3-20_.css %%DATADIR%%/themes/TooWaGrey-GTK3-20_.css