Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Sep 2018 15:50:30 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480865 - in head/audio/lmms: . files
Message-ID:  <201809281550.w8SFoUSL026508@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Fri Sep 28 15:50:29 2018
New Revision: 480865
URL: https://svnweb.freebsd.org/changeset/ports/480865

Log:
  updates LMMS to 1.2.0-rc7
  
  - Add sndio support
  - Get rid of many custom patches and other workarounds by adding
    USES=localbase:ldflags
  - Fix man page install location
  - Modernize some CMAKE variables
  
  Changelog: https://github.com/LMMS/lmms/releases/tag/v1.2.0-rc7
  
  PR:		229867
  Submitted by:	tobik

Added:
  head/audio/lmms/files/patch-src_3rdparty_rpmalloc_rpmalloc_rpmalloc_rpmalloc.c   (contents, props changed)
Deleted:
  head/audio/lmms/files/patch-CMakeLists.txt
  head/audio/lmms/files/patch-include_debug.h
  head/audio/lmms/files/patch-include_lmms__math.h
  head/audio/lmms/files/patch-plugins_Amplifier_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_BassBooster_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_DualFilter_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_HydrogenImport_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_LadspaEffect_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_MidiImport_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_MidiImport_portsmf_allegro.h
  head/audio/lmms/files/patch-plugins_audio__file__processor_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_bit__invader_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_delay_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_dynamics__processor_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_flp__import_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_kicker_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_ladspa__browser_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_lb302_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_monstro_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_nes_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_opl2_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_organic_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_organic_organic.cpp
  head/audio/lmms/files/patch-plugins_papu_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_patman_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_peak__controller__effect_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_sf2__player_sf2__player.cpp
  head/audio/lmms/files/patch-plugins_sfxr_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_sid_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_stereo__enhancer_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_stereo__matrix_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_triple__oscillator_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_vibed_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_watsyn_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_waveshaper_CMakeLists.txt
  head/audio/lmms/files/patch-plugins_zynaddsubfx_CMakeLists.txt
  head/audio/lmms/files/patch-src_core_main.cpp
  head/audio/lmms/files/patch-src_gui_about__dialog.cpp
Modified:
  head/audio/lmms/Makefile
  head/audio/lmms/distinfo
  head/audio/lmms/pkg-plist

Modified: head/audio/lmms/Makefile
==============================================================================
--- head/audio/lmms/Makefile	Fri Sep 28 15:45:36 2018	(r480864)
+++ head/audio/lmms/Makefile	Fri Sep 28 15:50:29 2018	(r480865)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	lmms
-PORTVERSION=	1.1.3
 DISTVERSIONPREFIX=	v
-PORTREVISION=	3
+DISTVERSION=	1.2.0-rc7
 PORTEPOCH=	2
 CATEGORIES=	audio
 
@@ -12,6 +11,7 @@ MAINTAINER=	rodrigo@FreeBSD.org
 COMMENT=	All-in-one sequencer, drum machine, sampler, and more
 
 LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 BUILD_DEPENDS=	${LOCALBASE}/include/ladspa.h:audio/ladspa
 LIB_DEPENDS=	libFLAC.so:audio/flac \
@@ -22,66 +22,50 @@ LIB_DEPENDS=	libFLAC.so:audio/flac \
 		libogg.so:audio/libogg \
 		libfftw3.so:math/fftw3 \
 		libfftw3f.so:math/fftw3-float \
-		libsamplerate.so:audio/libsamplerate \
 		libfltk.so:x11-toolkits/fltk
 RUN_DEPENDS=	${LOCALBASE}/share/ladspa/rdf/caps.rdf:audio/caps-plugins \
 		${LOCALBASE}/lib/ladspa/cmt.so:audio/cmt \
 		${LOCALBASE}/share/ladspa/rdf/swh-plugins.rdf:audio/swhplugins \
 		${LOCALBASE}/share/ladspa/rdf/tap-plugins.rdf:audio/tap-plugins
 
-OPTIONS_DEFINE=	OSS JACK PULSEAUDIO PORTAUDIO SDL
-OPTIONS_DEFAULT=OSS
-
-USE_LDCONFIG=	yes
-USE_XORG=	x11 xext xft ice sm
-USE_QT=		corelib gui xml moc_build uic_build rcc_build \
-		qmake_build
+USES=		cmake:outsource desktop-file-utils localbase:ldflags pkgconfig \
+		qt:4 shared-mime-info
 USE_GITHUB=	yes
 GH_ACCOUNT=	LMMS
-USES=		cmake desktop-file-utils dos2unix pkgconfig qt:4 shared-mime-info
-CMAKE_ARGS=	-DWANT_ALSA:BOOL=OFF \
-		-DWANT_CALF:BOOL=OFF \
-		-DWANT_CAPS:BOOL=OFF \
-		-DWANT_CMT:BOOL=OFF \
-		-DWANT_SWH:BOOL=OFF \
-		-DWANT_STK:BOOL=OFF \
-		-DWANT_TAP:BOOL=OFF \
-		-DWANT_VST:BOOL=OFF \
-		-DHAVE_STRTOLL=ON
+GH_TUPLE=	rampantpixels:rpmalloc:1.3.1:rpmalloc/src/3rdparty/rpmalloc/rpmalloc
+USE_LDCONFIG=	yes
+USE_QT=		corelib gui linguisttools xml moc_build uic_build rcc_build qmake_build
+USE_XORG=	x11 xext xft ice sm
 
-DOS2UNIX_FILES=	CMakeLists.txt
+CMAKE_OFF=	WANT_ALSA WANT_CALF WANT_CAPS WANT_CMT WANT_SWH WANT_STK \
+		WANT_TAP WANT_VST
+INSTALLS_ICONS=	yes
 
+OPTIONS_DEFINE=		OSS JACK PULSEAUDIO PORTAUDIO SDL SNDIO
+OPTIONS_DEFAULT=	OSS
+
+JACK_CMAKE_BOOL=	WANT_JACK
 JACK_LIB_DEPENDS=	libjack.so:audio/jack
-JACK_CMAKE_OFF=		-DWANT_JACK:BOOL=OFF
 
+PULSEAUDIO_CMAKE_BOOL=	WANT_PULSEAUDIO
 PULSEAUDIO_LIB_DEPENDS=	libpulse.so:audio/pulseaudio
-PULSEAUDIO_CMAKE_OFF=	-DWANT_PULSEAUDIO:BOOL=OFF
 
+PORTAUDIO_CMAKE_BOOL=	WANT_PORTAUDIO
 PORTAUDIO_LIB_DEPENDS=	libportaudio.so:audio/portaudio
-PORTAUDIO_CMAKE_OFF=	-DWANT_PORTAUDIO:BOOL=OFF
 
+SDL_CMAKE_OFF=		WANT_SDL
 SDL_USE=		SDL=sdl
-SDL_CMAKE_OFF=		-DWANT_SDL:BOOL=OFF
 
+SNDIO_CMAKE_BOOL=	WANT_SNDIO
+SNDIO_LIB_DEPENDS=	libsndio.so:audio/sndio
+
 post-patch:
-.for file in data/lmms.desktop
-	@${REINPLACE_CMD} -e \
-		'/^Icon/s|=.*$$|=lmms|g ; \
-		 /^Exec/s|=.*$$|=lmms|g ; \
-		 /^Categories/s|$$|;|g ; \
-		 /^MimeType/s|$$|;|g' ${WRKSRC}/${file}
-.endfor
-.for filename in data/lmms src/core/config_mgr.cpp
-	@${REINPLACE_CMD} -e \
-		's|/usr|${PREFIX}|g' ${WRKSRC}/${filename}
-.endfor
-.for filename in src/core/ladspa_manager.cpp
-	@${REINPLACE_CMD} -e \
-		'/\/usr\/lib/d ; \
-		 s|/usr/local|${PREFIX}|g' ${WRKSRC}/${filename}
-.endfor
+	@${REINPLACE_CMD} 's|/usr|${LOCALBASE}|g' ${WRKSRC}/src/core/ConfigManager.cpp
+	@${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' \
+		${WRKSRC}/src/core/LadspaManager.cpp
 	@${REINPLACE_CMD} -e 's/lib64/lib/' \
 		${WRKSRC}/cmake/modules/DetectMachine.cmake
+	@${REINPLACE_CMD} 's,share/man/,man/,g' ${WRKSRC}/src/CMakeLists.txt
 
 post-patch-OSS-off:
 	@${REINPLACE_CMD} \
@@ -90,9 +74,7 @@ post-patch-OSS-off:
 		${WRKSRC}/CMakeLists.txt
 
 post-install:
-	@${LN} -sf ${DATADIR}/themes/default/icon.png \
+	@${RLN} ${STAGEDIR}${DATADIR}/themes/default/icon.png \
 		${STAGEDIR}${PREFIX}/share/pixmaps/lmms.png
-	# make it setuid-root to be able to set realtime priority
-	# (root privileges are dropped in the main routine)
 
 .include <bsd.port.mk>

Modified: head/audio/lmms/distinfo
==============================================================================
--- head/audio/lmms/distinfo	Fri Sep 28 15:45:36 2018	(r480864)
+++ head/audio/lmms/distinfo	Fri Sep 28 15:50:29 2018	(r480865)
@@ -1,3 +1,5 @@
-TIMESTAMP = 1500880879
-SHA256 (LMMS-lmms-v1.1.3_GH0.tar.gz) = 59338e7b90e02fe18db73114aefe479c0e6d1e0e366185d71ea5c1a1e0f9e6bc
-SIZE (LMMS-lmms-v1.1.3_GH0.tar.gz) = 16843533
+TIMESTAMP = 1537885096
+SHA256 (LMMS-lmms-v1.2.0-rc7_GH0.tar.gz) = 2efba2eda8ec3030ff6d446fd7bbe2245b38472f60c622b9e41053b1981fd592
+SIZE (LMMS-lmms-v1.2.0-rc7_GH0.tar.gz) = 16120037
+SHA256 (rampantpixels-rpmalloc-1.3.1_GH0.tar.gz) = 9bc0013a0bf8c01540821e84fef0cef067f1d857a01ceceac36f83bd6fedc106
+SIZE (rampantpixels-rpmalloc-1.3.1_GH0.tar.gz) = 63517

Added: head/audio/lmms/files/patch-src_3rdparty_rpmalloc_rpmalloc_rpmalloc_rpmalloc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/lmms/files/patch-src_3rdparty_rpmalloc_rpmalloc_rpmalloc_rpmalloc.c	Fri Sep 28 15:50:29 2018	(r480865)
@@ -0,0 +1,11 @@
+--- src/3rdparty/rpmalloc/rpmalloc/rpmalloc/rpmalloc.c.orig	2018-07-14 14:17:12 UTC
++++ src/3rdparty/rpmalloc/rpmalloc/rpmalloc/rpmalloc.c
+@@ -1627,6 +1627,8 @@ _memory_map_os(size_t size, size_t* offset) {
+ #else
+ #  if defined(__APPLE__)
+ 	void* ptr = mmap(0, size + padding, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_UNINITIALIZED, (_memory_huge_pages ? VM_FLAGS_SUPERPAGE_SIZE_2MB : -1), 0);
++#  elif defined(__FreeBSD__)
++	void* ptr = mmap(0, size + padding, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_UNINITIALIZED, -1, 0);
+ #  else
+ 	void* ptr = mmap(0, size + padding, PROT_READ | PROT_WRITE, (_memory_huge_pages ? MAP_HUGETLB : 0) | MAP_PRIVATE | MAP_ANONYMOUS | MAP_UNINITIALIZED, -1, 0);
+ #  endif

Modified: head/audio/lmms/pkg-plist
==============================================================================
--- head/audio/lmms/pkg-plist	Fri Sep 28 15:45:36 2018	(r480864)
+++ head/audio/lmms/pkg-plist	Fri Sep 28 15:50:29 2018	(r480865)
@@ -1,8 +1,14 @@
 bin/lmms
+include/lmms/AboutDialog.h
+include/lmms/ActionGroup.h
+include/lmms/AtomicInt.h
 include/lmms/AudioAlsa.h
+include/lmms/AudioAlsaSetupWidget.h
 include/lmms/AudioDevice.h
+include/lmms/AudioDeviceSetupWidget.h
 include/lmms/AudioDummy.h
 include/lmms/AudioFileDevice.h
+include/lmms/AudioFileMP3.h
 include/lmms/AudioFileOgg.h
 include/lmms/AudioFileWave.h
 include/lmms/AudioJack.h
@@ -12,15 +18,29 @@ include/lmms/AudioPortAudio.h
 include/lmms/AudioPulseAudio.h
 include/lmms/AudioSampleRecorder.h
 include/lmms/AudioSdl.h
+include/lmms/AudioSndio.h
+include/lmms/AudioSoundIo.h
+include/lmms/AudioWeakJack.h
+include/lmms/AutomatableButton.h
 include/lmms/AutomatableModel.h
 include/lmms/AutomatableModelView.h
+include/lmms/AutomatableSlider.h
 include/lmms/AutomationEditor.h
 include/lmms/AutomationPattern.h
 include/lmms/AutomationPatternView.h
 include/lmms/AutomationTrack.h
+include/lmms/BBEditor.h
+include/lmms/BBTrack.h
+include/lmms/BBTrackContainer.h
 include/lmms/BandLimitedWave.h
+include/lmms/BasicFilters.h
+include/lmms/BufferManager.h
+include/lmms/CPULoadWidget.h
+include/lmms/CaptionMenu.h
 include/lmms/Clipboard.h
+include/lmms/ComboBox.h
 include/lmms/ComboBoxModel.h
+include/lmms/ConfigManager.h
 include/lmms/Controller.h
 include/lmms/ControllerConnection.h
 include/lmms/ControllerConnectionDialog.h
@@ -28,11 +48,14 @@ include/lmms/ControllerDialog.h
 include/lmms/ControllerRackView.h
 include/lmms/ControllerView.h
 include/lmms/DataFile.h
+include/lmms/Delay.h
 include/lmms/DetuningHelper.h
+include/lmms/DrumSynth.h
 include/lmms/DspEffectLibrary.h
 include/lmms/DummyEffect.h
 include/lmms/DummyInstrument.h
 include/lmms/DummyPlugin.h
+include/lmms/Editor.h
 include/lmms/Effect.h
 include/lmms/EffectChain.h
 include/lmms/EffectControlDialog.h
@@ -40,13 +63,21 @@ include/lmms/EffectControls.h
 include/lmms/EffectRackView.h
 include/lmms/EffectSelectDialog.h
 include/lmms/EffectView.h
+include/lmms/Engine.h
 include/lmms/EnvelopeAndLfoParameters.h
 include/lmms/EnvelopeAndLfoView.h
+include/lmms/ExportFilter.h
+include/lmms/ExportProjectDialog.h
+include/lmms/FadeButton.h
+include/lmms/Fader.h
 include/lmms/FileBrowser.h
 include/lmms/FileDialog.h
 include/lmms/FxLine.h
 include/lmms/FxMixer.h
 include/lmms/FxMixerView.h
+include/lmms/Graph.h
+include/lmms/GroupBox.h
+include/lmms/GuiApplication.h
 include/lmms/ImportFilter.h
 include/lmms/InlineAutomation.h
 include/lmms/Instrument.h
@@ -58,31 +89,46 @@ include/lmms/InstrumentSoundShaping.h
 include/lmms/InstrumentSoundShapingView.h
 include/lmms/InstrumentTrack.h
 include/lmms/InstrumentView.h
+include/lmms/IoHelper.h
 include/lmms/JournallingObject.h
+include/lmms/Knob.h
+include/lmms/Ladspa2LMMS.h
 include/lmms/LadspaBase.h
 include/lmms/LadspaControl.h
 include/lmms/LadspaControlView.h
+include/lmms/LadspaManager.h
 include/lmms/LcdSpinBox.h
 include/lmms/LcdWidget.h
+include/lmms/LedCheckbox.h
+include/lmms/LeftRightNav.h
 include/lmms/LfoController.h
 include/lmms/LmmsPalette.h
 include/lmms/LmmsStyle.h
+include/lmms/LocaleHelper.h
+include/lmms/LocklessAllocator.h
+include/lmms/LocklessList.h
+include/lmms/MainApplication.h
 include/lmms/MainWindow.h
 include/lmms/MemoryHelper.h
+include/lmms/MemoryManager.h
 include/lmms/MeterDialog.h
 include/lmms/MeterModel.h
 include/lmms/MicroTimer.h
 include/lmms/Midi.h
 include/lmms/MidiAlsaRaw.h
 include/lmms/MidiAlsaSeq.h
+include/lmms/MidiApple.h
 include/lmms/MidiClient.h
 include/lmms/MidiController.h
 include/lmms/MidiDummy.h
 include/lmms/MidiEvent.h
 include/lmms/MidiEventProcessor.h
+include/lmms/MidiJack.h
 include/lmms/MidiOss.h
 include/lmms/MidiPort.h
 include/lmms/MidiPortMenu.h
+include/lmms/MidiSetupWidget.h
+include/lmms/MidiSndio.h
 include/lmms/MidiTime.h
 include/lmms/MidiWinMM.h
 include/lmms/MixHelpers.h
@@ -91,112 +137,97 @@ include/lmms/MixerProfiler.h
 include/lmms/MixerWorkerThread.h
 include/lmms/Model.h
 include/lmms/ModelView.h
+include/lmms/NStateButton.h
+include/lmms/Note.h
 include/lmms/NotePlayHandle.h
 include/lmms/Oscillator.h
+include/lmms/OutputSettings.h
 include/lmms/Pattern.h
 include/lmms/PeakController.h
 include/lmms/Piano.h
 include/lmms/PianoRoll.h
 include/lmms/PianoView.h
 include/lmms/Pitch.h
+include/lmms/PixmapButton.h
 include/lmms/PlayHandle.h
 include/lmms/Plugin.h
+include/lmms/PluginBrowser.h
+include/lmms/PluginFactory.h
 include/lmms/PluginView.h
 include/lmms/PresetPreviewPlayHandle.h
 include/lmms/ProjectJournal.h
+include/lmms/ProjectNotes.h
 include/lmms/ProjectRenderer.h
+include/lmms/ProjectVersion.h
 include/lmms/RemotePlugin.h
+include/lmms/RenameDialog.h
+include/lmms/RenderManager.h
+include/lmms/RingBuffer.h
 include/lmms/RmsHelper.h
+include/lmms/RowTableView.h
+include/lmms/Rubberband.h
 include/lmms/SampleBuffer.h
 include/lmms/SamplePlayHandle.h
 include/lmms/SampleRecordHandle.h
 include/lmms/SampleTrack.h
 include/lmms/SendButtonIndicator.h
 include/lmms/SerializingObject.h
+include/lmms/SetupDialog.h
 include/lmms/SideBar.h
 include/lmms/SideBarWidget.h
+include/lmms/Song.h
 include/lmms/SongEditor.h
+include/lmms/StringPairDrag.h
+include/lmms/SubWindow.h
 include/lmms/SweepOscillator.h
+include/lmms/TabBar.h
+include/lmms/TabButton.h
+include/lmms/TabWidget.h
 include/lmms/TempoSyncKnob.h
 include/lmms/TempoSyncKnobModel.h
+include/lmms/TextFloat.h
 include/lmms/ThreadableJob.h
 include/lmms/TimeDisplayWidget.h
+include/lmms/TimeLineWidget.h
+include/lmms/ToolButton.h
 include/lmms/ToolPlugin.h
 include/lmms/ToolPluginView.h
+include/lmms/ToolTip.h
+include/lmms/Track.h
 include/lmms/TrackContainer.h
 include/lmms/TrackContainerView.h
+include/lmms/TrackLabelButton.h
+include/lmms/TrackRenameLineEdit.h
+include/lmms/ValueBuffer.h
 include/lmms/VersionedSaveDialog.h
+include/lmms/VisualizationWidget.h
 include/lmms/VstSyncController.h
 include/lmms/VstSyncData.h
-include/lmms/about_dialog.h
 include/lmms/aeffectx.h
-include/lmms/atomic_int.h
-include/lmms/automatable_button.h
-include/lmms/automatable_slider.h
 include/lmms/base64.h
-include/lmms/basic_filters.h
-include/lmms/bb_editor.h
-include/lmms/bb_track.h
-include/lmms/bb_track_container.h
-include/lmms/caption_menu.h
-include/lmms/combobox.h
-include/lmms/config_mgr.h
-include/lmms/cpuload_widget.h
 include/lmms/custom_events.h
 include/lmms/debug.h
-include/lmms/drumsynth.h
+include/lmms/denormals.h
 include/lmms/embed.cpp
 include/lmms/embed.h
 include/lmms/endian_handling.h
-include/lmms/engine.h
 include/lmms/export.h
-include/lmms/export_project_dialog.h
-include/lmms/fade_button.h
-include/lmms/fader.h
 include/lmms/fft_helpers.h
 include/lmms/fifo_buffer.h
-include/lmms/graph.h
-include/lmms/group_box.h
 include/lmms/gui_templates.h
 include/lmms/interpolation.h
-include/lmms/knob.h
 include/lmms/ladspa.h
-include/lmms/ladspa_2_lmms.h
-include/lmms/ladspa_manager.h
-include/lmms/led_checkbox.h
 include/lmms/lmms_basics.h
 include/lmms/lmms_constants.h
 include/lmms/lmms_math.h
 include/lmms/lmmsconfig.h
 include/lmms/lmmsversion.h
-include/lmms/note.h
-include/lmms/nstate_button.h
 include/lmms/panning.h
 include/lmms/panning_constants.h
-include/lmms/pixmap_button.h
-include/lmms/plugin_browser.h
-include/lmms/project_notes.h
-include/lmms/project_version.h
-include/lmms/rename_dialog.h
-include/lmms/rubberband.h
-include/lmms/setup_dialog.h
 include/lmms/shared_object.h
-include/lmms/song.h
-include/lmms/string_pair_drag.h
-include/lmms/tab_bar.h
-include/lmms/tab_button.h
-include/lmms/tab_widget.h
 include/lmms/templates.h
-include/lmms/text_float.h
-include/lmms/timeline.h
-include/lmms/tool_button.h
-include/lmms/tooltip.h
-include/lmms/track.h
-include/lmms/track_label_button.h
-include/lmms/transformable_auto_model.h
 include/lmms/update_event.h
 include/lmms/versioninfo.h
-include/lmms/visualization_widget.h
 include/lmms/volume.h
 lib/lmms/RemoteZynAddSubFx
 lib/lmms/libOPL2.so
@@ -204,23 +235,29 @@ lib/lmms/libZynAddSubFxCore.so
 lib/lmms/libamplifier.so
 lib/lmms/libaudiofileprocessor.so
 lib/lmms/libbassbooster.so
+lib/lmms/libbitcrush.so
 lib/lmms/libbitinvader.so
+lib/lmms/libcrossovereq.so
 lib/lmms/libdelay.so
 lib/lmms/libdualfilter.so
 lib/lmms/libdynamicsprocessor.so
-lib/lmms/libflpimport.so
+lib/lmms/libeq.so
+lib/lmms/libflanger.so
 lib/lmms/libhydrogenimport.so
 lib/lmms/libkicker.so
 lib/lmms/libladspabrowser.so
 lib/lmms/libladspaeffect.so
 lib/lmms/liblb302.so
+lib/lmms/libmidiexport.so
 lib/lmms/libmidiimport.so
 lib/lmms/libmonstro.so
+lib/lmms/libmultitapecho.so
 lib/lmms/libnes.so
 lib/lmms/liborganic.so
 lib/lmms/libpapu.so
 lib/lmms/libpatman.so
 lib/lmms/libpeakcontrollereffect.so
+lib/lmms/libreverbsc.so
 lib/lmms/libsf2player.so
 lib/lmms/libsfxr.so
 lib/lmms/libsid.so
@@ -232,10 +269,39 @@ lib/lmms/libvibedstrings.so
 lib/lmms/libwatsyn.so
 lib/lmms/libwaveshaper.so
 lib/lmms/libzynaddsubfx.so
+man/man1/lmms.1.gz
 share/applications/lmms.desktop
+share/icons/hicolor/128x128/apps/lmms.png
+share/icons/hicolor/128x128/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/128x128@2/apps/lmms.png
+share/icons/hicolor/128x128@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/16x16/apps/lmms.png
+share/icons/hicolor/16x16/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/16x16@2/apps/lmms.png
+share/icons/hicolor/16x16@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/24x24/apps/lmms.png
+share/icons/hicolor/24x24/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/24x24@2/apps/lmms.png
+share/icons/hicolor/24x24@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/32x32/apps/lmms.png
+share/icons/hicolor/32x32/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/32x32@2/apps/lmms.png
+share/icons/hicolor/32x32@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/48x48/apps/lmms.png
+share/icons/hicolor/48x48/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/48x48@2/apps/lmms.png
+share/icons/hicolor/48x48@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/64x64/apps/lmms.png
+share/icons/hicolor/64x64/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/64x64@2/apps/lmms.png
+share/icons/hicolor/64x64@2/mimetypes/application-x-lmms-project.png
+share/icons/hicolor/scalable/apps/lmms.svg
+share/icons/hicolor/scalable/mimetypes/application-x-lmms-project.svg
 %%DATADIR%%/backgrounds/lmms_tile.png
 %%DATADIR%%/backgrounds/newbg.png
 %%DATADIR%%/backgrounds/vinnie.png
+%%DATADIR%%/locale/ar.qm
+%%DATADIR%%/locale/bs.qm
 %%DATADIR%%/locale/ca.qm
 %%DATADIR%%/locale/cs.qm
 %%DATADIR%%/locale/de.qm
@@ -244,6 +310,7 @@ share/applications/lmms.desktop
 %%DATADIR%%/locale/fa.qm
 %%DATADIR%%/locale/fr.qm
 %%DATADIR%%/locale/gl.qm
+%%DATADIR%%/locale/hu_HU.qm
 %%DATADIR%%/locale/it.qm
 %%DATADIR%%/locale/ja.qm
 %%DATADIR%%/locale/ko.qm
@@ -251,8 +318,12 @@ share/applications/lmms.desktop
 %%DATADIR%%/locale/pl.qm
 %%DATADIR%%/locale/pt.qm
 %%DATADIR%%/locale/ru.qm
+%%DATADIR%%/locale/sl.qm
+%%DATADIR%%/locale/sr.qm
 %%DATADIR%%/locale/sv.qm
-%%DATADIR%%/locale/zh.qm
+%%DATADIR%%/locale/uk.qm
+%%DATADIR%%/locale/zh_CN.qm
+%%DATADIR%%/locale/zh_TW.qm
 %%DATADIR%%/presets/AudioFileProcessor/Bass-Mania.xpf
 %%DATADIR%%/presets/AudioFileProcessor/Erazor.xpf
 %%DATADIR%%/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf
@@ -1043,10 +1114,6 @@ share/applications/lmms.desktop
 %%DATADIR%%/presets/ZynAddSubFX/Rhodes/0065-Steel Rhodes.xiz
 %%DATADIR%%/presets/ZynAddSubFX/Rhodes/0067-RhodesPad1.xiz
 %%DATADIR%%/presets/ZynAddSubFX/Rhodes/0068-RhodesPad2.xiz
-%%DATADIR%%/presets/ZynAddSubFX/Splited/0001-Strings and Reed1.xiz
-%%DATADIR%%/presets/ZynAddSubFX/Splited/0002-Strings and Reed2.xiz
-%%DATADIR%%/presets/ZynAddSubFX/Splited/0003-Strings and Flute.xiz
-%%DATADIR%%/presets/ZynAddSubFX/Splited/0033-Choir and Reed.xiz
 %%DATADIR%%/presets/ZynAddSubFX/Splitted/0001-Strings and Reed1.xiz
 %%DATADIR%%/presets/ZynAddSubFX/Splitted/0002-Strings and Reed2.xiz
 %%DATADIR%%/presets/ZynAddSubFX/Splitted/0003-Strings and Flute.xiz
@@ -1364,52 +1431,53 @@ share/applications/lmms.desktop
 %%DATADIR%%/presets/ZynAddSubFX/the_mysterious_bank_4/0036-organ_not_distorted.xiz
 %%DATADIR%%/presets/ZynAddSubFX/the_mysterious_bank_4/0037-old_organ.xiz
 %%DATADIR%%/presets/ZynAddSubFX/the_mysterious_bank_4/0039-jazz_guitar.xiz
-%%DATADIR%%/projects/CoolSongs/Alf42red-Mauiwowi.mmpz
-%%DATADIR%%/projects/CoolSongs/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz
-%%DATADIR%%/projects/CoolSongs/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz
-%%DATADIR%%/projects/CoolSongs/Farbro-Tectonic.mmpz
-%%DATADIR%%/projects/CoolSongs/Greippi-ardudar.mmpz
-%%DATADIR%%/projects/CoolSongs/Impulslogik-Zen.mmpz
-%%DATADIR%%/projects/CoolSongs/Momo64-esp.mmpz
-%%DATADIR%%/projects/CoolSongs/Namitryus-K-Project.mmpz
-%%DATADIR%%/projects/CoolSongs/Oglsdl-Dr8v2.mmpz
-%%DATADIR%%/projects/CoolSongs/Popsip-Electric Dancer.mmpz
-%%DATADIR%%/projects/CoolSongs/Root84-Initialize.mmpz
-%%DATADIR%%/projects/CoolSongs/Saber-FinalStep.mmpz
-%%DATADIR%%/projects/CoolSongs/Settel-InnerRecreation.mmpz
-%%DATADIR%%/projects/CoolSongs/Skiessi/Skiessi-Onion.mmpz
-%%DATADIR%%/projects/CoolSongs/Skiessi/Skiessi-RandomProjectNumber14253.mmpz
-%%DATADIR%%/projects/CoolSongs/Skiessi/Skiessi-TurningPoint.mmpz
-%%DATADIR%%/projects/CoolSongs/Socceroos-Progress.mmpz
-%%DATADIR%%/projects/CoolSongs/StrictProduction-DearJonDoe.mmp
-%%DATADIR%%/projects/CoolSongs/TameAnderson-MakeMe.mmpz
-%%DATADIR%%/projects/CoolSongs/Thaledric-Armageddon.mmpz
-%%DATADIR%%/projects/CoolSongs/TobyDox-Psycho.mmpz
-%%DATADIR%%/projects/CoolSongs/Zakarra/Zakarra-59_Degrees.mmpz
-%%DATADIR%%/projects/CoolSongs/Zakarra/Zakarra-MainstreamMemory.mmpz
-%%DATADIR%%/projects/CoolSongs/Zakarra/Zakarra-OneDay.mmpz
-%%DATADIR%%/projects/CoolSongs/unfa-Spoken.mmpz
-%%DATADIR%%/projects/Demos/AngryLlama-NewFangled.mmpz
-%%DATADIR%%/projects/Demos/Ashore.mmpz
-%%DATADIR%%/projects/Demos/CapDan-ReggaeTry.mmpz
-%%DATADIR%%/projects/Demos/CapDan-ReggaetonTry.mmpz
-%%DATADIR%%/projects/Demos/DnB.mmpz
-%%DATADIR%%/projects/Demos/EsoXLB-CPU.mmpz
-%%DATADIR%%/projects/Demos/Oglsdl-PpTrip.mmpz
-%%DATADIR%%/projects/Demos/Shovon-ProgressiveHousePluckDemo.mmpz
-%%DATADIR%%/projects/Demos/Skiessi-C64.mmpz
-%%DATADIR%%/projects/Demos/Thomasso-AxeFromThe80s.mmpz
-%%DATADIR%%/projects/Shorties/Crunk(Demo).mmp
-%%DATADIR%%/projects/Shorties/Greshz-CoolSnip.mmpz
-%%DATADIR%%/projects/Shorties/Root84-TrancyLoop.mmpz
-%%DATADIR%%/projects/Shorties/Skiessi-222.mmpz
-%%DATADIR%%/projects/Shorties/Surrender-Main.mmpz
-%%DATADIR%%/projects/Shorties/sv-DnB-Startup.mmpz
-%%DATADIR%%/projects/Shorties/sv-Trance-Startup.mmpz
+%%DATADIR%%/projects/demos/Alf42red-Mauiwowi.mmpz
+%%DATADIR%%/projects/demos/AngryLlama-NewFangled.mmpz
+%%DATADIR%%/projects/demos/Ashore.mmpz
+%%DATADIR%%/projects/demos/CapDan/CapDan-ReggaeTry.mmpz
+%%DATADIR%%/projects/demos/CapDan/CapDan-ReggaetonTry.mmpz
+%%DATADIR%%/projects/demos/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz
+%%DATADIR%%/projects/demos/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz
+%%DATADIR%%/projects/demos/DnB.mmpz
+%%DATADIR%%/projects/demos/EsoXLB-CPU.mmpz
+%%DATADIR%%/projects/demos/Farbro-Tectonic.mmpz
+%%DATADIR%%/projects/demos/Greippi - Krem Kaakkuja (Second Flight Remix).mmpz
+%%DATADIR%%/projects/demos/Impulslogik-Zen.mmpz
+%%DATADIR%%/projects/demos/Jousboxx-BuzzerBeater.mmpz
+%%DATADIR%%/projects/demos/Momo64-esp.mmpz
+%%DATADIR%%/projects/demos/Namitryus-K-Project.mmpz
+%%DATADIR%%/projects/demos/Oglsdl-Dr8v2.mmpz
+%%DATADIR%%/projects/demos/Oglsdl-PpTrip.mmpz
+%%DATADIR%%/projects/demos/Popsip-Electric Dancer.mmpz
+%%DATADIR%%/projects/demos/Root84-Initialize.mmpz
+%%DATADIR%%/projects/demos/Saber-FinalStep.mmpz
+%%DATADIR%%/projects/demos/Settel-InnerRecreation.mmpz
+%%DATADIR%%/projects/demos/Shovon-ProgressiveHousePluckDemo.mmpz
+%%DATADIR%%/projects/demos/Skiessi/Skiessi-C64.mmpz
+%%DATADIR%%/projects/demos/Skiessi/Skiessi-Onion.mmpz
+%%DATADIR%%/projects/demos/Skiessi/Skiessi-RandomProjectNumber14253.mmpz
+%%DATADIR%%/projects/demos/Skiessi/Skiessi-TurningPoint.mmpz
+%%DATADIR%%/projects/demos/Socceroos-Progress.mmpz
+%%DATADIR%%/projects/demos/StrictProduction-DearJonDoe.mmp
+%%DATADIR%%/projects/demos/TameAnderson-MakeMe.mmpz
+%%DATADIR%%/projects/demos/Thaledric-Armageddon.mmpz
+%%DATADIR%%/projects/demos/Thomasso-AxeFromThe80s.mmpz
+%%DATADIR%%/projects/demos/TobyDox-Psycho.mmpz
+%%DATADIR%%/projects/demos/unfa-Spoken.mmpz
+%%DATADIR%%/projects/shorties/Crunk(Demo).mmp
+%%DATADIR%%/projects/shorties/DirtyLove.mmpz
+%%DATADIR%%/projects/shorties/Greshz-CoolSnip.mmpz
+%%DATADIR%%/projects/shorties/Root84-TrancyLoop.mmpz
+%%DATADIR%%/projects/shorties/Skiessi-222.mmpz
+%%DATADIR%%/projects/shorties/Surrender-Main.mmpz
+%%DATADIR%%/projects/shorties/sv-DnB-Startup.mmpz
+%%DATADIR%%/projects/shorties/sv-Trance-Startup.mmpz
 %%DATADIR%%/projects/templates/AcousticDrumset.mpt
 %%DATADIR%%/projects/templates/CR8000.mpt
 %%DATADIR%%/projects/templates/ClubMix.mpt
+%%DATADIR%%/projects/templates/Empty.mpt
 %%DATADIR%%/projects/templates/TR808.mpt
+%%DATADIR%%/projects/templates/default.mpt
 %%DATADIR%%/projects/tutorials/editing_note_volumes.mmp
 %%DATADIR%%/samples/basses/bass01.ogg
 %%DATADIR%%/samples/basses/bass_acid01.ogg
@@ -1426,16 +1494,16 @@ share/applications/lmms.desktop
 %%DATADIR%%/samples/basses/synth_acid01.ogg
 %%DATADIR%%/samples/basses/synth_acid02.ogg
 %%DATADIR%%/samples/basses/techno_synth01.ogg
-%%DATADIR%%/samples/bassloopes/briff01.ogg
-%%DATADIR%%/samples/bassloopes/rave_bass01.ogg
-%%DATADIR%%/samples/bassloopes/rave_bass02.ogg
-%%DATADIR%%/samples/bassloopes/tb303_01.ogg
-%%DATADIR%%/samples/bassloopes/techno_bass01.ogg
-%%DATADIR%%/samples/bassloopes/techno_bass02.ogg
-%%DATADIR%%/samples/bassloopes/techno_synth01.ogg
-%%DATADIR%%/samples/bassloopes/techno_synth02.ogg
-%%DATADIR%%/samples/bassloopes/techno_synth03.ogg
-%%DATADIR%%/samples/bassloopes/techno_synth04.ogg
+%%DATADIR%%/samples/bassloops/briff01.ogg
+%%DATADIR%%/samples/bassloops/rave_bass01.ogg
+%%DATADIR%%/samples/bassloops/rave_bass02.ogg
+%%DATADIR%%/samples/bassloops/tb303_01.ogg
+%%DATADIR%%/samples/bassloops/techno_bass01.ogg
+%%DATADIR%%/samples/bassloops/techno_bass02.ogg
+%%DATADIR%%/samples/bassloops/techno_synth01.ogg
+%%DATADIR%%/samples/bassloops/techno_synth02.ogg
+%%DATADIR%%/samples/bassloops/techno_synth03.ogg
+%%DATADIR%%/samples/bassloops/techno_synth04.ogg
 %%DATADIR%%/samples/beats/909beat01.ogg
 %%DATADIR%%/samples/beats/break01.ogg
 %%DATADIR%%/samples/beats/break02.ogg
@@ -2333,6 +2401,7 @@ share/applications/lmms.desktop
 %%DATADIR%%/samples/misc/hit02.ogg
 %%DATADIR%%/samples/misc/metalish_dong01.ogg
 %%DATADIR%%/samples/misc/metronome01.ogg
+%%DATADIR%%/samples/misc/metronome02.ogg
 %%DATADIR%%/samples/misc/raving_crowd01.ogg
 %%DATADIR%%/samples/misc/snaph01.ogg
 %%DATADIR%%/samples/misc/undefined01.ogg
@@ -2414,9 +2483,251 @@ share/applications/lmms.desktop
 %%DATADIR%%/samples/waveforms/w2_sawsine.flac
 %%DATADIR%%/samples/waveforms/w2_sharp.flac
 %%DATADIR%%/samples/waveforms/w2_w-wave.flac
+%%DATADIR%%/themes/classic/add.png
+%%DATADIR%%/themes/classic/add_automation.png
+%%DATADIR%%/themes/classic/add_bb_track.png
+%%DATADIR%%/themes/classic/add_folder.png
+%%DATADIR%%/themes/classic/add_sample_track.png
+%%DATADIR%%/themes/classic/analysis.png
+%%DATADIR%%/themes/classic/apply-selected.png
+%%DATADIR%%/themes/classic/apply.png
+%%DATADIR%%/themes/classic/arp_down.png
+%%DATADIR%%/themes/classic/arp_free.png
+%%DATADIR%%/themes/classic/arp_random.png
+%%DATADIR%%/themes/classic/arp_sort.png
+%%DATADIR%%/themes/classic/arp_sync.png
+%%DATADIR%%/themes/classic/arp_up.png
+%%DATADIR%%/themes/classic/arp_up_and_down.png
+%%DATADIR%%/themes/classic/automation.png
+%%DATADIR%%/themes/classic/automation_track.png
+%%DATADIR%%/themes/classic/autoscroll_off.png
+%%DATADIR%%/themes/classic/autoscroll_on.png
+%%DATADIR%%/themes/classic/back_to_start.png
+%%DATADIR%%/themes/classic/back_to_zero.png
+%%DATADIR%%/themes/classic/background_artwork.png
+%%DATADIR%%/themes/classic/bb_track.png
+%%DATADIR%%/themes/classic/bb_track_btn.png
+%%DATADIR%%/themes/classic/black_key.png
+%%DATADIR%%/themes/classic/black_key_pressed.png
+%%DATADIR%%/themes/classic/cancel.png
+%%DATADIR%%/themes/classic/chord.png
+%%DATADIR%%/themes/classic/clock.png
+%%DATADIR%%/themes/classic/close.png
+%%DATADIR%%/themes/classic/colorize.png
+%%DATADIR%%/themes/classic/combobox_arrow.png
+%%DATADIR%%/themes/classic/combobox_arrow_selected.png
+%%DATADIR%%/themes/classic/combobox_bg.png
+%%DATADIR%%/themes/classic/computer.png
+%%DATADIR%%/themes/classic/controller.png
+%%DATADIR%%/themes/classic/cpuload_bg.png
+%%DATADIR%%/themes/classic/cpuload_leds.png
+%%DATADIR%%/themes/classic/dont_know.png
+%%DATADIR%%/themes/classic/drum.png
+%%DATADIR%%/themes/classic/edit_copy.png
+%%DATADIR%%/themes/classic/edit_cut.png
+%%DATADIR%%/themes/classic/edit_draw.png
+%%DATADIR%%/themes/classic/edit_erase.png
+%%DATADIR%%/themes/classic/edit_move.png
+%%DATADIR%%/themes/classic/edit_paste.png
+%%DATADIR%%/themes/classic/edit_redo.png
+%%DATADIR%%/themes/classic/edit_rename.png
+%%DATADIR%%/themes/classic/edit_select.png
+%%DATADIR%%/themes/classic/edit_undo.png
+%%DATADIR%%/themes/classic/effect_plugin.png
+%%DATADIR%%/themes/classic/envelope_graph.png
+%%DATADIR%%/themes/classic/error.png
+%%DATADIR%%/themes/classic/exit.png
+%%DATADIR%%/themes/classic/exp_wave_active.png
+%%DATADIR%%/themes/classic/exp_wave_inactive.png
+%%DATADIR%%/themes/classic/factory_files.png
+%%DATADIR%%/themes/classic/fader_background.png
+%%DATADIR%%/themes/classic/fader_knob.png
+%%DATADIR%%/themes/classic/fader_leds.png
+%%DATADIR%%/themes/classic/filter_2lp.png
+%%DATADIR%%/themes/classic/filter_ap.png
+%%DATADIR%%/themes/classic/filter_bp.png
+%%DATADIR%%/themes/classic/filter_hp.png
+%%DATADIR%%/themes/classic/filter_lp.png
+%%DATADIR%%/themes/classic/filter_notch.png
+%%DATADIR%%/themes/classic/flip_x.png
+%%DATADIR%%/themes/classic/flip_y.png
+%%DATADIR%%/themes/classic/folder.png
+%%DATADIR%%/themes/classic/folder_locked.png
+%%DATADIR%%/themes/classic/folder_opened.png
+%%DATADIR%%/themes/classic/freeze.png
+%%DATADIR%%/themes/classic/frozen.png
+%%DATADIR%%/themes/classic/fx_mixer.png
+%%DATADIR%%/themes/classic/hand.png
+%%DATADIR%%/themes/classic/help.png
+%%DATADIR%%/themes/classic/hint.png
+%%DATADIR%%/themes/classic/home.png
+%%DATADIR%%/themes/classic/hq_mode.png
+%%DATADIR%%/themes/classic/icon.png
+%%DATADIR%%/themes/classic/icon_small.png
+%%DATADIR%%/themes/classic/instrument_track.png
+%%DATADIR%%/themes/classic/keep_stop_position.png
+%%DATADIR%%/themes/classic/knob01.png
+%%DATADIR%%/themes/classic/knob02.png
+%%DATADIR%%/themes/classic/knob03.png
+%%DATADIR%%/themes/classic/knob05.png
+%%DATADIR%%/themes/classic/lcd_19green.png
+%%DATADIR%%/themes/classic/lcd_19red.png
+%%DATADIR%%/themes/classic/lcd_21pink.png
+%%DATADIR%%/themes/classic/led_green.png
+%%DATADIR%%/themes/classic/led_off.png
+%%DATADIR%%/themes/classic/led_red.png
+%%DATADIR%%/themes/classic/led_yellow.png
+%%DATADIR%%/themes/classic/lfo_controller_artwork.png
+%%DATADIR%%/themes/classic/lfo_d100_active.png
+%%DATADIR%%/themes/classic/lfo_d100_inactive.png
+%%DATADIR%%/themes/classic/lfo_graph.png
+%%DATADIR%%/themes/classic/lfo_x100_active.png
+%%DATADIR%%/themes/classic/lfo_x100_inactive.png
+%%DATADIR%%/themes/classic/lfo_x1_active.png
+%%DATADIR%%/themes/classic/lfo_x1_inactive.png
+%%DATADIR%%/themes/classic/loop_points_off.png
+%%DATADIR%%/themes/classic/loop_points_on.png
+%%DATADIR%%/themes/classic/main_slider.png
+%%DATADIR%%/themes/classic/master_pitch.png
+%%DATADIR%%/themes/classic/master_volume.png
+%%DATADIR%%/themes/classic/maximize.png
+%%DATADIR%%/themes/classic/metronome.png
+%%DATADIR%%/themes/classic/midi_file.png
+%%DATADIR%%/themes/classic/mixer_send_off.png
+%%DATADIR%%/themes/classic/mixer_send_on.png
+%%DATADIR%%/themes/classic/moog_saw_wave_active.png
+%%DATADIR%%/themes/classic/moog_saw_wave_inactive.png
+%%DATADIR%%/themes/classic/muted.png
+%%DATADIR%%/themes/classic/new_channel.png
+%%DATADIR%%/themes/classic/note.png
+%%DATADIR%%/themes/classic/note_double_whole.png
+%%DATADIR%%/themes/classic/note_eighth.png
+%%DATADIR%%/themes/classic/note_half.png
+%%DATADIR%%/themes/classic/note_none.png
+%%DATADIR%%/themes/classic/note_quarter.png
+%%DATADIR%%/themes/classic/note_sixteenth.png
+%%DATADIR%%/themes/classic/note_thirtysecond.png
+%%DATADIR%%/themes/classic/note_tripleteighth.png
+%%DATADIR%%/themes/classic/note_triplethalf.png
+%%DATADIR%%/themes/classic/note_tripletquarter.png
+%%DATADIR%%/themes/classic/note_tripletsixteenth.png
+%%DATADIR%%/themes/classic/note_tripletthirtysecond.png
+%%DATADIR%%/themes/classic/note_whole.png
+%%DATADIR%%/themes/classic/output_graph.png
+%%DATADIR%%/themes/classic/pat_rec.png
+%%DATADIR%%/themes/classic/pause.png
+%%DATADIR%%/themes/classic/piano.png
+%%DATADIR%%/themes/classic/play.png
+%%DATADIR%%/themes/classic/playpos_marker.png
+%%DATADIR%%/themes/classic/plugins.png
+%%DATADIR%%/themes/classic/ports.png
+%%DATADIR%%/themes/classic/pr_black_key.png
+%%DATADIR%%/themes/classic/pr_black_key_pressed.png
+%%DATADIR%%/themes/classic/pr_white_key_big.png
+%%DATADIR%%/themes/classic/pr_white_key_big_pressed.png
+%%DATADIR%%/themes/classic/pr_white_key_small.png
+%%DATADIR%%/themes/classic/pr_white_key_small_pressed.png
+%%DATADIR%%/themes/classic/preset_file.png
+%%DATADIR%%/themes/classic/progression_cubic_hermite.png
+%%DATADIR%%/themes/classic/progression_discrete.png
+%%DATADIR%%/themes/classic/progression_linear.png
+%%DATADIR%%/themes/classic/project_export.png
+%%DATADIR%%/themes/classic/project_file.png
+%%DATADIR%%/themes/classic/project_import.png
+%%DATADIR%%/themes/classic/project_new.png
+%%DATADIR%%/themes/classic/project_new_from_template.png
+%%DATADIR%%/themes/classic/project_notes.png
+%%DATADIR%%/themes/classic/project_open.png
+%%DATADIR%%/themes/classic/project_open_down.png
+%%DATADIR%%/themes/classic/project_open_recent.png
+%%DATADIR%%/themes/classic/project_save.png
+%%DATADIR%%/themes/classic/project_saveas.png
+%%DATADIR%%/themes/classic/quantize.png
+%%DATADIR%%/themes/classic/random_wave_active.png
+%%DATADIR%%/themes/classic/random_wave_inactive.png
+%%DATADIR%%/themes/classic/receive_bg_arrow.png
+%%DATADIR%%/themes/classic/record.png
+%%DATADIR%%/themes/classic/record_accompany.png
+%%DATADIR%%/themes/classic/reload.png
+%%DATADIR%%/themes/classic/restore.png
+%%DATADIR%%/themes/classic/round_square_wave_active.png
+%%DATADIR%%/themes/classic/round_square_wave_inactive.png
+%%DATADIR%%/themes/classic/sample_file.png
+%%DATADIR%%/themes/classic/sample_track.png
+%%DATADIR%%/themes/classic/saw_wave_active.png
+%%DATADIR%%/themes/classic/saw_wave_inactive.png
+%%DATADIR%%/themes/classic/sbarrow_down.png
+%%DATADIR%%/themes/classic/sbarrow_down_d.png
+%%DATADIR%%/themes/classic/sbarrow_left.png
+%%DATADIR%%/themes/classic/sbarrow_left_d.png
+%%DATADIR%%/themes/classic/sbarrow_right.png
+%%DATADIR%%/themes/classic/sbarrow_right_d.png
+%%DATADIR%%/themes/classic/sbarrow_up.png
+%%DATADIR%%/themes/classic/sbarrow_up_d.png
+%%DATADIR%%/themes/classic/scale.png
+%%DATADIR%%/themes/classic/send_bg_arrow.png
+%%DATADIR%%/themes/classic/setup_audio.png
+%%DATADIR%%/themes/classic/setup_directories.png
+%%DATADIR%%/themes/classic/setup_general.png
+%%DATADIR%%/themes/classic/setup_midi.png
+%%DATADIR%%/themes/classic/setup_performance.png
+%%DATADIR%%/themes/classic/sin_wave_active.png
+%%DATADIR%%/themes/classic/sin_wave_inactive.png
+%%DATADIR%%/themes/classic/songeditor.png
+%%DATADIR%%/themes/classic/soundfont_file.png
+%%DATADIR%%/themes/classic/splash.png
+%%DATADIR%%/themes/classic/square_wave_active.png
+%%DATADIR%%/themes/classic/square_wave_inactive.png
+%%DATADIR%%/themes/classic/step_btn_add.png
+%%DATADIR%%/themes/classic/step_btn_duplicate.png
+%%DATADIR%%/themes/classic/step_btn_off.png
+%%DATADIR%%/themes/classic/step_btn_off_light.png
+%%DATADIR%%/themes/classic/step_btn_on_0.png
+%%DATADIR%%/themes/classic/step_btn_on_200.png
+%%DATADIR%%/themes/classic/step_btn_remove.png
+%%DATADIR%%/themes/classic/stepper-down-press.png
+%%DATADIR%%/themes/classic/stepper-down.png
+%%DATADIR%%/themes/classic/stepper-left-press.png
+%%DATADIR%%/themes/classic/stepper-left.png
+%%DATADIR%%/themes/classic/stepper-right-press.png
+%%DATADIR%%/themes/classic/stepper-right.png
+%%DATADIR%%/themes/classic/stepper-up-press.png
+%%DATADIR%%/themes/classic/stepper-up.png
+%%DATADIR%%/themes/classic/stop.png
+%%DATADIR%%/themes/classic/style.css
+%%DATADIR%%/themes/classic/tempo_sync.png
+%%DATADIR%%/themes/classic/text_block.png
+%%DATADIR%%/themes/classic/text_bold.png
+%%DATADIR%%/themes/classic/text_center.png
+%%DATADIR%%/themes/classic/text_italic.png
+%%DATADIR%%/themes/classic/text_left.png
+%%DATADIR%%/themes/classic/text_right.png
+%%DATADIR%%/themes/classic/text_under.png
+%%DATADIR%%/themes/classic/track_op_grip.png
+%%DATADIR%%/themes/classic/trackop.png
+%%DATADIR%%/themes/classic/trackop_c.png
+%%DATADIR%%/themes/classic/trackop_h.png
+%%DATADIR%%/themes/classic/triangle_wave_active.png
+%%DATADIR%%/themes/classic/triangle_wave_inactive.png
+%%DATADIR%%/themes/classic/uhoh.png
+%%DATADIR%%/themes/classic/unavailable_sound.png
+%%DATADIR%%/themes/classic/unfreeze.png
+%%DATADIR%%/themes/classic/unknown_file.png
+%%DATADIR%%/themes/classic/usr_wave_active.png
+%%DATADIR%%/themes/classic/usr_wave_inactive.png
+%%DATADIR%%/themes/classic/vst_plugin_file.png
+%%DATADIR%%/themes/classic/whatsthis.png
+%%DATADIR%%/themes/classic/white_key.png
+%%DATADIR%%/themes/classic/white_key_pressed.png
+%%DATADIR%%/themes/classic/white_noise_wave_active.png
+%%DATADIR%%/themes/classic/white_noise_wave_inactive.png
+%%DATADIR%%/themes/classic/zoom.png
+%%DATADIR%%/themes/classic/zoom_x.png
+%%DATADIR%%/themes/classic/zoom_y.png
 %%DATADIR%%/themes/default/add.png
 %%DATADIR%%/themes/default/add_automation.png
 %%DATADIR%%/themes/default/add_bb_track.png
+%%DATADIR%%/themes/default/add_folder.png
 %%DATADIR%%/themes/default/add_sample_track.png
 %%DATADIR%%/themes/default/analysis.png
 %%DATADIR%%/themes/default/apply-selected.png
@@ -2434,7 +2745,6 @@ share/applications/lmms.desktop
 %%DATADIR%%/themes/default/autoscroll_on.png
 %%DATADIR%%/themes/default/back_to_start.png
 %%DATADIR%%/themes/default/back_to_zero.png
-%%DATADIR%%/themes/default/background_artwork.png
 %%DATADIR%%/themes/default/bb_track.png
 %%DATADIR%%/themes/default/bb_track_btn.png
 %%DATADIR%%/themes/default/black_key.png
@@ -2442,17 +2752,18 @@ share/applications/lmms.desktop
 %%DATADIR%%/themes/default/cancel.png
 %%DATADIR%%/themes/default/chord.png
 %%DATADIR%%/themes/default/clock.png
+%%DATADIR%%/themes/default/close.png
+%%DATADIR%%/themes/default/closed_branch.png
 %%DATADIR%%/themes/default/colorize.png
 %%DATADIR%%/themes/default/combobox_arrow.png
 %%DATADIR%%/themes/default/combobox_arrow_selected.png
 %%DATADIR%%/themes/default/combobox_bg.png
 %%DATADIR%%/themes/default/computer.png
 %%DATADIR%%/themes/default/controller.png
-%%DATADIR%%/themes/default/controller_bg.png
 %%DATADIR%%/themes/default/cpuload_bg.png
 %%DATADIR%%/themes/default/cpuload_leds.png
+%%DATADIR%%/themes/default/discard.png
 %%DATADIR%%/themes/default/dont_know.png
-%%DATADIR%%/themes/default/drum.png
 %%DATADIR%%/themes/default/edit_copy.png
 %%DATADIR%%/themes/default/edit_cut.png
 %%DATADIR%%/themes/default/edit_draw.png
@@ -2464,6 +2775,7 @@ share/applications/lmms.desktop
 %%DATADIR%%/themes/default/edit_select.png
 %%DATADIR%%/themes/default/edit_undo.png
 %%DATADIR%%/themes/default/effect_plugin.png
+%%DATADIR%%/themes/default/env_lfo_tab.png
 %%DATADIR%%/themes/default/envelope_graph.png
 %%DATADIR%%/themes/default/error.png
 %%DATADIR%%/themes/default/exit.png
@@ -2473,34 +2785,39 @@ share/applications/lmms.desktop
 %%DATADIR%%/themes/default/fader_background.png
 %%DATADIR%%/themes/default/fader_knob.png
 %%DATADIR%%/themes/default/fader_leds.png
+%%DATADIR%%/themes/default/file.png
 %%DATADIR%%/themes/default/filter_2lp.png
 %%DATADIR%%/themes/default/filter_ap.png
 %%DATADIR%%/themes/default/filter_bp.png
 %%DATADIR%%/themes/default/filter_hp.png
 %%DATADIR%%/themes/default/filter_lp.png
 %%DATADIR%%/themes/default/filter_notch.png
+%%DATADIR%%/themes/default/flip_x.png
+%%DATADIR%%/themes/default/flip_y.png
 %%DATADIR%%/themes/default/folder.png
 %%DATADIR%%/themes/default/folder_locked.png
 %%DATADIR%%/themes/default/folder_opened.png
-%%DATADIR%%/themes/default/freeze.png
-%%DATADIR%%/themes/default/frozen.png
+%%DATADIR%%/themes/default/func_tab.png
 %%DATADIR%%/themes/default/fx_mixer.png
+%%DATADIR%%/themes/default/fx_tab.png
 %%DATADIR%%/themes/default/hand.png
 %%DATADIR%%/themes/default/help.png
 %%DATADIR%%/themes/default/hint.png
 %%DATADIR%%/themes/default/home.png
 %%DATADIR%%/themes/default/hq_mode.png
 %%DATADIR%%/themes/default/icon.png
+%%DATADIR%%/themes/default/icon_small.png
+%%DATADIR%%/themes/default/ignore.png
 %%DATADIR%%/themes/default/instrument_track.png
 %%DATADIR%%/themes/default/keep_stop_position.png
 %%DATADIR%%/themes/default/knob01.png
 %%DATADIR%%/themes/default/knob02.png
 %%DATADIR%%/themes/default/knob03.png
-%%DATADIR%%/themes/default/knob04.png
 %%DATADIR%%/themes/default/knob05.png
 %%DATADIR%%/themes/default/lcd_19green.png
 %%DATADIR%%/themes/default/lcd_19red.png
 %%DATADIR%%/themes/default/lcd_21pink.png
+%%DATADIR%%/themes/default/led_blue.png
 %%DATADIR%%/themes/default/led_green.png
 %%DATADIR%%/themes/default/led_off.png
 %%DATADIR%%/themes/default/led_red.png
@@ -2513,15 +2830,17 @@ share/applications/lmms.desktop
 %%DATADIR%%/themes/default/lfo_x100_inactive.png
 %%DATADIR%%/themes/default/lfo_x1_active.png
 %%DATADIR%%/themes/default/lfo_x1_inactive.png
-%%DATADIR%%/themes/default/loop_point_b.png
-%%DATADIR%%/themes/default/loop_point_e.png
+%%DATADIR%%/themes/default/loop_point.png
 %%DATADIR%%/themes/default/loop_points_off.png
 %%DATADIR%%/themes/default/loop_points_on.png
 %%DATADIR%%/themes/default/main_slider.png
-%%DATADIR%%/themes/default/main_toolbar_bg.png
 %%DATADIR%%/themes/default/master_pitch.png

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809281550.w8SFoUSL026508>