├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Rumor.png ├── Rumor ├── MOD │ ├── Rumor.ttl │ ├── manifest.ttl │ ├── modgui.ttl │ └── modgui │ │ ├── icon-rumor.html │ │ ├── knobs │ │ └── boxy │ │ │ └── black.png │ │ ├── pedals │ │ ├── boxy │ │ │ └── black.png │ │ └── footswitch.png │ │ ├── screenshot-rumor.png │ │ ├── stylesheet-rumor.css │ │ ├── thumbnail-rumor.png │ │ └── utils │ │ ├── dropdown-arrow-black.png │ │ └── dropdown-arrow-white.png ├── Rumor.c ├── Rumor.cpp ├── Rumor.ttl ├── gx_resampler.cc ├── gx_resampler.h ├── lv2_plugin.cc ├── lv2_plugin.h ├── makefile ├── manifest.ttl ├── rumor.cc ├── rumor.dsp ├── rumor_table.h └── zita-resampler-1.1.0 │ ├── AUTHORS │ ├── README │ ├── resampler-table.cc │ ├── resampler.cc │ └── zita-resampler │ ├── resampler-table.h │ └── resampler.h ├── makefile └── resources ├── LED_Red.c ├── LED_Red.png ├── footsw.c ├── footsw.png ├── fx_knob.c ├── fx_knob.png ├── monster.c └── monster.png /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/README.md -------------------------------------------------------------------------------- /Rumor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor.png -------------------------------------------------------------------------------- /Rumor/MOD/Rumor.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/Rumor.ttl -------------------------------------------------------------------------------- /Rumor/MOD/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/manifest.ttl -------------------------------------------------------------------------------- /Rumor/MOD/modgui.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui.ttl -------------------------------------------------------------------------------- /Rumor/MOD/modgui/icon-rumor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/icon-rumor.html -------------------------------------------------------------------------------- /Rumor/MOD/modgui/knobs/boxy/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/knobs/boxy/black.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/pedals/boxy/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/pedals/boxy/black.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/pedals/footswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/pedals/footswitch.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/screenshot-rumor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/screenshot-rumor.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/stylesheet-rumor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/stylesheet-rumor.css -------------------------------------------------------------------------------- /Rumor/MOD/modgui/thumbnail-rumor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/thumbnail-rumor.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/utils/dropdown-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/utils/dropdown-arrow-black.png -------------------------------------------------------------------------------- /Rumor/MOD/modgui/utils/dropdown-arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/MOD/modgui/utils/dropdown-arrow-white.png -------------------------------------------------------------------------------- /Rumor/Rumor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/Rumor.c -------------------------------------------------------------------------------- /Rumor/Rumor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/Rumor.cpp -------------------------------------------------------------------------------- /Rumor/Rumor.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/Rumor.ttl -------------------------------------------------------------------------------- /Rumor/gx_resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/gx_resampler.cc -------------------------------------------------------------------------------- /Rumor/gx_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/gx_resampler.h -------------------------------------------------------------------------------- /Rumor/lv2_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/lv2_plugin.cc -------------------------------------------------------------------------------- /Rumor/lv2_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/lv2_plugin.h -------------------------------------------------------------------------------- /Rumor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/makefile -------------------------------------------------------------------------------- /Rumor/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/manifest.ttl -------------------------------------------------------------------------------- /Rumor/rumor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/rumor.cc -------------------------------------------------------------------------------- /Rumor/rumor.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/rumor.dsp -------------------------------------------------------------------------------- /Rumor/rumor_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/rumor_table.h -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Fons Adriaensen 2 | -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/zita-resampler-1.1.0/README -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/resampler-table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/zita-resampler-1.1.0/resampler-table.cc -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/resampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/zita-resampler-1.1.0/resampler.cc -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/zita-resampler/resampler-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/zita-resampler-1.1.0/zita-resampler/resampler-table.h -------------------------------------------------------------------------------- /Rumor/zita-resampler-1.1.0/zita-resampler/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/Rumor/zita-resampler-1.1.0/zita-resampler/resampler.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/makefile -------------------------------------------------------------------------------- /resources/LED_Red.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/LED_Red.c -------------------------------------------------------------------------------- /resources/LED_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/LED_Red.png -------------------------------------------------------------------------------- /resources/footsw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/footsw.c -------------------------------------------------------------------------------- /resources/footsw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/footsw.png -------------------------------------------------------------------------------- /resources/fx_knob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/fx_knob.c -------------------------------------------------------------------------------- /resources/fx_knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/fx_knob.png -------------------------------------------------------------------------------- /resources/monster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/monster.c -------------------------------------------------------------------------------- /resources/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brummer10/Rumor/HEAD/resources/monster.png --------------------------------------------------------------------------------