Index: multimedia/kdenlive/Makefile =================================================================== --- multimedia/kdenlive/Makefile +++ multimedia/kdenlive/Makefile @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= kdenlive -PORTVERSION= 0.9.10 -PORTREVISION= 3 +PORTVERSION= 17.04.2 CATEGORIES= multimedia kde -MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src/ +MASTER_SITES= KDE/stable/applications/${PORTVERSION}/src/ MAINTAINER= avilla@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite @@ -14,12 +13,15 @@ LIB_DEPENDS= libmlt.so:multimedia/mlt \ libqjson.so:devel/qjson RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ - ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt4 - -USES= cmake kde:4 pkgconfig shared-mime-info tar:bzip2 -USE_KDE= automoc4 kdelibs nepomuk-core -USE_QT4= corelib dbus gui opengl script svg xml \ - moc_build qmake_build rcc_build uic_build + ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 + +USES= cmake kde:5 pkgconfig shared-mime-info tar:xz +USE_KDE= archive bookmarks codecs coreaddons config configwidgets \ + crash dbusaddons doctools filemetadata5 guiaddons i18n \ + iconthemes kio newstuff notifications notifyconfig \ + textwidgets widgetsaddons +USE_QT5= core dbus gui buildtools_build network opengl script svg \ + widgets xml qmake_build USE_XORG= x11 CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" Index: multimedia/kdenlive/distinfo =================================================================== --- multimedia/kdenlive/distinfo +++ multimedia/kdenlive/distinfo @@ -1,2 +1,3 @@ -SHA256 (kdenlive-0.9.10.tar.bz2) = f68fdb39173e69ce422fdd57bbc4ced47711317e538b0101eee6a1bc9cedb763 -SIZE (kdenlive-0.9.10.tar.bz2) = 4666332 +TIMESTAMP = 1497206705 +SHA256 (kdenlive-17.04.2.tar.xz) = 29ce6a4b3b86e20b8eac5332a22067dc8fbde297d6bc144f722bcbb64856fccb +SIZE (kdenlive-17.04.2.tar.xz) = 9370932 Index: multimedia/kdenlive/files/patch-src_scopes_audioscopes_spectrogram.cpp =================================================================== --- multimedia/kdenlive/files/patch-src_scopes_audioscopes_spectrogram.cpp +++ multimedia/kdenlive/files/patch-src_scopes_audioscopes_spectrogram.cpp @@ -15,23 +15,32 @@ ^ [...] ---- src/scopes/audioscopes/spectrogram.cpp.orig 2016-07-12 21:44:03 UTC +--- src/scopes/audioscopes/spectrogram.cpp.orig 2017-06-15 13:00:06 UTC +++ src/scopes/audioscopes/spectrogram.cpp -@@ -245,7 +245,7 @@ QImage Spectrogram::renderHUD(uint) - x = leftDist + (m_innerScopeRect.width()-1) * ((float)hz)/m_freqMax; +@@ -199,7 +199,7 @@ QImage Spectrogram::renderHUD(uint) + if (m_aGrid->isChecked()) { + for (int frameNumber = 0; frameNumber < m_innerScopeRect.height(); frameNumber += minDistY) { + y = topDist + m_innerScopeRect.height() - 1 - frameNumber; +- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(y - mouseY) < (int)textDistY && mouseY < m_innerScopeRect.height() ++ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && qAbs(y - mouseY) < (int)textDistY && mouseY < m_innerScopeRect.height() + && mouseX < m_innerScopeRect.width() && mouseX >= 0; + + davinci.drawLine(leftDist, y, leftDist + m_innerScopeRect.width() - 1, y); +@@ -241,7 +241,7 @@ QImage Spectrogram::renderHUD(uint) + x = leftDist + (m_innerScopeRect.width() - 1) * ((float)hz) / m_freqMax; // Hide text if it would overlap with the text drawn at the mouse position -- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x-(leftDist + mouseX + 20)) < (int) minDistX + 16 -+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs((int)(x-(leftDist + mouseX + 20))) < (int) minDistX + 16 - && mouseX < m_innerScopeRect.width() && mouseX >= 0; +- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 20)) < (int) minDistX + 16 ++ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && qAbs(x - (leftDist + mouseX + 20)) < (int) minDistX + 16 + && mouseX < m_innerScopeRect.width() && mouseX >= 0; if (x <= rightBorder) { -@@ -273,7 +273,7 @@ QImage Spectrogram::renderHUD(uint) +@@ -268,7 +268,7 @@ QImage Spectrogram::renderHUD(uint) } // Draw the line at the very right (maximum frequency) - x = leftDist + m_innerScopeRect.width()-1; -- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x-(leftDist + mouseX + 30)) < (int) minDistX -+ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs((int)(x-(leftDist + mouseX + 30))) < (int) minDistX - && mouseX < m_innerScopeRect.width() && mouseX >= 0; - davinci.drawLine(x, topDist, x, topDist + m_innerScopeRect.height()+6); + x = leftDist + m_innerScopeRect.width() - 1; +- hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && abs(x - (leftDist + mouseX + 30)) < (int) minDistX ++ hideText = m_aTrackMouse->isChecked() && m_mouseWithinWidget && qAbs(x - (leftDist + mouseX + 30)) < (int) minDistX + && mouseX < m_innerScopeRect.width() && mouseX >= 0; + davinci.drawLine(x, topDist, x, topDist + m_innerScopeRect.height() + 6); if (!hideText) { Index: multimedia/kdenlive/pkg-plist =================================================================== --- multimedia/kdenlive/pkg-plist +++ multimedia/kdenlive/pkg-plist @@ -1,179 +1,253 @@ -bin/kdenlive -bin/kdenlive_render -lib/kde4/libkdenlive_sampleplugin.so -lib/kde4/westleypreview.so -man/man1/kdenlive.1.gz -man/man1/kdenlive_render.1.gz -share/applications/kde4/kdenlive.desktop -share/apps/kdenlive/banner.png -share/apps/kdenlive/blacklisted_effects.txt -share/apps/kdenlive/blacklisted_transitions.txt -share/apps/kdenlive/effects/audiobalance.xml -share/apps/kdenlive/effects/audiopan.xml -share/apps/kdenlive/effects/audiowave.xml -share/apps/kdenlive/effects/automask.xml -share/apps/kdenlive/effects/boxblur.xml -share/apps/kdenlive/effects/brightness.xml -share/apps/kdenlive/effects/channelcopy.xml -share/apps/kdenlive/effects/charcoal.xml -share/apps/kdenlive/effects/chroma.xml -share/apps/kdenlive/effects/chroma_hold.xml -share/apps/kdenlive/effects/crop.xml -share/apps/kdenlive/effects/dust.xml -share/apps/kdenlive/effects/dynamictext.xml -share/apps/kdenlive/effects/fade_from_black.xml -share/apps/kdenlive/effects/fade_to_black.xml -share/apps/kdenlive/effects/fadein.xml -share/apps/kdenlive/effects/fadeout.xml -share/apps/kdenlive/effects/freeze.xml -share/apps/kdenlive/effects/frei0r_alpha0ps.xml -share/apps/kdenlive/effects/frei0r_alphagrad.xml -share/apps/kdenlive/effects/frei0r_alphaspot.xml -share/apps/kdenlive/effects/frei0r_balanc0r.xml -share/apps/kdenlive/effects/frei0r_baltan.xml -share/apps/kdenlive/effects/frei0r_bezier_curves.xml -share/apps/kdenlive/effects/frei0r_brightness.xml -share/apps/kdenlive/effects/frei0r_c0rners.xml -share/apps/kdenlive/effects/frei0r_cartoon.xml -share/apps/kdenlive/effects/frei0r_cluster.xml -share/apps/kdenlive/effects/frei0r_colgate.xml -share/apps/kdenlive/effects/frei0r_coloradj_rgb.xml -share/apps/kdenlive/effects/frei0r_colordistance.xml -share/apps/kdenlive/effects/frei0r_colortap.xml -share/apps/kdenlive/effects/frei0r_contrast0r.xml -share/apps/kdenlive/effects/frei0r_curves.xml -share/apps/kdenlive/effects/frei0r_d90stairsteppingfix.xml -share/apps/kdenlive/effects/frei0r_defish0r.xml -share/apps/kdenlive/effects/frei0r_delay0r.xml -share/apps/kdenlive/effects/frei0r_delaygrab.xml -share/apps/kdenlive/effects/frei0r_distort0r.xml -share/apps/kdenlive/effects/frei0r_edgeglow.xml -share/apps/kdenlive/effects/frei0r_equaliz0r.xml -share/apps/kdenlive/effects/frei0r_facebl0r.xml -share/apps/kdenlive/effects/frei0r_facedetect.xml -share/apps/kdenlive/effects/frei0r_flippo.xml -share/apps/kdenlive/effects/frei0r_glow.xml -share/apps/kdenlive/effects/frei0r_hqdn3d.xml -share/apps/kdenlive/effects/frei0r_hueshift0r.xml -share/apps/kdenlive/effects/frei0r_iirblur.xml -share/apps/kdenlive/effects/frei0r_keyspillm0pup.xml -share/apps/kdenlive/effects/frei0r_lenscorrection.xml -share/apps/kdenlive/effects/frei0r_letterb0xed.xml -share/apps/kdenlive/effects/frei0r_levels.xml -share/apps/kdenlive/effects/frei0r_lightgraffiti.xml -share/apps/kdenlive/effects/frei0r_luminance.xml -share/apps/kdenlive/effects/frei0r_mask0mate.xml -share/apps/kdenlive/effects/frei0r_medians.xml -share/apps/kdenlive/effects/frei0r_nervous.xml -share/apps/kdenlive/effects/frei0r_nosync0r.xml -share/apps/kdenlive/effects/frei0r_pixeliz0r.xml -share/apps/kdenlive/effects/frei0r_pr0be.xml -share/apps/kdenlive/effects/frei0r_pr0file.xml -share/apps/kdenlive/effects/frei0r_primaries.xml -share/apps/kdenlive/effects/frei0r_rgbparade.xml -share/apps/kdenlive/effects/frei0r_saturat0r.xml -share/apps/kdenlive/effects/frei0r_scale0tilt.xml -share/apps/kdenlive/effects/frei0r_scanline0r.xml -share/apps/kdenlive/effects/frei0r_select0r.xml -share/apps/kdenlive/effects/frei0r_sharpness.xml -share/apps/kdenlive/effects/frei0r_sobel.xml -share/apps/kdenlive/effects/frei0r_sopsat.xml -share/apps/kdenlive/effects/frei0r_squareblur.xml -share/apps/kdenlive/effects/frei0r_tehroxx0r.xml -share/apps/kdenlive/effects/frei0r_three_point_balance.xml -share/apps/kdenlive/effects/frei0r_threelay0r.xml -share/apps/kdenlive/effects/frei0r_threshold0r.xml -share/apps/kdenlive/effects/frei0r_timeout.xml -share/apps/kdenlive/effects/frei0r_tint0r.xml -share/apps/kdenlive/effects/frei0r_twolay0r.xml -share/apps/kdenlive/effects/frei0r_vectorscope.xml -share/apps/kdenlive/effects/frei0r_vertigo.xml -share/apps/kdenlive/effects/frei0r_vignette.xml -share/apps/kdenlive/effects/gain.xml -share/apps/kdenlive/effects/gamma.xml -share/apps/kdenlive/effects/grain.xml -share/apps/kdenlive/effects/greyscale.xml -share/apps/kdenlive/effects/invert.xml -share/apps/kdenlive/effects/mirror.xml -share/apps/kdenlive/effects/mute.xml -share/apps/kdenlive/effects/normalise.xml -share/apps/kdenlive/effects/obscure.xml -share/apps/kdenlive/effects/oldfilm.xml -share/apps/kdenlive/effects/pan_zoom.xml -share/apps/kdenlive/effects/region.xml -share/apps/kdenlive/effects/rotation.xml -share/apps/kdenlive/effects/rotation_keyframable.xml -share/apps/kdenlive/effects/rotoscoping.xml -share/apps/kdenlive/effects/scratchlines.xml -share/apps/kdenlive/effects/sepia.xml -share/apps/kdenlive/effects/sox_band.xml -share/apps/kdenlive/effects/sox_bass.xml -share/apps/kdenlive/effects/sox_echo.xml -share/apps/kdenlive/effects/sox_flanger.xml -share/apps/kdenlive/effects/sox_gain.xml -share/apps/kdenlive/effects/sox_phaser.xml -share/apps/kdenlive/effects/sox_stretch.xml -share/apps/kdenlive/effects/speed.xml -share/apps/kdenlive/effects/swapchannels.xml -share/apps/kdenlive/effects/tcolor.xml -share/apps/kdenlive/effects/threshold.xml -share/apps/kdenlive/effects/update/frei0r.balanc0r.js -share/apps/kdenlive/effects/update/frei0r.cartoon.js -share/apps/kdenlive/effects/update/frei0r.curves.js -share/apps/kdenlive/effects/update/frei0r.levels.js -share/apps/kdenlive/effects/update/frei0r.lightgraffiti.js -share/apps/kdenlive/effects/update/frei0r.select0r.js -share/apps/kdenlive/effects/update/frei0r.sopsat.js -share/apps/kdenlive/effects/update/frei0r.vertigo.js -share/apps/kdenlive/effects/vignette.xml -share/apps/kdenlive/effects/volume.xml -share/apps/kdenlive/effects/wave.xml -share/apps/kdenlive/encodingprofiles.rc -share/apps/kdenlive/export/profiles.xml -share/apps/kdenlive/kdenlive.notifyrc -share/apps/kdenlive/kdenliveui.rc -share/apps/kdenlive/lumas/bi-linear_x.pgm -share/apps/kdenlive/lumas/bi-linear_y.pgm -share/apps/kdenlive/lumas/burst.pgm -share/apps/kdenlive/lumas/checkerboard_small.pgm -share/apps/kdenlive/lumas/clock.pgm -share/apps/kdenlive/lumas/cloud.pgm -share/apps/kdenlive/lumas/curtain.pgm -share/apps/kdenlive/lumas/horizontal_blinds.pgm -share/apps/kdenlive/lumas/linear_x.pgm -share/apps/kdenlive/lumas/linear_y.pgm -share/apps/kdenlive/lumas/radial-bars.pgm -share/apps/kdenlive/lumas/radial.pgm -share/apps/kdenlive/lumas/spiral.pgm -share/apps/kdenlive/lumas/spiral2.pgm -share/apps/kdenlive/lumas/square.pgm -share/apps/kdenlive/lumas/square2-bars.pgm -share/apps/kdenlive/lumas/square2.pgm -share/apps/kdenlive/lumas/symmetric_clock.pgm -share/apps/kdenlive/meta_ffmpeg.png -share/apps/kdenlive/meta_libav.png -share/apps/kdenlive/meta_magiclantern.png -share/apps/kdenlive/metadata.properties -share/apps/kdenlive/pics/novisible.png -share/apps/kdenlive/pics/visible.png -share/apps/kdenlive/timeline_athumbs.png -share/apps/kdenlive/timeline_avthumbs.png -share/apps/kdenlive/timeline_nothumbs.png -share/apps/kdenlive/timeline_vthumbs.png -share/apps/kdenlive/titles/simple-scroll.kdenlivetitle -share/apps/kdenlive/titles/simple-with-date.kdenlivetitle -share/apps/kdenlive/titles/simple.kdenlivetitle -share/config.kcfg/kdenlivesettings.kcfg -share/config/kdenlive_projectprofiles.knsrc -share/config/kdenlive_renderprofiles.knsrc -share/config/kdenlive_titles.knsrc -share/config/kdenlive_wipes.knsrc -share/config/kdenliveeffectscategory.rc -share/config/kdenlivetranscodingrc -%%PORTDOCS%%share/doc/HTML/ca/kdenlive/common +%%DATADIR%%/banner.png +%%DATADIR%%/blacklisted_effects.txt +%%DATADIR%%/blacklisted_transitions.txt +%%DATADIR%%/effects/acompressor.xml +%%DATADIR%%/effects/aecho.xml +%%DATADIR%%/effects/agate.xml +%%DATADIR%%/effects/audiobalance.xml +%%DATADIR%%/effects/audiopan.xml +%%DATADIR%%/effects/audiowave.xml +%%DATADIR%%/effects/audiowaveform.xml +%%DATADIR%%/effects/automask.xml +%%DATADIR%%/effects/avfilter_lut3d.xml +%%DATADIR%%/effects/boxblur.xml +%%DATADIR%%/effects/brightness.xml +%%DATADIR%%/effects/channelcopy.xml +%%DATADIR%%/effects/charcoal.xml +%%DATADIR%%/effects/chroma.xml +%%DATADIR%%/effects/chroma_hold.xml +%%DATADIR%%/effects/crop.xml +%%DATADIR%%/effects/dust.xml +%%DATADIR%%/effects/dynamictext.xml +%%DATADIR%%/effects/fade_from_black.xml +%%DATADIR%%/effects/fade_to_black.xml +%%DATADIR%%/effects/fadein.xml +%%DATADIR%%/effects/fadeout.xml +%%DATADIR%%/effects/freeze.xml +%%DATADIR%%/effects/frei0r_alpha0ps.xml +%%DATADIR%%/effects/frei0r_alphagrad.xml +%%DATADIR%%/effects/frei0r_alphaspot.xml +%%DATADIR%%/effects/frei0r_balanc0r.xml +%%DATADIR%%/effects/frei0r_baltan.xml +%%DATADIR%%/effects/frei0r_bezier_curves.xml +%%DATADIR%%/effects/frei0r_brightness.xml +%%DATADIR%%/effects/frei0r_c0rners.xml +%%DATADIR%%/effects/frei0r_cartoon.xml +%%DATADIR%%/effects/frei0r_cluster.xml +%%DATADIR%%/effects/frei0r_colgate.xml +%%DATADIR%%/effects/frei0r_coloradj_rgb.xml +%%DATADIR%%/effects/frei0r_colordistance.xml +%%DATADIR%%/effects/frei0r_colortap.xml +%%DATADIR%%/effects/frei0r_contrast0r.xml +%%DATADIR%%/effects/frei0r_curves.xml +%%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml +%%DATADIR%%/effects/frei0r_defish0r.xml +%%DATADIR%%/effects/frei0r_delay0r.xml +%%DATADIR%%/effects/frei0r_delaygrab.xml +%%DATADIR%%/effects/frei0r_distort0r.xml +%%DATADIR%%/effects/frei0r_edgeglow.xml +%%DATADIR%%/effects/frei0r_equaliz0r.xml +%%DATADIR%%/effects/frei0r_facebl0r.xml +%%DATADIR%%/effects/frei0r_facedetect.xml +%%DATADIR%%/effects/frei0r_flippo.xml +%%DATADIR%%/effects/frei0r_glow.xml +%%DATADIR%%/effects/frei0r_hqdn3d.xml +%%DATADIR%%/effects/frei0r_hueshift0r.xml +%%DATADIR%%/effects/frei0r_iirblur.xml +%%DATADIR%%/effects/frei0r_keyspillm0pup.xml +%%DATADIR%%/effects/frei0r_lenscorrection.xml +%%DATADIR%%/effects/frei0r_letterb0xed.xml +%%DATADIR%%/effects/frei0r_levels.xml +%%DATADIR%%/effects/frei0r_lightgraffiti.xml +%%DATADIR%%/effects/frei0r_luminance.xml +%%DATADIR%%/effects/frei0r_mask0mate.xml +%%DATADIR%%/effects/frei0r_medians.xml +%%DATADIR%%/effects/frei0r_nervous.xml +%%DATADIR%%/effects/frei0r_nosync0r.xml +%%DATADIR%%/effects/frei0r_pixeliz0r.xml +%%DATADIR%%/effects/frei0r_pr0be.xml +%%DATADIR%%/effects/frei0r_pr0file.xml +%%DATADIR%%/effects/frei0r_primaries.xml +%%DATADIR%%/effects/frei0r_rgbparade.xml +%%DATADIR%%/effects/frei0r_saturat0r.xml +%%DATADIR%%/effects/frei0r_scale0tilt.xml +%%DATADIR%%/effects/frei0r_scanline0r.xml +%%DATADIR%%/effects/frei0r_select0r.xml +%%DATADIR%%/effects/frei0r_sharpness.xml +%%DATADIR%%/effects/frei0r_sobel.xml +%%DATADIR%%/effects/frei0r_sopsat.xml +%%DATADIR%%/effects/frei0r_squareblur.xml +%%DATADIR%%/effects/frei0r_tehroxx0r.xml +%%DATADIR%%/effects/frei0r_three_point_balance.xml +%%DATADIR%%/effects/frei0r_threelay0r.xml +%%DATADIR%%/effects/frei0r_threshold0r.xml +%%DATADIR%%/effects/frei0r_timeout.xml +%%DATADIR%%/effects/frei0r_tint0r.xml +%%DATADIR%%/effects/frei0r_twolay0r.xml +%%DATADIR%%/effects/frei0r_vectorscope.xml +%%DATADIR%%/effects/frei0r_vertigo.xml +%%DATADIR%%/effects/frei0r_vignette.xml +%%DATADIR%%/effects/gain.xml +%%DATADIR%%/effects/gamma.xml +%%DATADIR%%/effects/grain.xml +%%DATADIR%%/effects/greyscale.xml +%%DATADIR%%/effects/invert.xml +%%DATADIR%%/effects/lift_gamma_gain.xml +%%DATADIR%%/effects/loudness.xml +%%DATADIR%%/effects/mirror.xml +%%DATADIR%%/effects/movit_blur.xml +%%DATADIR%%/effects/movit_deconvolution_sharpen.xml +%%DATADIR%%/effects/movit_diffusion.xml +%%DATADIR%%/effects/movit_glow.xml +%%DATADIR%%/effects/movit_lift_gamma_gain.xml +%%DATADIR%%/effects/movit_mirror.xml +%%DATADIR%%/effects/movit_opacity.xml +%%DATADIR%%/effects/movit_rect.xml +%%DATADIR%%/effects/movit_saturation.xml +%%DATADIR%%/effects/movit_unsharp_mask.xml +%%DATADIR%%/effects/movit_vignette.xml +%%DATADIR%%/effects/movit_white_balance.xml +%%DATADIR%%/effects/mute.xml +%%DATADIR%%/effects/normalise.xml +%%DATADIR%%/effects/obscure.xml +%%DATADIR%%/effects/oldfilm.xml +%%DATADIR%%/effects/pan_zoom.xml +%%DATADIR%%/effects/qtblend.xml +%%DATADIR%%/effects/region.xml +%%DATADIR%%/effects/rotation.xml +%%DATADIR%%/effects/rotation_keyframable.xml +%%DATADIR%%/effects/rotoscoping.xml +%%DATADIR%%/effects/scratchlines.xml +%%DATADIR%%/effects/selectivecolor.xml +%%DATADIR%%/effects/sepia.xml +%%DATADIR%%/effects/sox_band.xml +%%DATADIR%%/effects/sox_bass.xml +%%DATADIR%%/effects/sox_echo.xml +%%DATADIR%%/effects/sox_flanger.xml +%%DATADIR%%/effects/sox_gain.xml +%%DATADIR%%/effects/sox_phaser.xml +%%DATADIR%%/effects/sox_stretch.xml +%%DATADIR%%/effects/speed.xml +%%DATADIR%%/effects/swapchannels.xml +%%DATADIR%%/effects/tcolor.xml +%%DATADIR%%/effects/threshold.xml +%%DATADIR%%/effects/tracker.xml +%%DATADIR%%/effects/update/frei0r.balanc0r.js +%%DATADIR%%/effects/update/frei0r.cartoon.js +%%DATADIR%%/effects/update/frei0r.curves.js +%%DATADIR%%/effects/update/frei0r.levels.js +%%DATADIR%%/effects/update/frei0r.lightgraffiti.js +%%DATADIR%%/effects/update/frei0r.select0r.js +%%DATADIR%%/effects/update/frei0r.sopsat.js +%%DATADIR%%/effects/update/frei0r.vertigo.js +%%DATADIR%%/effects/vignette.xml +%%DATADIR%%/effects/volume.xml +%%DATADIR%%/effects/wave.xml +%%DATADIR%%/encodingprofiles.rc +%%DATADIR%%/export/profiles.xml +%%DATADIR%%/generators/count.xml +%%DATADIR%%/generators/frei0r_test_pat_b.xml +%%DATADIR%%/generators/noise.xml +%%DATADIR%%/kdenliveeffectscategory.rc +%%DATADIR%%/kdenlivetranscodingrc +%%DATADIR%%/lumas/HD/bi-linear_x.pgm +%%DATADIR%%/lumas/HD/bi-linear_y.pgm +%%DATADIR%%/lumas/HD/burst.pgm +%%DATADIR%%/lumas/HD/checkerboard_small.pgm +%%DATADIR%%/lumas/HD/clock.pgm +%%DATADIR%%/lumas/HD/cloud.pgm +%%DATADIR%%/lumas/HD/curtain.pgm +%%DATADIR%%/lumas/HD/horizontal_blinds.pgm +%%DATADIR%%/lumas/HD/linear_x.pgm +%%DATADIR%%/lumas/HD/linear_y.pgm +%%DATADIR%%/lumas/HD/radial-bars.pgm +%%DATADIR%%/lumas/HD/radial.pgm +%%DATADIR%%/lumas/HD/spiral.pgm +%%DATADIR%%/lumas/HD/spiral2.pgm +%%DATADIR%%/lumas/HD/square.pgm +%%DATADIR%%/lumas/HD/square2-bars.pgm +%%DATADIR%%/lumas/HD/square2.pgm +%%DATADIR%%/lumas/HD/symmetric_clock.pgm +%%DATADIR%%/lumas/PAL/bi-linear_x.pgm +%%DATADIR%%/lumas/PAL/bi-linear_y.pgm +%%DATADIR%%/lumas/PAL/burst.pgm +%%DATADIR%%/lumas/PAL/checkerboard_small.pgm +%%DATADIR%%/lumas/PAL/clock.pgm +%%DATADIR%%/lumas/PAL/cloud.pgm +%%DATADIR%%/lumas/PAL/curtain.pgm +%%DATADIR%%/lumas/PAL/horizontal_blinds.pgm +%%DATADIR%%/lumas/PAL/linear_x.pgm +%%DATADIR%%/lumas/PAL/linear_y.pgm +%%DATADIR%%/lumas/PAL/radial-bars.pgm +%%DATADIR%%/lumas/PAL/radial.pgm +%%DATADIR%%/lumas/PAL/spiral.pgm +%%DATADIR%%/lumas/PAL/spiral2.pgm +%%DATADIR%%/lumas/PAL/square.pgm +%%DATADIR%%/lumas/PAL/square2-bars.pgm +%%DATADIR%%/lumas/PAL/square2.pgm +%%DATADIR%%/lumas/PAL/symmetric_clock.pgm +%%DATADIR%%/meta_ffmpeg.png +%%DATADIR%%/meta_libav.png +%%DATADIR%%/meta_magiclantern.png +%%DATADIR%%/metadata.properties +%%DATADIR%%/profiles/dci_2160p_2398 +%%DATADIR%%/profiles/dci_2160p_24 +%%DATADIR%%/profiles/dci_2160p_25 +%%DATADIR%%/profiles/dci_2160p_2997 +%%DATADIR%%/profiles/dci_2160p_30 +%%DATADIR%%/profiles/dci_2160p_50 +%%DATADIR%%/profiles/dci_2160p_5994 +%%DATADIR%%/profiles/dci_2160p_60 +%%DATADIR%%/timeline_athumbs.png +%%DATADIR%%/timeline_avthumbs.png +%%DATADIR%%/timeline_nothumbs.png +%%DATADIR%%/timeline_vthumbs.png +%%DATADIR%%/titles/simple-scroll.kdenlivetitle +%%DATADIR%%/titles/simple-with-date.kdenlivetitle +%%DATADIR%%/titles/simple.kdenlivetitle +%%DATADIR%%/transitions/frei0r_cairoaffineblend.xml +%%DATADIR%%/transitions/frei0r_cairoblend.xml +%%DATADIR%%/transitions/qtblend.xml +%%DATADIR%%/transitions/wipe.xml +%%NLS%%share/locale/bs/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ca/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/cs/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/da/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/de/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/el/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/es/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/et/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/fi/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/fr/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ga/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/gl/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/he/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/hr/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/hu/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/it/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ja/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/lt/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/mr/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/nb/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/nds/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/nl/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/pl/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/pt/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ro/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ru/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/sk/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/sl/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/sv/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/tr/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/ug/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/uk/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/kdenlive.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/kdenlive.mo %%PORTDOCS%%share/doc/HTML/ca/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/ca/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/de/kdenlive/common %%PORTDOCS%%share/doc/HTML/de/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/de/kdenlive/index.docbook %%PORTDOCS%%share/doc/HTML/en/kdenlive/Kdenlive-Quickstart-Add-Last-Clip.png @@ -194,46 +268,91 @@ %%PORTDOCS%%share/doc/HTML/en/kdenlive/Kdenlive_Quickstart-Save-Project.png %%PORTDOCS%%share/doc/HTML/en/kdenlive/Kdenlive_Quickstart-Timeline-Clips.png %%PORTDOCS%%share/doc/HTML/en/kdenlive/Kdenlive_Quickstart-TimelineCursor.png -%%PORTDOCS%%share/doc/HTML/en/kdenlive/common %%PORTDOCS%%share/doc/HTML/en/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/en/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/es/kdenlive/common %%PORTDOCS%%share/doc/HTML/es/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/es/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/fr/kdenlive/common %%PORTDOCS%%share/doc/HTML/fr/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/fr/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/it/kdenlive/common %%PORTDOCS%%share/doc/HTML/it/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/it/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/nl/kdenlive/common %%PORTDOCS%%share/doc/HTML/nl/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/nl/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/pt/kdenlive/common %%PORTDOCS%%share/doc/HTML/pt/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/pt/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/pt_BR/kdenlive/common %%PORTDOCS%%share/doc/HTML/pt_BR/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/pt_BR/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/sv/kdenlive/common %%PORTDOCS%%share/doc/HTML/sv/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/sv/kdenlive/index.docbook -%%PORTDOCS%%share/doc/HTML/uk/kdenlive/common %%PORTDOCS%%share/doc/HTML/uk/kdenlive/index.cache.bz2 %%PORTDOCS%%share/doc/HTML/uk/kdenlive/index.docbook +%%QT_PLUGINDIR%%/mltpreview.so +bin/kdenlive +bin/kdenlive_render +etc/xdg/kdenlive.categories +etc/xdg/kdenlive_projectprofiles.knsrc +etc/xdg/kdenlive_renderprofiles.knsrc +etc/xdg/kdenlive_titles.knsrc +etc/xdg/kdenlive_wipes.knsrc +man/man1/kdenlive.1.gz +man/man1/kdenlive_render.1.gz +share/applications/org.kde.kdenlive.desktop +share/config.kcfg/kdenlivesettings.kcfg +share/doc/HTML/ca/kdenlive/Kdenlive-Quickstart-Add-Last-Clip.png +share/doc/HTML/ca/kdenlive/Kdenlive-Quickstart-Add-Transition.png +share/doc/HTML/ca/kdenlive/Kdenlive-Quickstart-EffectStack.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Add-Clips.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Add-Effect.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Effect-Flag.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Fadeout.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Folder-Structure.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Keyframes.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Mainwindow.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-New-Project.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Overlap-Clips.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Renderer.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Rendering.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Resize-Marker.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Save-Project.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-Timeline-Clips.png +share/doc/HTML/ca/kdenlive/Kdenlive_Quickstart-TimelineCursor.png +share/doc/HTML/de/kdenlive/kdenlive_quickstart-add-clips.png +share/doc/HTML/de/kdenlive/kdenlive_quickstart-new-project.png +share/doc/HTML/de/kdenlive/kdenlive_quickstart-save-project.png +share/doc/HTML/fr/kdenlive/Kdenlive-Quickstart-Add-Last-Clip.png +share/doc/HTML/fr/kdenlive/Kdenlive-Quickstart-Add-Transition.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Add-Clips.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Fadeout.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Folder-Structure.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Mainwindow.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Renderer.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Rendering.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Save-Project.png +share/doc/HTML/fr/kdenlive/Kdenlive_Quickstart-Timeline-Clips.png +share/doc/HTML/fr/kdenlive/section 1 - screen 2.png +share/doc/HTML/uk/kdenlive/Kdenlive-Quickstart-Add-Last-Clip.png +share/doc/HTML/uk/kdenlive/Kdenlive-Quickstart-Add-Transition.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Add-Clips.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Add-Effect.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Effect-Flag.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Fadeout.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Folder-Structure.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Mainwindow.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-New-Project.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Overlap-Clips.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Renderer.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Rendering.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Resize-Marker.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Save-Project.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-Timeline-Clips.png +share/doc/HTML/uk/kdenlive/Kdenlive_Quickstart-TimelineCursor.png share/icons/hicolor/128x128/actions/kdenlive-select-all.png +share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png -share/icons/hicolor/16x16/actions/kdenlive-align-bottom.png -share/icons/hicolor/16x16/actions/kdenlive-align-hor.png -share/icons/hicolor/16x16/actions/kdenlive-align-left.png -share/icons/hicolor/16x16/actions/kdenlive-align-none.png -share/icons/hicolor/16x16/actions/kdenlive-align-right.png -share/icons/hicolor/16x16/actions/kdenlive-align-top.png -share/icons/hicolor/16x16/actions/kdenlive-align-vert.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png @@ -265,16 +384,14 @@ share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png -share/icons/hicolor/16x16/actions/kdenlive-zindex-bottom.png -share/icons/hicolor/16x16/actions/kdenlive-zindex-down.png -share/icons/hicolor/16x16/actions/kdenlive-zindex-top.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png -share/icons/hicolor/16x16/actions/kdenlive-zoom-large.png -share/icons/hicolor/16x16/actions/kdenlive-zoom-small.png +share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png +share/icons/hicolor/22x22/apps/kdenlive.png +share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png @@ -283,15 +400,28 @@ share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png +share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz +share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz +share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz +share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz +share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz +share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz +share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg +share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz +share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz +share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg +share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg +share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg +share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz @@ -300,126 +430,17 @@ share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz +share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz +share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz +share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz +share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz -share/icons/oxygen/128x128/actions/kdenlive-select-all.png -share/icons/oxygen/128x128/mimetypes/application-x-kdenlivetitle.png -share/icons/oxygen/16x16/actions/kdenlive-add-clip.png -share/icons/oxygen/16x16/actions/kdenlive-add-color-clip.png -share/icons/oxygen/16x16/actions/kdenlive-add-slide-clip.png -share/icons/oxygen/16x16/actions/kdenlive-add-text-clip.png -share/icons/oxygen/16x16/actions/kdenlive-align-bottom.png -share/icons/oxygen/16x16/actions/kdenlive-align-hor.png -share/icons/oxygen/16x16/actions/kdenlive-align-left.png -share/icons/oxygen/16x16/actions/kdenlive-align-none.png -share/icons/oxygen/16x16/actions/kdenlive-align-right.png -share/icons/oxygen/16x16/actions/kdenlive-align-top.png -share/icons/oxygen/16x16/actions/kdenlive-align-vert.png -share/icons/oxygen/16x16/actions/kdenlive-custom-effect.png -share/icons/oxygen/16x16/actions/kdenlive-deleffect.png -share/icons/oxygen/16x16/actions/kdenlive-down.png -share/icons/oxygen/16x16/actions/kdenlive-hide-audio.png -share/icons/oxygen/16x16/actions/kdenlive-hide-video.png -share/icons/oxygen/16x16/actions/kdenlive-insert-edit.png -share/icons/oxygen/16x16/actions/kdenlive-insert-rect.png -share/icons/oxygen/16x16/actions/kdenlive-insert-unicode.png -share/icons/oxygen/16x16/actions/kdenlive-lock.png -share/icons/oxygen/16x16/actions/kdenlive-menu.png -share/icons/oxygen/16x16/actions/kdenlive-normal-edit.png -share/icons/oxygen/16x16/actions/kdenlive-object-height.png -share/icons/oxygen/16x16/actions/kdenlive-object-width.png -share/icons/oxygen/16x16/actions/kdenlive-overwrite-edit.png -share/icons/oxygen/16x16/actions/kdenlive-select-all.png -share/icons/oxygen/16x16/actions/kdenlive-select-images.png -share/icons/oxygen/16x16/actions/kdenlive-select-rects.png -share/icons/oxygen/16x16/actions/kdenlive-select-texts.png -share/icons/oxygen/16x16/actions/kdenlive-select-tool.png -share/icons/oxygen/16x16/actions/kdenlive-show-audio.png -share/icons/oxygen/16x16/actions/kdenlive-show-audiothumb.png -share/icons/oxygen/16x16/actions/kdenlive-show-markers.png -share/icons/oxygen/16x16/actions/kdenlive-show-video.png -share/icons/oxygen/16x16/actions/kdenlive-show-videothumb.png -share/icons/oxygen/16x16/actions/kdenlive-snap.png -share/icons/oxygen/16x16/actions/kdenlive-spacer-tool.png -share/icons/oxygen/16x16/actions/kdenlive-split-audio.png -share/icons/oxygen/16x16/actions/kdenlive-track_has_effect.png -share/icons/oxygen/16x16/actions/kdenlive-unlock.png -share/icons/oxygen/16x16/actions/kdenlive-unselect-all.png -share/icons/oxygen/16x16/actions/kdenlive-up.png -share/icons/oxygen/16x16/actions/kdenlive-zindex-bottom.png -share/icons/oxygen/16x16/actions/kdenlive-zindex-down.png -share/icons/oxygen/16x16/actions/kdenlive-zindex-top.png -share/icons/oxygen/16x16/actions/kdenlive-zindex-up.png -share/icons/oxygen/16x16/actions/kdenlive-zone-end.png -share/icons/oxygen/16x16/actions/kdenlive-zone-start.png -share/icons/oxygen/16x16/actions/kdenlive-zoom-large.png -share/icons/oxygen/16x16/actions/kdenlive-zoom-small.png -share/icons/oxygen/22x22/actions/kdenlive-select-all.png -share/icons/oxygen/22x22/actions/kdenlive-spacer-tool.png -share/icons/oxygen/32x32/actions/kdenlive-select-all.png -share/icons/oxygen/32x32/apps/kdenlive.png -share/icons/oxygen/32x32/mimetypes/application-x-kdenlivetitle.png -share/icons/oxygen/48x48/actions/kdenlive-select-all.png -share/icons/oxygen/48x48/apps/kdenlive.png -share/icons/oxygen/64x64/actions/kdenlive-select-all.png -share/icons/oxygen/64x64/apps/kdenlive.png -share/icons/oxygen/64x64/mimetypes/application-x-kdenlivetitle.png -share/icons/oxygen/scalable/actions/kdenlive-align-none.svgz -share/icons/oxygen/scalable/actions/kdenlive-insert-rect.svgz -share/icons/oxygen/scalable/actions/kdenlive-insert-unicode.svgz -share/icons/oxygen/scalable/actions/kdenlive-object-height.svgz -share/icons/oxygen/scalable/actions/kdenlive-object-width.svgz -share/icons/oxygen/scalable/actions/kdenlive-select-all.svgz -share/icons/oxygen/scalable/actions/kdenlive-select-images.svgz -share/icons/oxygen/scalable/actions/kdenlive-select-rects.svgz -share/icons/oxygen/scalable/actions/kdenlive-select-texts.svgz -share/icons/oxygen/scalable/actions/kdenlive-select-tool.svgz -share/icons/oxygen/scalable/actions/kdenlive-spacer-tool.svgz -share/icons/oxygen/scalable/actions/kdenlive-unselect-all.svgz -share/icons/oxygen/scalable/actions/kdenlive-zindex-bottom.svgz -share/icons/oxygen/scalable/actions/kdenlive-zindex-down.svgz -share/icons/oxygen/scalable/actions/kdenlive-zindex-top.svgz -share/icons/oxygen/scalable/actions/kdenlive-zindex-up.svgz -share/icons/oxygen/scalable/actions/kdenlive-zone-end.svgz -share/icons/oxygen/scalable/actions/kdenlive-zone-start.svgz -share/icons/oxygen/scalable/mimetypes/application-x-kdenlivetitle.svgz -share/kde4/services/westleypreview.desktop -%%NLS%%share/locale/bs/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ca/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/cs/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/da/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/de/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/el/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/es/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/et/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/fi/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/fr/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ga/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/gl/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/he/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/hr/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/hu/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/it/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ja/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/lt/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/mr/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/nb/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/nds/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/nl/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/pl/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/pt/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ro/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ru/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/sk/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/sl/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/sv/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/tr/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/ug/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/uk/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/kdenlive.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/kdenlive.mo +share/knotifications5/kdenlive.notifyrc +share/kservices5/mltpreview.desktop +share/kxmlgui5/kdenlive/kdenliveui.rc +share/locale/ar/LC_MESSAGES/kdenlive.mo +share/locale/ast/LC_MESSAGES/kdenlive.mo +share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/kdenlive.xml share/mime/packages/westley.xml