├── .clang-format ├── .clang-tidy ├── .contextProperties.ini ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.yml ├── dependabot.yaml └── workflows │ ├── CI.yaml │ ├── artifact-pr-comment.yaml │ ├── deploy-help.yaml │ ├── flatpak-update.yaml │ └── translation-templates.yaml ├── .gitignore ├── .qmlformat.ini ├── .qmllint.ini ├── CHANGELOG.md ├── CMakeLists.txt ├── COMMUNITY_PRESETS_GUIDELINES.md ├── LICENSE ├── PKGBUILD ├── PKGBUILD_AUR ├── README.md ├── data ├── icons │ └── scalable │ │ └── emblems │ │ ├── credits.txt │ │ ├── ee-applications-multimedia-symbolic.svg │ │ ├── ee-arrow-down-symbolic.svg │ │ ├── ee-arrows-right-symbolic.svg │ │ ├── ee-bypass-symbolic.svg │ │ ├── ee-double-vertical-lines-symbolic.svg │ │ ├── ee-drag-handle-symbolic.svg │ │ └── ee-spectrum-symbolic.svg └── presets │ ├── gstreamer_ballad.json │ ├── gstreamer_classic.json │ ├── gstreamer_club.json │ ├── gstreamer_dance.json │ ├── gstreamer_more_bass.json │ ├── gstreamer_more_bass_and_treble.json │ ├── gstreamer_party.json │ ├── gstreamer_pop.json │ ├── gstreamer_reggae.json │ ├── gstreamer_rock.json │ ├── gstreamer_ska.json │ ├── gstreamer_soft.json │ ├── gstreamer_techno.json │ └── ziyad_perfecteq.json ├── debian ├── changelog ├── control ├── copyright ├── rules ├── source │ └── format └── watch ├── easyeffects.code-workspace ├── images ├── appdata-screenshot-01.png ├── appdata-screenshot-02.png ├── appdata-screenshot-03.png ├── appdata-screenshot-04.png ├── appdata-screenshot-05.png ├── convolver.png ├── easyeffects-dark-screenshot-1.png ├── easyeffects-dark-screenshot-2.png ├── easyeffects-dark-screenshot-3.png ├── easyeffects-light-screenshot-1.png ├── easyeffects-light-screenshot-2.png ├── easyeffects-light-screenshot-3.png ├── easyeffects_players.png ├── easyeffects_plugins.png └── master_screenshot_test.png ├── po ├── LINGUAS ├── af │ └── easyeffects.po ├── ar │ └── easyeffects.po ├── bg │ └── easyeffects.po ├── ca │ └── easyeffects.po ├── cs │ └── easyeffects.po ├── da │ └── easyeffects.po ├── de │ └── easyeffects.po ├── easyeffects.pot ├── es │ └── easyeffects.po ├── es_CO │ └── easyeffects.po ├── es_MX │ └── easyeffects.po ├── es_VE │ └── easyeffects.po ├── eu │ └── easyeffects.po ├── fa │ └── easyeffects.po ├── fr │ └── easyeffects.po ├── ga │ └── easyeffects.po ├── gl │ └── easyeffects.po ├── hr │ └── easyeffects.po ├── hu │ └── easyeffects.po ├── id_ID │ └── easyeffects.po ├── it_IT │ └── easyeffects.po ├── ja │ └── easyeffects.po ├── ka │ └── easyeffects.po ├── km │ └── easyeffects.po ├── ko │ └── easyeffects.po ├── nb_NO │ └── easyeffects.po ├── nl │ └── easyeffects.po ├── nn │ └── easyeffects.po ├── pl │ └── easyeffects.po ├── pt │ └── easyeffects.po ├── pt_BR │ └── easyeffects.po ├── ro │ └── easyeffects.po ├── ru │ └── easyeffects.po ├── sk │ └── easyeffects.po ├── sv │ └── easyeffects.po ├── ta │ └── easyeffects.po ├── th │ └── easyeffects.po ├── tr │ └── easyeffects.po ├── uk │ └── easyeffects.po ├── zh_CN │ └── easyeffects.po └── zh_Hant │ └── easyeffects.po ├── po_news ├── LINGUAS ├── af │ └── easyeffects.po ├── ar │ └── easyeffects.po ├── cs │ └── easyeffects.po ├── da │ └── easyeffects.po ├── de │ └── easyeffects.po ├── easyeffects-news.pot ├── es │ └── easyeffects.po ├── es_CO │ └── easyeffects.po ├── es_MX │ └── easyeffects.po ├── es_VE │ └── easyeffects.po ├── eu │ └── easyeffects.po ├── fa │ └── easyeffects.po ├── fi │ └── easyeffects.po ├── fr_FR │ └── easyeffects.po ├── ga │ └── easyeffects.po ├── gl │ └── easyeffects.po ├── hi │ └── easyeffects.po ├── hr │ └── easyeffects.po ├── hu │ └── easyeffects.po ├── id_ID │ └── easyeffects.po ├── it_IT │ └── easyeffects.po ├── ja │ └── easyeffects.po ├── km │ └── easyeffects.po ├── ko │ └── easyeffects.po ├── nb_NO │ └── easyeffects.po ├── nl │ └── easyeffects.po ├── nn │ └── easyeffects.po ├── pl │ └── easyeffects.po ├── pt │ └── easyeffects.po ├── pt_BR │ └── easyeffects.po ├── ro │ └── easyeffects.po ├── ru │ └── easyeffects.po ├── sk │ └── easyeffects.po ├── sv │ └── easyeffects.po ├── ta │ └── easyeffects.po ├── th │ └── easyeffects.po ├── tr │ └── easyeffects.po ├── uk │ └── easyeffects.po ├── zh_CN │ └── easyeffects.po └── zh_Hant │ └── easyeffects.po ├── src ├── CMakeLists.txt ├── autogain.cpp ├── autogain.hpp ├── autogain_preset.cpp ├── autogain_preset.hpp ├── autostart.cpp ├── autostart.hpp ├── bass_enhancer.cpp ├── bass_enhancer.hpp ├── bass_enhancer_preset.cpp ├── bass_enhancer_preset.hpp ├── bass_loudness.cpp ├── bass_loudness.hpp ├── bass_loudness_preset.cpp ├── bass_loudness_preset.hpp ├── command_line_parser.cpp ├── command_line_parser.hpp ├── compressor.cpp ├── compressor.hpp ├── compressor_preset.cpp ├── compressor_preset.hpp ├── config.h.in ├── contents │ ├── CMakeLists.txt │ ├── com.github.wwmm.easyeffects.Source.svg │ ├── com.github.wwmm.easyeffects.desktop.in │ ├── com.github.wwmm.easyeffects.desktop.in.template │ ├── com.github.wwmm.easyeffects.metainfo.xml.in │ ├── help │ │ ├── C.css │ │ ├── advancedinfo.html │ │ ├── autogain.html │ │ ├── bassenhancer.html │ │ ├── bassloudness.html │ │ ├── blocklist.html │ │ ├── compressor.html │ │ ├── convolver.html │ │ ├── crossfeed.html │ │ ├── crystalizer.html │ │ ├── deepfilternet.html │ │ ├── deesser.html │ │ ├── delay.html │ │ ├── echocanceller.html │ │ ├── effectsorder.html │ │ ├── enableapp.html │ │ ├── equalizer.html │ │ ├── exciter.html │ │ ├── expander.html │ │ ├── filter.html │ │ ├── gate.html │ │ ├── general.html │ │ ├── guide_1.html │ │ ├── highlight.pack.js │ │ ├── index.html │ │ ├── limiter.html │ │ ├── loudness.html │ │ ├── maximizer.html │ │ ├── multibandcompressor.html │ │ ├── multibandgate.html │ │ ├── pipewire.html │ │ ├── pitch.html │ │ ├── reverb.html │ │ ├── rnnoise.html │ │ ├── saturated.html │ │ ├── settingsmenu.html │ │ ├── spectrum.html │ │ ├── speex.html │ │ ├── stereotools.html │ │ ├── testsignals.html │ │ ├── userpresets.html │ │ └── yelp.js │ ├── icons │ │ ├── com.github.wwmm.easyeffects-symbolic.svg │ │ ├── com.github.wwmm.easyeffects.Devel.svg │ │ └── com.github.wwmm.easyeffects.svg │ ├── kcfg │ │ ├── easyeffects_db.kcfg │ │ ├── easyeffects_db.kcfgc │ │ ├── easyeffects_db_autogain.kcfg │ │ ├── easyeffects_db_autogain.kcfgc │ │ ├── easyeffects_db_bass_enhancer.kcfg │ │ ├── easyeffects_db_bass_enhancer.kcfgc │ │ ├── easyeffects_db_bass_loudness.kcfg │ │ ├── easyeffects_db_bass_loudness.kcfgc │ │ ├── easyeffects_db_compressor.kcfg │ │ ├── easyeffects_db_compressor.kcfgc │ │ ├── easyeffects_db_convolver.kcfg │ │ ├── easyeffects_db_convolver.kcfgc │ │ ├── easyeffects_db_crossfeed.kcfg │ │ ├── easyeffects_db_crossfeed.kcfgc │ │ ├── easyeffects_db_crystalizer.kcfg │ │ ├── easyeffects_db_crystalizer.kcfgc │ │ ├── easyeffects_db_deepfilternet.kcfg │ │ ├── easyeffects_db_deepfilternet.kcfgc │ │ ├── easyeffects_db_deesser.kcfg │ │ ├── easyeffects_db_deesser.kcfgc │ │ ├── easyeffects_db_delay.kcfg │ │ ├── easyeffects_db_delay.kcfgc │ │ ├── easyeffects_db_echo_canceller.kcfg │ │ ├── easyeffects_db_echo_canceller.kcfgc │ │ ├── easyeffects_db_equalizer.kcfg │ │ ├── easyeffects_db_equalizer.kcfgc │ │ ├── easyeffects_db_equalizer_channel.kcfg │ │ ├── easyeffects_db_equalizer_channel.kcfgc │ │ ├── easyeffects_db_exciter.kcfg │ │ ├── easyeffects_db_exciter.kcfgc │ │ ├── easyeffects_db_expander.kcfg │ │ ├── easyeffects_db_expander.kcfgc │ │ ├── easyeffects_db_filter.kcfg │ │ ├── easyeffects_db_filter.kcfgc │ │ ├── easyeffects_db_gate.kcfg │ │ ├── easyeffects_db_gate.kcfgc │ │ ├── easyeffects_db_graph.kcfg │ │ ├── easyeffects_db_graph.kcfgc │ │ ├── easyeffects_db_level_meter.kcfg │ │ ├── easyeffects_db_level_meter.kcfgc │ │ ├── easyeffects_db_limiter.kcfg │ │ ├── easyeffects_db_limiter.kcfgc │ │ ├── easyeffects_db_loudness.kcfg │ │ ├── easyeffects_db_loudness.kcfgc │ │ ├── easyeffects_db_maximizer.kcfg │ │ ├── easyeffects_db_maximizer.kcfgc │ │ ├── easyeffects_db_multiband_compressor.kcfg │ │ ├── easyeffects_db_multiband_compressor.kcfgc │ │ ├── easyeffects_db_multiband_gate.kcfg │ │ ├── easyeffects_db_multiband_gate.kcfgc │ │ ├── easyeffects_db_pitch.kcfg │ │ ├── easyeffects_db_pitch.kcfgc │ │ ├── easyeffects_db_reverb.kcfg │ │ ├── easyeffects_db_reverb.kcfgc │ │ ├── easyeffects_db_rnnoise.kcfg │ │ ├── easyeffects_db_rnnoise.kcfgc │ │ ├── easyeffects_db_spectrum.kcfg │ │ ├── easyeffects_db_spectrum.kcfgc │ │ ├── easyeffects_db_speex.kcfg │ │ ├── easyeffects_db_speex.kcfgc │ │ ├── easyeffects_db_stereo_tools.kcfg │ │ ├── easyeffects_db_stereo_tools.kcfgc │ │ ├── easyeffects_db_streaminputs.kcfg │ │ ├── easyeffects_db_streaminputs.kcfgc │ │ ├── easyeffects_db_streamoutputs.kcfg │ │ ├── easyeffects_db_streamoutputs.kcfgc │ │ ├── easyeffects_db_test_signals.kcfg │ │ └── easyeffects_db_test_signals.kcfgc │ └── ui │ │ ├── AboutPage.qml │ │ ├── Autogain.qml │ │ ├── BassEnhancer.qml │ │ ├── BassLoudness.qml │ │ ├── BlocklistDialog.qml │ │ ├── Common.js │ │ ├── Compressor.qml │ │ ├── Convolver.qml │ │ ├── ConvolverImpulseDialog.qml │ │ ├── Crossfeed.qml │ │ ├── Crystalizer.qml │ │ ├── CrystalizerBand.qml │ │ ├── DeepFilterNet.qml │ │ ├── Deesser.qml │ │ ├── Delay.qml │ │ ├── DelegateClientsList.qml │ │ ├── DelegateModulesList.qml │ │ ├── DelegatePluginsList.qml │ │ ├── DelegateStreamsList.qml │ │ ├── EchoCanceller.qml │ │ ├── EeAudioLevel.qml │ │ ├── EeCard.qml │ │ ├── EeChart.qml │ │ ├── EeInputOutputGain.qml │ │ ├── EeListSectionHeader.qml │ │ ├── EeProgressBar.qml │ │ ├── EeSpinBox.qml │ │ ├── EeSwitch.qml │ │ ├── Equalizer.qml │ │ ├── EqualizerBand.qml │ │ ├── EqualizerBandMenu.qml │ │ ├── Exciter.qml │ │ ├── Expander.qml │ │ ├── Filter.qml │ │ ├── Gate.qml │ │ ├── HelpSheet.qml │ │ ├── LevelMeter.qml │ │ ├── Limiter.qml │ │ ├── Loudness.qml │ │ ├── LspPreMixDialog.qml │ │ ├── Main.qml │ │ ├── Maximizer.qml │ │ ├── MenuAddPlugins.qml │ │ ├── MultibandCompressor.qml │ │ ├── MultibandGate.qml │ │ ├── PageStreamsEffects.qml │ │ ├── PipeWirePage.qml │ │ ├── Pitch.qml │ │ ├── PluginNotAvailable.qml │ │ ├── PreferencesSheet.qml │ │ ├── PresetsAutoloadingPage.qml │ │ ├── PresetsCommunityPage.qml │ │ ├── PresetsDialog.qml │ │ ├── PresetsLocalPage.qml │ │ ├── RNNoise.qml │ │ ├── Reverb.qml │ │ ├── ShortcutsSheet.qml │ │ ├── Speex.qml │ │ ├── StereoTools.qml │ │ └── Validators.qml ├── convolver.cpp ├── convolver.hpp ├── convolver_kernel_fft.cpp ├── convolver_kernel_fft.hpp ├── convolver_kernel_manager.cpp ├── convolver_kernel_manager.hpp ├── convolver_preset.cpp ├── convolver_preset.hpp ├── convolver_zita.cpp ├── convolver_zita.hpp ├── crossfeed.cpp ├── crossfeed.hpp ├── crossfeed_preset.cpp ├── crossfeed_preset.hpp ├── crystalizer.cpp ├── crystalizer.hpp ├── crystalizer_preset.cpp ├── crystalizer_preset.hpp ├── db_manager.cpp ├── db_manager.hpp ├── deepfilternet.cpp ├── deepfilternet.hpp ├── deepfilternet_preset.cpp ├── deepfilternet_preset.hpp ├── deesser.cpp ├── deesser.hpp ├── deesser_preset.cpp ├── deesser_preset.hpp ├── delay.cpp ├── delay.hpp ├── delay_preset.cpp ├── delay_preset.hpp ├── echo_canceller.cpp ├── echo_canceller.hpp ├── echo_canceller_preset.cpp ├── echo_canceller_preset.hpp ├── effects_base.cpp ├── effects_base.hpp ├── equalizer.cpp ├── equalizer.hpp ├── equalizer_apo.cpp ├── equalizer_apo.hpp ├── equalizer_macros.hpp ├── equalizer_preset.cpp ├── equalizer_preset.hpp ├── exciter.cpp ├── exciter.hpp ├── exciter_preset.cpp ├── exciter_preset.hpp ├── expander.cpp ├── expander.hpp ├── expander_preset.cpp ├── expander_preset.hpp ├── filter.cpp ├── filter.hpp ├── filter_preset.cpp ├── filter_preset.hpp ├── fir_filter_bandpass.cpp ├── fir_filter_bandpass.hpp ├── fir_filter_base.cpp ├── fir_filter_base.hpp ├── fir_filter_highpass.cpp ├── fir_filter_highpass.hpp ├── fir_filter_lowpass.cpp ├── fir_filter_lowpass.hpp ├── gate.cpp ├── gate.hpp ├── gate_preset.cpp ├── gate_preset.hpp ├── global_shortcuts.cpp ├── global_shortcuts.hpp ├── kcolor_manager.cpp ├── kcolor_manager.hpp ├── kconfig_base_ee.cpp ├── kconfig_base_ee.hpp ├── ladspa_macros.hpp ├── ladspa_wrapper.cpp ├── ladspa_wrapper.hpp ├── level_meter.cpp ├── level_meter.hpp ├── level_meter_preset.cpp ├── level_meter_preset.hpp ├── limiter.cpp ├── limiter.hpp ├── limiter_preset.cpp ├── limiter_preset.hpp ├── local_client.cpp ├── local_client.hpp ├── local_server.cpp ├── local_server.hpp ├── loudness.cpp ├── loudness.hpp ├── loudness_preset.cpp ├── loudness_preset.hpp ├── lv2_macros.hpp ├── lv2_ui.cpp ├── lv2_ui.hpp ├── lv2_wrapper.cpp ├── lv2_wrapper.hpp ├── main.cpp ├── maximizer.cpp ├── maximizer.hpp ├── maximizer_preset.cpp ├── maximizer_preset.hpp ├── multi_band_macros.hpp ├── multiband_compressor.cpp ├── multiband_compressor.hpp ├── multiband_compressor_preset.cpp ├── multiband_compressor_preset.hpp ├── multiband_gate.cpp ├── multiband_gate.hpp ├── multiband_gate_preset.cpp ├── multiband_gate_preset.hpp ├── output_level.cpp ├── output_level.hpp ├── pipeline_type.hpp ├── pitch.cpp ├── pitch.hpp ├── pitch_preset.cpp ├── pitch_preset.hpp ├── plugin_base.cpp ├── plugin_base.hpp ├── plugin_preset_base.cpp ├── plugin_preset_base.hpp ├── presets_autoload_manager.cpp ├── presets_autoload_manager.hpp ├── presets_community_manager.cpp ├── presets_community_manager.hpp ├── presets_directory_manager.cpp ├── presets_directory_manager.hpp ├── presets_irs_manager.cpp ├── presets_irs_manager.hpp ├── presets_list_model.cpp ├── presets_list_model.hpp ├── presets_macros.hpp ├── presets_manager.cpp ├── presets_manager.hpp ├── presets_rnnoise_manager.cpp ├── presets_rnnoise_manager.hpp ├── pw_client_manager.cpp ├── pw_client_manager.hpp ├── pw_device_manager.cpp ├── pw_device_manager.hpp ├── pw_link_manager.cpp ├── pw_link_manager.hpp ├── pw_manager.cpp ├── pw_manager.hpp ├── pw_metadata_manager.cpp ├── pw_metadata_manager.hpp ├── pw_model_clients.cpp ├── pw_model_clients.hpp ├── pw_model_modules.cpp ├── pw_model_modules.hpp ├── pw_model_nodes.cpp ├── pw_model_nodes.hpp ├── pw_module_manager.cpp ├── pw_module_manager.hpp ├── pw_node_manager.cpp ├── pw_node_manager.hpp ├── pw_objects.hpp ├── resampler.cpp ├── resampler.hpp ├── resources.qrc ├── reverb.cpp ├── reverb.hpp ├── reverb_preset.cpp ├── reverb_preset.hpp ├── rnnoise.cpp ├── rnnoise.hpp ├── rnnoise_preset.cpp ├── rnnoise_preset.hpp ├── spectrum.cpp ├── spectrum.hpp ├── speex.cpp ├── speex.hpp ├── speex_preset.cpp ├── speex_preset.hpp ├── stereo_tools.cpp ├── stereo_tools.hpp ├── stereo_tools_preset.cpp ├── stereo_tools_preset.hpp ├── stream_input_effects.cpp ├── stream_input_effects.hpp ├── stream_output_effects.cpp ├── stream_output_effects.hpp ├── string_literal_wrapper.hpp ├── tags_app.hpp ├── tags_equalizer.hpp ├── tags_local_server.hpp ├── tags_multiband_compressor.hpp ├── tags_multiband_gate.hpp ├── tags_pipewire.hpp ├── tags_plugin_name.cpp ├── tags_plugin_name.hpp ├── test_signals.cpp ├── test_signals.hpp ├── units.hpp ├── util.cpp └── util.hpp └── util ├── NEWS.yaml ├── adding_new_plugins.txt ├── autobuild.sh ├── changes_since_last_release.sh ├── check-kcfg-numeric-defaults.sh ├── clang-tidy.sh ├── cmake_commands.txt ├── convert_schema_to_kcfg.sh ├── crystalizer.py ├── debug.txt ├── environmental_variables.sh ├── extract-translation-messages.sh ├── flatpak ├── com.github.wwmm.easyeffects.Devel.json ├── easyeffects-modules.json ├── patch │ ├── bs2b │ │ └── 001-fix-automake-dist-lzma.patch │ └── zita-convolver │ │ └── 0001-Fix-makefile.patch └── shared-modules │ └── linux-audio │ ├── fftw3f.json │ ├── ladspa.json │ ├── lilv.json │ └── lv2.json ├── kde_guides.txt ├── news-release-template.yaml ├── port_po_files.py ├── qmlformat.sh ├── qmllint.sh ├── qt_help_project.txt ├── run-clang-tidy.py ├── sanitizer.supp ├── sanitizer.txt ├── test.wav ├── update-release-files.sh └── valgrind.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.contextProperties.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.contextProperties.ini -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.github/workflows/artifact-pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/workflows/artifact-pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/workflows/deploy-help.yaml -------------------------------------------------------------------------------- /.github/workflows/flatpak-update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/workflows/flatpak-update.yaml -------------------------------------------------------------------------------- /.github/workflows/translation-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.github/workflows/translation-templates.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.gitignore -------------------------------------------------------------------------------- /.qmlformat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.qmlformat.ini -------------------------------------------------------------------------------- /.qmllint.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/.qmllint.ini -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COMMUNITY_PRESETS_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/COMMUNITY_PRESETS_GUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/PKGBUILD -------------------------------------------------------------------------------- /PKGBUILD_AUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/PKGBUILD_AUR -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/README.md -------------------------------------------------------------------------------- /data/icons/scalable/emblems/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/credits.txt -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-applications-multimedia-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-applications-multimedia-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-arrow-down-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-arrow-down-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-arrows-right-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-arrows-right-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-bypass-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-bypass-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-double-vertical-lines-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-double-vertical-lines-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-drag-handle-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-drag-handle-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/ee-spectrum-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/icons/scalable/emblems/ee-spectrum-symbolic.svg -------------------------------------------------------------------------------- /data/presets/gstreamer_ballad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_ballad.json -------------------------------------------------------------------------------- /data/presets/gstreamer_classic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_classic.json -------------------------------------------------------------------------------- /data/presets/gstreamer_club.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_club.json -------------------------------------------------------------------------------- /data/presets/gstreamer_dance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_dance.json -------------------------------------------------------------------------------- /data/presets/gstreamer_more_bass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_more_bass.json -------------------------------------------------------------------------------- /data/presets/gstreamer_more_bass_and_treble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_more_bass_and_treble.json -------------------------------------------------------------------------------- /data/presets/gstreamer_party.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_party.json -------------------------------------------------------------------------------- /data/presets/gstreamer_pop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_pop.json -------------------------------------------------------------------------------- /data/presets/gstreamer_reggae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_reggae.json -------------------------------------------------------------------------------- /data/presets/gstreamer_rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_rock.json -------------------------------------------------------------------------------- /data/presets/gstreamer_ska.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_ska.json -------------------------------------------------------------------------------- /data/presets/gstreamer_soft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_soft.json -------------------------------------------------------------------------------- /data/presets/gstreamer_techno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/gstreamer_techno.json -------------------------------------------------------------------------------- /data/presets/ziyad_perfecteq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/data/presets/ziyad_perfecteq.json -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/debian/watch -------------------------------------------------------------------------------- /easyeffects.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/easyeffects.code-workspace -------------------------------------------------------------------------------- /images/appdata-screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/appdata-screenshot-01.png -------------------------------------------------------------------------------- /images/appdata-screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/appdata-screenshot-02.png -------------------------------------------------------------------------------- /images/appdata-screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/appdata-screenshot-03.png -------------------------------------------------------------------------------- /images/appdata-screenshot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/appdata-screenshot-04.png -------------------------------------------------------------------------------- /images/appdata-screenshot-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/appdata-screenshot-05.png -------------------------------------------------------------------------------- /images/convolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/convolver.png -------------------------------------------------------------------------------- /images/easyeffects-dark-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-dark-screenshot-1.png -------------------------------------------------------------------------------- /images/easyeffects-dark-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-dark-screenshot-2.png -------------------------------------------------------------------------------- /images/easyeffects-dark-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-dark-screenshot-3.png -------------------------------------------------------------------------------- /images/easyeffects-light-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-light-screenshot-1.png -------------------------------------------------------------------------------- /images/easyeffects-light-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-light-screenshot-2.png -------------------------------------------------------------------------------- /images/easyeffects-light-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects-light-screenshot-3.png -------------------------------------------------------------------------------- /images/easyeffects_players.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects_players.png -------------------------------------------------------------------------------- /images/easyeffects_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/easyeffects_plugins.png -------------------------------------------------------------------------------- /images/master_screenshot_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/images/master_screenshot_test.png -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/af/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/af/easyeffects.po -------------------------------------------------------------------------------- /po/ar/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ar/easyeffects.po -------------------------------------------------------------------------------- /po/bg/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/bg/easyeffects.po -------------------------------------------------------------------------------- /po/ca/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ca/easyeffects.po -------------------------------------------------------------------------------- /po/cs/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/cs/easyeffects.po -------------------------------------------------------------------------------- /po/da/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/da/easyeffects.po -------------------------------------------------------------------------------- /po/de/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/de/easyeffects.po -------------------------------------------------------------------------------- /po/easyeffects.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/easyeffects.pot -------------------------------------------------------------------------------- /po/es/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/es/easyeffects.po -------------------------------------------------------------------------------- /po/es_CO/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/es_CO/easyeffects.po -------------------------------------------------------------------------------- /po/es_MX/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/es_MX/easyeffects.po -------------------------------------------------------------------------------- /po/es_VE/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/es_VE/easyeffects.po -------------------------------------------------------------------------------- /po/eu/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/eu/easyeffects.po -------------------------------------------------------------------------------- /po/fa/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/fa/easyeffects.po -------------------------------------------------------------------------------- /po/fr/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/fr/easyeffects.po -------------------------------------------------------------------------------- /po/ga/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ga/easyeffects.po -------------------------------------------------------------------------------- /po/gl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/gl/easyeffects.po -------------------------------------------------------------------------------- /po/hr/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/hr/easyeffects.po -------------------------------------------------------------------------------- /po/hu/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/hu/easyeffects.po -------------------------------------------------------------------------------- /po/id_ID/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/id_ID/easyeffects.po -------------------------------------------------------------------------------- /po/it_IT/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/it_IT/easyeffects.po -------------------------------------------------------------------------------- /po/ja/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ja/easyeffects.po -------------------------------------------------------------------------------- /po/ka/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ka/easyeffects.po -------------------------------------------------------------------------------- /po/km/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/km/easyeffects.po -------------------------------------------------------------------------------- /po/ko/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ko/easyeffects.po -------------------------------------------------------------------------------- /po/nb_NO/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/nb_NO/easyeffects.po -------------------------------------------------------------------------------- /po/nl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/nl/easyeffects.po -------------------------------------------------------------------------------- /po/nn/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/nn/easyeffects.po -------------------------------------------------------------------------------- /po/pl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/pl/easyeffects.po -------------------------------------------------------------------------------- /po/pt/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/pt/easyeffects.po -------------------------------------------------------------------------------- /po/pt_BR/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/pt_BR/easyeffects.po -------------------------------------------------------------------------------- /po/ro/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ro/easyeffects.po -------------------------------------------------------------------------------- /po/ru/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ru/easyeffects.po -------------------------------------------------------------------------------- /po/sk/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/sk/easyeffects.po -------------------------------------------------------------------------------- /po/sv/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/sv/easyeffects.po -------------------------------------------------------------------------------- /po/ta/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/ta/easyeffects.po -------------------------------------------------------------------------------- /po/th/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/th/easyeffects.po -------------------------------------------------------------------------------- /po/tr/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/tr/easyeffects.po -------------------------------------------------------------------------------- /po/uk/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/uk/easyeffects.po -------------------------------------------------------------------------------- /po/zh_CN/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/zh_CN/easyeffects.po -------------------------------------------------------------------------------- /po/zh_Hant/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po/zh_Hant/easyeffects.po -------------------------------------------------------------------------------- /po_news/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/LINGUAS -------------------------------------------------------------------------------- /po_news/af/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/af/easyeffects.po -------------------------------------------------------------------------------- /po_news/ar/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ar/easyeffects.po -------------------------------------------------------------------------------- /po_news/cs/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/cs/easyeffects.po -------------------------------------------------------------------------------- /po_news/da/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/da/easyeffects.po -------------------------------------------------------------------------------- /po_news/de/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/de/easyeffects.po -------------------------------------------------------------------------------- /po_news/easyeffects-news.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/easyeffects-news.pot -------------------------------------------------------------------------------- /po_news/es/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/es/easyeffects.po -------------------------------------------------------------------------------- /po_news/es_CO/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/es_CO/easyeffects.po -------------------------------------------------------------------------------- /po_news/es_MX/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/es_MX/easyeffects.po -------------------------------------------------------------------------------- /po_news/es_VE/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/es_VE/easyeffects.po -------------------------------------------------------------------------------- /po_news/eu/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/eu/easyeffects.po -------------------------------------------------------------------------------- /po_news/fa/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/fa/easyeffects.po -------------------------------------------------------------------------------- /po_news/fi/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/fi/easyeffects.po -------------------------------------------------------------------------------- /po_news/fr_FR/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/fr_FR/easyeffects.po -------------------------------------------------------------------------------- /po_news/ga/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ga/easyeffects.po -------------------------------------------------------------------------------- /po_news/gl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/gl/easyeffects.po -------------------------------------------------------------------------------- /po_news/hi/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/hi/easyeffects.po -------------------------------------------------------------------------------- /po_news/hr/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/hr/easyeffects.po -------------------------------------------------------------------------------- /po_news/hu/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/hu/easyeffects.po -------------------------------------------------------------------------------- /po_news/id_ID/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/id_ID/easyeffects.po -------------------------------------------------------------------------------- /po_news/it_IT/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/it_IT/easyeffects.po -------------------------------------------------------------------------------- /po_news/ja/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ja/easyeffects.po -------------------------------------------------------------------------------- /po_news/km/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/km/easyeffects.po -------------------------------------------------------------------------------- /po_news/ko/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ko/easyeffects.po -------------------------------------------------------------------------------- /po_news/nb_NO/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/nb_NO/easyeffects.po -------------------------------------------------------------------------------- /po_news/nl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/nl/easyeffects.po -------------------------------------------------------------------------------- /po_news/nn/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/nn/easyeffects.po -------------------------------------------------------------------------------- /po_news/pl/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/pl/easyeffects.po -------------------------------------------------------------------------------- /po_news/pt/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/pt/easyeffects.po -------------------------------------------------------------------------------- /po_news/pt_BR/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/pt_BR/easyeffects.po -------------------------------------------------------------------------------- /po_news/ro/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ro/easyeffects.po -------------------------------------------------------------------------------- /po_news/ru/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ru/easyeffects.po -------------------------------------------------------------------------------- /po_news/sk/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/sk/easyeffects.po -------------------------------------------------------------------------------- /po_news/sv/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/sv/easyeffects.po -------------------------------------------------------------------------------- /po_news/ta/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/ta/easyeffects.po -------------------------------------------------------------------------------- /po_news/th/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/th/easyeffects.po -------------------------------------------------------------------------------- /po_news/tr/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/tr/easyeffects.po -------------------------------------------------------------------------------- /po_news/uk/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/uk/easyeffects.po -------------------------------------------------------------------------------- /po_news/zh_CN/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/zh_CN/easyeffects.po -------------------------------------------------------------------------------- /po_news/zh_Hant/easyeffects.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/po_news/zh_Hant/easyeffects.po -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/autogain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autogain.cpp -------------------------------------------------------------------------------- /src/autogain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autogain.hpp -------------------------------------------------------------------------------- /src/autogain_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autogain_preset.cpp -------------------------------------------------------------------------------- /src/autogain_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autogain_preset.hpp -------------------------------------------------------------------------------- /src/autostart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autostart.cpp -------------------------------------------------------------------------------- /src/autostart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/autostart.hpp -------------------------------------------------------------------------------- /src/bass_enhancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_enhancer.cpp -------------------------------------------------------------------------------- /src/bass_enhancer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_enhancer.hpp -------------------------------------------------------------------------------- /src/bass_enhancer_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_enhancer_preset.cpp -------------------------------------------------------------------------------- /src/bass_enhancer_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_enhancer_preset.hpp -------------------------------------------------------------------------------- /src/bass_loudness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_loudness.cpp -------------------------------------------------------------------------------- /src/bass_loudness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_loudness.hpp -------------------------------------------------------------------------------- /src/bass_loudness_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_loudness_preset.cpp -------------------------------------------------------------------------------- /src/bass_loudness_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/bass_loudness_preset.hpp -------------------------------------------------------------------------------- /src/command_line_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/command_line_parser.cpp -------------------------------------------------------------------------------- /src/command_line_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/command_line_parser.hpp -------------------------------------------------------------------------------- /src/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/compressor.cpp -------------------------------------------------------------------------------- /src/compressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/compressor.hpp -------------------------------------------------------------------------------- /src/compressor_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/compressor_preset.cpp -------------------------------------------------------------------------------- /src/compressor_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/compressor_preset.hpp -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/contents/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/CMakeLists.txt -------------------------------------------------------------------------------- /src/contents/com.github.wwmm.easyeffects.Source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/com.github.wwmm.easyeffects.Source.svg -------------------------------------------------------------------------------- /src/contents/com.github.wwmm.easyeffects.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/com.github.wwmm.easyeffects.desktop.in -------------------------------------------------------------------------------- /src/contents/com.github.wwmm.easyeffects.desktop.in.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/com.github.wwmm.easyeffects.desktop.in.template -------------------------------------------------------------------------------- /src/contents/com.github.wwmm.easyeffects.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/com.github.wwmm.easyeffects.metainfo.xml.in -------------------------------------------------------------------------------- /src/contents/help/C.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/C.css -------------------------------------------------------------------------------- /src/contents/help/advancedinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/advancedinfo.html -------------------------------------------------------------------------------- /src/contents/help/autogain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/autogain.html -------------------------------------------------------------------------------- /src/contents/help/bassenhancer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/bassenhancer.html -------------------------------------------------------------------------------- /src/contents/help/bassloudness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/bassloudness.html -------------------------------------------------------------------------------- /src/contents/help/blocklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/blocklist.html -------------------------------------------------------------------------------- /src/contents/help/compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/compressor.html -------------------------------------------------------------------------------- /src/contents/help/convolver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/convolver.html -------------------------------------------------------------------------------- /src/contents/help/crossfeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/crossfeed.html -------------------------------------------------------------------------------- /src/contents/help/crystalizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/crystalizer.html -------------------------------------------------------------------------------- /src/contents/help/deepfilternet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/deepfilternet.html -------------------------------------------------------------------------------- /src/contents/help/deesser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/deesser.html -------------------------------------------------------------------------------- /src/contents/help/delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/delay.html -------------------------------------------------------------------------------- /src/contents/help/echocanceller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/echocanceller.html -------------------------------------------------------------------------------- /src/contents/help/effectsorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/effectsorder.html -------------------------------------------------------------------------------- /src/contents/help/enableapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/enableapp.html -------------------------------------------------------------------------------- /src/contents/help/equalizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/equalizer.html -------------------------------------------------------------------------------- /src/contents/help/exciter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/exciter.html -------------------------------------------------------------------------------- /src/contents/help/expander.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/expander.html -------------------------------------------------------------------------------- /src/contents/help/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/filter.html -------------------------------------------------------------------------------- /src/contents/help/gate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/gate.html -------------------------------------------------------------------------------- /src/contents/help/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/general.html -------------------------------------------------------------------------------- /src/contents/help/guide_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/guide_1.html -------------------------------------------------------------------------------- /src/contents/help/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/highlight.pack.js -------------------------------------------------------------------------------- /src/contents/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/index.html -------------------------------------------------------------------------------- /src/contents/help/limiter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/limiter.html -------------------------------------------------------------------------------- /src/contents/help/loudness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/loudness.html -------------------------------------------------------------------------------- /src/contents/help/maximizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/maximizer.html -------------------------------------------------------------------------------- /src/contents/help/multibandcompressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/multibandcompressor.html -------------------------------------------------------------------------------- /src/contents/help/multibandgate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/multibandgate.html -------------------------------------------------------------------------------- /src/contents/help/pipewire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/pipewire.html -------------------------------------------------------------------------------- /src/contents/help/pitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/pitch.html -------------------------------------------------------------------------------- /src/contents/help/reverb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/reverb.html -------------------------------------------------------------------------------- /src/contents/help/rnnoise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/rnnoise.html -------------------------------------------------------------------------------- /src/contents/help/saturated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/saturated.html -------------------------------------------------------------------------------- /src/contents/help/settingsmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/settingsmenu.html -------------------------------------------------------------------------------- /src/contents/help/spectrum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/spectrum.html -------------------------------------------------------------------------------- /src/contents/help/speex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/speex.html -------------------------------------------------------------------------------- /src/contents/help/stereotools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/stereotools.html -------------------------------------------------------------------------------- /src/contents/help/testsignals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/testsignals.html -------------------------------------------------------------------------------- /src/contents/help/userpresets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/userpresets.html -------------------------------------------------------------------------------- /src/contents/help/yelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/help/yelp.js -------------------------------------------------------------------------------- /src/contents/icons/com.github.wwmm.easyeffects-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/icons/com.github.wwmm.easyeffects-symbolic.svg -------------------------------------------------------------------------------- /src/contents/icons/com.github.wwmm.easyeffects.Devel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/icons/com.github.wwmm.easyeffects.Devel.svg -------------------------------------------------------------------------------- /src/contents/icons/com.github.wwmm.easyeffects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/icons/com.github.wwmm.easyeffects.svg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_autogain.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_autogain.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_autogain.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_autogain.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_bass_enhancer.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_bass_enhancer.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_bass_enhancer.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_bass_enhancer.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_bass_loudness.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_bass_loudness.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_bass_loudness.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_bass_loudness.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_compressor.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_compressor.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_compressor.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_compressor.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_convolver.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_convolver.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_convolver.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_convolver.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_crossfeed.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_crossfeed.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_crossfeed.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_crossfeed.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_crystalizer.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_crystalizer.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_crystalizer.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_crystalizer.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_deepfilternet.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_deepfilternet.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_deepfilternet.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_deepfilternet.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_deesser.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_deesser.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_deesser.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_deesser.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_delay.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_delay.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_delay.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_delay.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_echo_canceller.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_echo_canceller.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_echo_canceller.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_echo_canceller.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_equalizer.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_equalizer.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_equalizer.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_equalizer.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_equalizer_channel.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_equalizer_channel.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_equalizer_channel.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_equalizer_channel.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_exciter.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_exciter.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_exciter.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_exciter.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_expander.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_expander.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_expander.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_expander.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_filter.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_filter.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_filter.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_filter.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_gate.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_gate.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_gate.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_gate.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_graph.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_graph.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_graph.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_graph.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_level_meter.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_level_meter.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_level_meter.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_level_meter.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_limiter.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_limiter.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_limiter.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_limiter.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_loudness.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_loudness.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_loudness.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_loudness.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_maximizer.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_maximizer.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_maximizer.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_maximizer.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_multiband_compressor.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_multiband_compressor.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_multiband_compressor.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_multiband_compressor.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_multiband_gate.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_multiband_gate.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_multiband_gate.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_multiband_gate.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_pitch.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_pitch.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_pitch.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_pitch.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_reverb.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_reverb.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_reverb.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_reverb.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_rnnoise.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_rnnoise.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_rnnoise.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_rnnoise.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_spectrum.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_spectrum.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_spectrum.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_spectrum.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_speex.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_speex.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_speex.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_speex.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_stereo_tools.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_stereo_tools.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_stereo_tools.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_stereo_tools.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_streaminputs.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_streaminputs.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_streaminputs.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_streaminputs.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_streamoutputs.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_streamoutputs.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_streamoutputs.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_streamoutputs.kcfgc -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_test_signals.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_test_signals.kcfg -------------------------------------------------------------------------------- /src/contents/kcfg/easyeffects_db_test_signals.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/kcfg/easyeffects_db_test_signals.kcfgc -------------------------------------------------------------------------------- /src/contents/ui/AboutPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/AboutPage.qml -------------------------------------------------------------------------------- /src/contents/ui/Autogain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Autogain.qml -------------------------------------------------------------------------------- /src/contents/ui/BassEnhancer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/BassEnhancer.qml -------------------------------------------------------------------------------- /src/contents/ui/BassLoudness.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/BassLoudness.qml -------------------------------------------------------------------------------- /src/contents/ui/BlocklistDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/BlocklistDialog.qml -------------------------------------------------------------------------------- /src/contents/ui/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Common.js -------------------------------------------------------------------------------- /src/contents/ui/Compressor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Compressor.qml -------------------------------------------------------------------------------- /src/contents/ui/Convolver.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Convolver.qml -------------------------------------------------------------------------------- /src/contents/ui/ConvolverImpulseDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/ConvolverImpulseDialog.qml -------------------------------------------------------------------------------- /src/contents/ui/Crossfeed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Crossfeed.qml -------------------------------------------------------------------------------- /src/contents/ui/Crystalizer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Crystalizer.qml -------------------------------------------------------------------------------- /src/contents/ui/CrystalizerBand.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/CrystalizerBand.qml -------------------------------------------------------------------------------- /src/contents/ui/DeepFilterNet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/DeepFilterNet.qml -------------------------------------------------------------------------------- /src/contents/ui/Deesser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Deesser.qml -------------------------------------------------------------------------------- /src/contents/ui/Delay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Delay.qml -------------------------------------------------------------------------------- /src/contents/ui/DelegateClientsList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/DelegateClientsList.qml -------------------------------------------------------------------------------- /src/contents/ui/DelegateModulesList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/DelegateModulesList.qml -------------------------------------------------------------------------------- /src/contents/ui/DelegatePluginsList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/DelegatePluginsList.qml -------------------------------------------------------------------------------- /src/contents/ui/DelegateStreamsList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/DelegateStreamsList.qml -------------------------------------------------------------------------------- /src/contents/ui/EchoCanceller.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EchoCanceller.qml -------------------------------------------------------------------------------- /src/contents/ui/EeAudioLevel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeAudioLevel.qml -------------------------------------------------------------------------------- /src/contents/ui/EeCard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeCard.qml -------------------------------------------------------------------------------- /src/contents/ui/EeChart.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeChart.qml -------------------------------------------------------------------------------- /src/contents/ui/EeInputOutputGain.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeInputOutputGain.qml -------------------------------------------------------------------------------- /src/contents/ui/EeListSectionHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeListSectionHeader.qml -------------------------------------------------------------------------------- /src/contents/ui/EeProgressBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeProgressBar.qml -------------------------------------------------------------------------------- /src/contents/ui/EeSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeSpinBox.qml -------------------------------------------------------------------------------- /src/contents/ui/EeSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EeSwitch.qml -------------------------------------------------------------------------------- /src/contents/ui/Equalizer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Equalizer.qml -------------------------------------------------------------------------------- /src/contents/ui/EqualizerBand.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EqualizerBand.qml -------------------------------------------------------------------------------- /src/contents/ui/EqualizerBandMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/EqualizerBandMenu.qml -------------------------------------------------------------------------------- /src/contents/ui/Exciter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Exciter.qml -------------------------------------------------------------------------------- /src/contents/ui/Expander.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Expander.qml -------------------------------------------------------------------------------- /src/contents/ui/Filter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Filter.qml -------------------------------------------------------------------------------- /src/contents/ui/Gate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Gate.qml -------------------------------------------------------------------------------- /src/contents/ui/HelpSheet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/HelpSheet.qml -------------------------------------------------------------------------------- /src/contents/ui/LevelMeter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/LevelMeter.qml -------------------------------------------------------------------------------- /src/contents/ui/Limiter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Limiter.qml -------------------------------------------------------------------------------- /src/contents/ui/Loudness.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Loudness.qml -------------------------------------------------------------------------------- /src/contents/ui/LspPreMixDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/LspPreMixDialog.qml -------------------------------------------------------------------------------- /src/contents/ui/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Main.qml -------------------------------------------------------------------------------- /src/contents/ui/Maximizer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Maximizer.qml -------------------------------------------------------------------------------- /src/contents/ui/MenuAddPlugins.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/MenuAddPlugins.qml -------------------------------------------------------------------------------- /src/contents/ui/MultibandCompressor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/MultibandCompressor.qml -------------------------------------------------------------------------------- /src/contents/ui/MultibandGate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/MultibandGate.qml -------------------------------------------------------------------------------- /src/contents/ui/PageStreamsEffects.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PageStreamsEffects.qml -------------------------------------------------------------------------------- /src/contents/ui/PipeWirePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PipeWirePage.qml -------------------------------------------------------------------------------- /src/contents/ui/Pitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Pitch.qml -------------------------------------------------------------------------------- /src/contents/ui/PluginNotAvailable.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PluginNotAvailable.qml -------------------------------------------------------------------------------- /src/contents/ui/PreferencesSheet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PreferencesSheet.qml -------------------------------------------------------------------------------- /src/contents/ui/PresetsAutoloadingPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PresetsAutoloadingPage.qml -------------------------------------------------------------------------------- /src/contents/ui/PresetsCommunityPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PresetsCommunityPage.qml -------------------------------------------------------------------------------- /src/contents/ui/PresetsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PresetsDialog.qml -------------------------------------------------------------------------------- /src/contents/ui/PresetsLocalPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/PresetsLocalPage.qml -------------------------------------------------------------------------------- /src/contents/ui/RNNoise.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/RNNoise.qml -------------------------------------------------------------------------------- /src/contents/ui/Reverb.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Reverb.qml -------------------------------------------------------------------------------- /src/contents/ui/ShortcutsSheet.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/ShortcutsSheet.qml -------------------------------------------------------------------------------- /src/contents/ui/Speex.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Speex.qml -------------------------------------------------------------------------------- /src/contents/ui/StereoTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/StereoTools.qml -------------------------------------------------------------------------------- /src/contents/ui/Validators.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/contents/ui/Validators.qml -------------------------------------------------------------------------------- /src/convolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver.cpp -------------------------------------------------------------------------------- /src/convolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver.hpp -------------------------------------------------------------------------------- /src/convolver_kernel_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_kernel_fft.cpp -------------------------------------------------------------------------------- /src/convolver_kernel_fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_kernel_fft.hpp -------------------------------------------------------------------------------- /src/convolver_kernel_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_kernel_manager.cpp -------------------------------------------------------------------------------- /src/convolver_kernel_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_kernel_manager.hpp -------------------------------------------------------------------------------- /src/convolver_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_preset.cpp -------------------------------------------------------------------------------- /src/convolver_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_preset.hpp -------------------------------------------------------------------------------- /src/convolver_zita.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_zita.cpp -------------------------------------------------------------------------------- /src/convolver_zita.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/convolver_zita.hpp -------------------------------------------------------------------------------- /src/crossfeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crossfeed.cpp -------------------------------------------------------------------------------- /src/crossfeed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crossfeed.hpp -------------------------------------------------------------------------------- /src/crossfeed_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crossfeed_preset.cpp -------------------------------------------------------------------------------- /src/crossfeed_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crossfeed_preset.hpp -------------------------------------------------------------------------------- /src/crystalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crystalizer.cpp -------------------------------------------------------------------------------- /src/crystalizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crystalizer.hpp -------------------------------------------------------------------------------- /src/crystalizer_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crystalizer_preset.cpp -------------------------------------------------------------------------------- /src/crystalizer_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/crystalizer_preset.hpp -------------------------------------------------------------------------------- /src/db_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/db_manager.cpp -------------------------------------------------------------------------------- /src/db_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/db_manager.hpp -------------------------------------------------------------------------------- /src/deepfilternet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deepfilternet.cpp -------------------------------------------------------------------------------- /src/deepfilternet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deepfilternet.hpp -------------------------------------------------------------------------------- /src/deepfilternet_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deepfilternet_preset.cpp -------------------------------------------------------------------------------- /src/deepfilternet_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deepfilternet_preset.hpp -------------------------------------------------------------------------------- /src/deesser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deesser.cpp -------------------------------------------------------------------------------- /src/deesser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deesser.hpp -------------------------------------------------------------------------------- /src/deesser_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deesser_preset.cpp -------------------------------------------------------------------------------- /src/deesser_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/deesser_preset.hpp -------------------------------------------------------------------------------- /src/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/delay.cpp -------------------------------------------------------------------------------- /src/delay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/delay.hpp -------------------------------------------------------------------------------- /src/delay_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/delay_preset.cpp -------------------------------------------------------------------------------- /src/delay_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/delay_preset.hpp -------------------------------------------------------------------------------- /src/echo_canceller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/echo_canceller.cpp -------------------------------------------------------------------------------- /src/echo_canceller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/echo_canceller.hpp -------------------------------------------------------------------------------- /src/echo_canceller_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/echo_canceller_preset.cpp -------------------------------------------------------------------------------- /src/echo_canceller_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/echo_canceller_preset.hpp -------------------------------------------------------------------------------- /src/effects_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/effects_base.cpp -------------------------------------------------------------------------------- /src/effects_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/effects_base.hpp -------------------------------------------------------------------------------- /src/equalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer.cpp -------------------------------------------------------------------------------- /src/equalizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer.hpp -------------------------------------------------------------------------------- /src/equalizer_apo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer_apo.cpp -------------------------------------------------------------------------------- /src/equalizer_apo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer_apo.hpp -------------------------------------------------------------------------------- /src/equalizer_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer_macros.hpp -------------------------------------------------------------------------------- /src/equalizer_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer_preset.cpp -------------------------------------------------------------------------------- /src/equalizer_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/equalizer_preset.hpp -------------------------------------------------------------------------------- /src/exciter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/exciter.cpp -------------------------------------------------------------------------------- /src/exciter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/exciter.hpp -------------------------------------------------------------------------------- /src/exciter_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/exciter_preset.cpp -------------------------------------------------------------------------------- /src/exciter_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/exciter_preset.hpp -------------------------------------------------------------------------------- /src/expander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/expander.cpp -------------------------------------------------------------------------------- /src/expander.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/expander.hpp -------------------------------------------------------------------------------- /src/expander_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/expander_preset.cpp -------------------------------------------------------------------------------- /src/expander_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/expander_preset.hpp -------------------------------------------------------------------------------- /src/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/filter.cpp -------------------------------------------------------------------------------- /src/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/filter.hpp -------------------------------------------------------------------------------- /src/filter_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/filter_preset.cpp -------------------------------------------------------------------------------- /src/filter_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/filter_preset.hpp -------------------------------------------------------------------------------- /src/fir_filter_bandpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_bandpass.cpp -------------------------------------------------------------------------------- /src/fir_filter_bandpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_bandpass.hpp -------------------------------------------------------------------------------- /src/fir_filter_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_base.cpp -------------------------------------------------------------------------------- /src/fir_filter_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_base.hpp -------------------------------------------------------------------------------- /src/fir_filter_highpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_highpass.cpp -------------------------------------------------------------------------------- /src/fir_filter_highpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_highpass.hpp -------------------------------------------------------------------------------- /src/fir_filter_lowpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_lowpass.cpp -------------------------------------------------------------------------------- /src/fir_filter_lowpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/fir_filter_lowpass.hpp -------------------------------------------------------------------------------- /src/gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/gate.cpp -------------------------------------------------------------------------------- /src/gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/gate.hpp -------------------------------------------------------------------------------- /src/gate_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/gate_preset.cpp -------------------------------------------------------------------------------- /src/gate_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/gate_preset.hpp -------------------------------------------------------------------------------- /src/global_shortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/global_shortcuts.cpp -------------------------------------------------------------------------------- /src/global_shortcuts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/global_shortcuts.hpp -------------------------------------------------------------------------------- /src/kcolor_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/kcolor_manager.cpp -------------------------------------------------------------------------------- /src/kcolor_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/kcolor_manager.hpp -------------------------------------------------------------------------------- /src/kconfig_base_ee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/kconfig_base_ee.cpp -------------------------------------------------------------------------------- /src/kconfig_base_ee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/kconfig_base_ee.hpp -------------------------------------------------------------------------------- /src/ladspa_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/ladspa_macros.hpp -------------------------------------------------------------------------------- /src/ladspa_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/ladspa_wrapper.cpp -------------------------------------------------------------------------------- /src/ladspa_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/ladspa_wrapper.hpp -------------------------------------------------------------------------------- /src/level_meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/level_meter.cpp -------------------------------------------------------------------------------- /src/level_meter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/level_meter.hpp -------------------------------------------------------------------------------- /src/level_meter_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/level_meter_preset.cpp -------------------------------------------------------------------------------- /src/level_meter_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/level_meter_preset.hpp -------------------------------------------------------------------------------- /src/limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/limiter.cpp -------------------------------------------------------------------------------- /src/limiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/limiter.hpp -------------------------------------------------------------------------------- /src/limiter_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/limiter_preset.cpp -------------------------------------------------------------------------------- /src/limiter_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/limiter_preset.hpp -------------------------------------------------------------------------------- /src/local_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/local_client.cpp -------------------------------------------------------------------------------- /src/local_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/local_client.hpp -------------------------------------------------------------------------------- /src/local_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/local_server.cpp -------------------------------------------------------------------------------- /src/local_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/local_server.hpp -------------------------------------------------------------------------------- /src/loudness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/loudness.cpp -------------------------------------------------------------------------------- /src/loudness.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/loudness.hpp -------------------------------------------------------------------------------- /src/loudness_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/loudness_preset.cpp -------------------------------------------------------------------------------- /src/loudness_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/loudness_preset.hpp -------------------------------------------------------------------------------- /src/lv2_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/lv2_macros.hpp -------------------------------------------------------------------------------- /src/lv2_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/lv2_ui.cpp -------------------------------------------------------------------------------- /src/lv2_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/lv2_ui.hpp -------------------------------------------------------------------------------- /src/lv2_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/lv2_wrapper.cpp -------------------------------------------------------------------------------- /src/lv2_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/lv2_wrapper.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/maximizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/maximizer.cpp -------------------------------------------------------------------------------- /src/maximizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/maximizer.hpp -------------------------------------------------------------------------------- /src/maximizer_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/maximizer_preset.cpp -------------------------------------------------------------------------------- /src/maximizer_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/maximizer_preset.hpp -------------------------------------------------------------------------------- /src/multi_band_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multi_band_macros.hpp -------------------------------------------------------------------------------- /src/multiband_compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_compressor.cpp -------------------------------------------------------------------------------- /src/multiband_compressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_compressor.hpp -------------------------------------------------------------------------------- /src/multiband_compressor_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_compressor_preset.cpp -------------------------------------------------------------------------------- /src/multiband_compressor_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_compressor_preset.hpp -------------------------------------------------------------------------------- /src/multiband_gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_gate.cpp -------------------------------------------------------------------------------- /src/multiband_gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_gate.hpp -------------------------------------------------------------------------------- /src/multiband_gate_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_gate_preset.cpp -------------------------------------------------------------------------------- /src/multiband_gate_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/multiband_gate_preset.hpp -------------------------------------------------------------------------------- /src/output_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/output_level.cpp -------------------------------------------------------------------------------- /src/output_level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/output_level.hpp -------------------------------------------------------------------------------- /src/pipeline_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pipeline_type.hpp -------------------------------------------------------------------------------- /src/pitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pitch.cpp -------------------------------------------------------------------------------- /src/pitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pitch.hpp -------------------------------------------------------------------------------- /src/pitch_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pitch_preset.cpp -------------------------------------------------------------------------------- /src/pitch_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pitch_preset.hpp -------------------------------------------------------------------------------- /src/plugin_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/plugin_base.cpp -------------------------------------------------------------------------------- /src/plugin_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/plugin_base.hpp -------------------------------------------------------------------------------- /src/plugin_preset_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/plugin_preset_base.cpp -------------------------------------------------------------------------------- /src/plugin_preset_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/plugin_preset_base.hpp -------------------------------------------------------------------------------- /src/presets_autoload_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_autoload_manager.cpp -------------------------------------------------------------------------------- /src/presets_autoload_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_autoload_manager.hpp -------------------------------------------------------------------------------- /src/presets_community_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_community_manager.cpp -------------------------------------------------------------------------------- /src/presets_community_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_community_manager.hpp -------------------------------------------------------------------------------- /src/presets_directory_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_directory_manager.cpp -------------------------------------------------------------------------------- /src/presets_directory_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_directory_manager.hpp -------------------------------------------------------------------------------- /src/presets_irs_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_irs_manager.cpp -------------------------------------------------------------------------------- /src/presets_irs_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_irs_manager.hpp -------------------------------------------------------------------------------- /src/presets_list_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_list_model.cpp -------------------------------------------------------------------------------- /src/presets_list_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_list_model.hpp -------------------------------------------------------------------------------- /src/presets_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_macros.hpp -------------------------------------------------------------------------------- /src/presets_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_manager.cpp -------------------------------------------------------------------------------- /src/presets_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_manager.hpp -------------------------------------------------------------------------------- /src/presets_rnnoise_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_rnnoise_manager.cpp -------------------------------------------------------------------------------- /src/presets_rnnoise_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/presets_rnnoise_manager.hpp -------------------------------------------------------------------------------- /src/pw_client_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_client_manager.cpp -------------------------------------------------------------------------------- /src/pw_client_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_client_manager.hpp -------------------------------------------------------------------------------- /src/pw_device_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_device_manager.cpp -------------------------------------------------------------------------------- /src/pw_device_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_device_manager.hpp -------------------------------------------------------------------------------- /src/pw_link_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_link_manager.cpp -------------------------------------------------------------------------------- /src/pw_link_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_link_manager.hpp -------------------------------------------------------------------------------- /src/pw_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_manager.cpp -------------------------------------------------------------------------------- /src/pw_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_manager.hpp -------------------------------------------------------------------------------- /src/pw_metadata_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_metadata_manager.cpp -------------------------------------------------------------------------------- /src/pw_metadata_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_metadata_manager.hpp -------------------------------------------------------------------------------- /src/pw_model_clients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_clients.cpp -------------------------------------------------------------------------------- /src/pw_model_clients.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_clients.hpp -------------------------------------------------------------------------------- /src/pw_model_modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_modules.cpp -------------------------------------------------------------------------------- /src/pw_model_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_modules.hpp -------------------------------------------------------------------------------- /src/pw_model_nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_nodes.cpp -------------------------------------------------------------------------------- /src/pw_model_nodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_model_nodes.hpp -------------------------------------------------------------------------------- /src/pw_module_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_module_manager.cpp -------------------------------------------------------------------------------- /src/pw_module_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_module_manager.hpp -------------------------------------------------------------------------------- /src/pw_node_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_node_manager.cpp -------------------------------------------------------------------------------- /src/pw_node_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_node_manager.hpp -------------------------------------------------------------------------------- /src/pw_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/pw_objects.hpp -------------------------------------------------------------------------------- /src/resampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/resampler.cpp -------------------------------------------------------------------------------- /src/resampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/resampler.hpp -------------------------------------------------------------------------------- /src/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/resources.qrc -------------------------------------------------------------------------------- /src/reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/reverb.cpp -------------------------------------------------------------------------------- /src/reverb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/reverb.hpp -------------------------------------------------------------------------------- /src/reverb_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/reverb_preset.cpp -------------------------------------------------------------------------------- /src/reverb_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/reverb_preset.hpp -------------------------------------------------------------------------------- /src/rnnoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/rnnoise.cpp -------------------------------------------------------------------------------- /src/rnnoise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/rnnoise.hpp -------------------------------------------------------------------------------- /src/rnnoise_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/rnnoise_preset.cpp -------------------------------------------------------------------------------- /src/rnnoise_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/rnnoise_preset.hpp -------------------------------------------------------------------------------- /src/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/spectrum.cpp -------------------------------------------------------------------------------- /src/spectrum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/spectrum.hpp -------------------------------------------------------------------------------- /src/speex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/speex.cpp -------------------------------------------------------------------------------- /src/speex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/speex.hpp -------------------------------------------------------------------------------- /src/speex_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/speex_preset.cpp -------------------------------------------------------------------------------- /src/speex_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/speex_preset.hpp -------------------------------------------------------------------------------- /src/stereo_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stereo_tools.cpp -------------------------------------------------------------------------------- /src/stereo_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stereo_tools.hpp -------------------------------------------------------------------------------- /src/stereo_tools_preset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stereo_tools_preset.cpp -------------------------------------------------------------------------------- /src/stereo_tools_preset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stereo_tools_preset.hpp -------------------------------------------------------------------------------- /src/stream_input_effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stream_input_effects.cpp -------------------------------------------------------------------------------- /src/stream_input_effects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stream_input_effects.hpp -------------------------------------------------------------------------------- /src/stream_output_effects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stream_output_effects.cpp -------------------------------------------------------------------------------- /src/stream_output_effects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/stream_output_effects.hpp -------------------------------------------------------------------------------- /src/string_literal_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/string_literal_wrapper.hpp -------------------------------------------------------------------------------- /src/tags_app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_app.hpp -------------------------------------------------------------------------------- /src/tags_equalizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_equalizer.hpp -------------------------------------------------------------------------------- /src/tags_local_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_local_server.hpp -------------------------------------------------------------------------------- /src/tags_multiband_compressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_multiband_compressor.hpp -------------------------------------------------------------------------------- /src/tags_multiband_gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_multiband_gate.hpp -------------------------------------------------------------------------------- /src/tags_pipewire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_pipewire.hpp -------------------------------------------------------------------------------- /src/tags_plugin_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_plugin_name.cpp -------------------------------------------------------------------------------- /src/tags_plugin_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/tags_plugin_name.hpp -------------------------------------------------------------------------------- /src/test_signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/test_signals.cpp -------------------------------------------------------------------------------- /src/test_signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/test_signals.hpp -------------------------------------------------------------------------------- /src/units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/units.hpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/src/util.hpp -------------------------------------------------------------------------------- /util/NEWS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/NEWS.yaml -------------------------------------------------------------------------------- /util/adding_new_plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/adding_new_plugins.txt -------------------------------------------------------------------------------- /util/autobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/autobuild.sh -------------------------------------------------------------------------------- /util/changes_since_last_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/changes_since_last_release.sh -------------------------------------------------------------------------------- /util/check-kcfg-numeric-defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/check-kcfg-numeric-defaults.sh -------------------------------------------------------------------------------- /util/clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/clang-tidy.sh -------------------------------------------------------------------------------- /util/cmake_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/cmake_commands.txt -------------------------------------------------------------------------------- /util/convert_schema_to_kcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/convert_schema_to_kcfg.sh -------------------------------------------------------------------------------- /util/crystalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/crystalizer.py -------------------------------------------------------------------------------- /util/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/debug.txt -------------------------------------------------------------------------------- /util/environmental_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/environmental_variables.sh -------------------------------------------------------------------------------- /util/extract-translation-messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/extract-translation-messages.sh -------------------------------------------------------------------------------- /util/flatpak/com.github.wwmm.easyeffects.Devel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/com.github.wwmm.easyeffects.Devel.json -------------------------------------------------------------------------------- /util/flatpak/easyeffects-modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/easyeffects-modules.json -------------------------------------------------------------------------------- /util/flatpak/patch/bs2b/001-fix-automake-dist-lzma.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/patch/bs2b/001-fix-automake-dist-lzma.patch -------------------------------------------------------------------------------- /util/flatpak/patch/zita-convolver/0001-Fix-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/patch/zita-convolver/0001-Fix-makefile.patch -------------------------------------------------------------------------------- /util/flatpak/shared-modules/linux-audio/fftw3f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/shared-modules/linux-audio/fftw3f.json -------------------------------------------------------------------------------- /util/flatpak/shared-modules/linux-audio/ladspa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/shared-modules/linux-audio/ladspa.json -------------------------------------------------------------------------------- /util/flatpak/shared-modules/linux-audio/lilv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/shared-modules/linux-audio/lilv.json -------------------------------------------------------------------------------- /util/flatpak/shared-modules/linux-audio/lv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/flatpak/shared-modules/linux-audio/lv2.json -------------------------------------------------------------------------------- /util/kde_guides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/kde_guides.txt -------------------------------------------------------------------------------- /util/news-release-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/news-release-template.yaml -------------------------------------------------------------------------------- /util/port_po_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/port_po_files.py -------------------------------------------------------------------------------- /util/qmlformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/qmlformat.sh -------------------------------------------------------------------------------- /util/qmllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/qmllint.sh -------------------------------------------------------------------------------- /util/qt_help_project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/qt_help_project.txt -------------------------------------------------------------------------------- /util/run-clang-tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/run-clang-tidy.py -------------------------------------------------------------------------------- /util/sanitizer.supp: -------------------------------------------------------------------------------- 1 | leak:libQt6Gui.so 2 | -------------------------------------------------------------------------------- /util/sanitizer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/sanitizer.txt -------------------------------------------------------------------------------- /util/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/test.wav -------------------------------------------------------------------------------- /util/update-release-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/update-release-files.sh -------------------------------------------------------------------------------- /util/valgrind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwmm/easyeffects/HEAD/util/valgrind.txt --------------------------------------------------------------------------------