├── .gitignore
├── .gitmodules
├── CHANGELOG
├── Dockerfile
├── LICENSE
├── README.rst
├── development_server.py
├── generate-lv2-html-docs.sh
├── html
├── css
│ ├── bootstrap.min.css
│ ├── dashboard.css
│ ├── fonts.css
│ ├── icon.css
│ ├── main.css
│ ├── pedals.css
│ └── sdk.css
├── favicon.ico
├── fonts
│ ├── Ek-Mukta
│ │ ├── Ek-Mukta-200
│ │ │ ├── Ek-Mukta-200.eot
│ │ │ ├── Ek-Mukta-200.svg
│ │ │ ├── Ek-Mukta-200.ttf
│ │ │ ├── Ek-Mukta-200.woff
│ │ │ ├── Ek-Mukta-200.woff2
│ │ │ └── LICENSE.txt
│ │ ├── Ek-Mukta-600
│ │ │ ├── Ek-Mukta-600.eot
│ │ │ ├── Ek-Mukta-600.svg
│ │ │ ├── Ek-Mukta-600.ttf
│ │ │ ├── Ek-Mukta-600.woff
│ │ │ ├── Ek-Mukta-600.woff2
│ │ │ └── LICENSE.txt
│ │ ├── Ek-Mukta-700
│ │ │ ├── Ek-Mukta-700.eot
│ │ │ ├── Ek-Mukta-700.svg
│ │ │ ├── Ek-Mukta-700.ttf
│ │ │ ├── Ek-Mukta-700.woff
│ │ │ ├── Ek-Mukta-700.woff2
│ │ │ └── LICENSE.txt
│ │ ├── Ek-Mukta-regular
│ │ │ ├── Ek-Mukta-regular.eot
│ │ │ ├── Ek-Mukta-regular.svg
│ │ │ ├── Ek-Mukta-regular.ttf
│ │ │ ├── Ek-Mukta-regular.woff
│ │ │ ├── Ek-Mukta-regular.woff2
│ │ │ └── LICENSE.txt
│ │ └── LICENSE.txt
│ ├── comforta
│ │ ├── Comfortaa-Bold.ttf
│ │ ├── Comfortaa-Light.ttf
│ │ └── Comfortaa-Regular.ttf
│ ├── cooper
│ │ ├── cooperhewitt-book-webfont.eot
│ │ ├── cooperhewitt-book-webfont.ttf
│ │ ├── cooperhewitt-book-webfont.woff
│ │ ├── cooperhewitt-book-webfont.woff2
│ │ ├── cooperhewitt-bookitalic-webfont.eot
│ │ ├── cooperhewitt-bookitalic-webfont.ttf
│ │ ├── cooperhewitt-bookitalic-webfont.woff
│ │ ├── cooperhewitt-bookitalic-webfont.woff2
│ │ ├── cooperhewitt-light-webfont.eot
│ │ ├── cooperhewitt-light-webfont.ttf
│ │ ├── cooperhewitt-light-webfont.woff
│ │ ├── cooperhewitt-light-webfont.woff2
│ │ ├── cooperhewitt-lightitalic-webfont.eot
│ │ ├── cooperhewitt-lightitalic-webfont.ttf
│ │ ├── cooperhewitt-lightitalic-webfont.woff
│ │ ├── cooperhewitt-lightitalic-webfont.woff2
│ │ ├── cooperhewitt-semibold-webfont.eot
│ │ ├── cooperhewitt-semibold-webfont.ttf
│ │ ├── cooperhewitt-semibold-webfont.woff
│ │ └── cooperhewitt-semibold-webfont.woff2
│ ├── css
│ │ └── fonts.css
│ ├── england-hand
│ │ ├── england-webfont.eot
│ │ ├── england-webfont.svg
│ │ ├── england-webfont.ttf
│ │ ├── england-webfont.woff
│ │ └── stylesheet.css
│ ├── epf
│ │ ├── epf_lul-webfont.eot
│ │ ├── epf_lul-webfont.svg
│ │ ├── epf_lul-webfont.ttf
│ │ ├── epf_lul-webfont.woff
│ │ └── stylesheet.css
│ ├── nexa
│ │ ├── Nexa_Free_Bold-webfont.eot
│ │ ├── Nexa_Free_Bold-webfont.svg
│ │ ├── Nexa_Free_Bold-webfont.ttf
│ │ ├── Nexa_Free_Bold-webfont.woff
│ │ └── stylesheet.css
│ ├── pirulen
│ │ ├── pirulen_rg-demo.html
│ │ ├── pirulen_rg-webfont.eot
│ │ ├── pirulen_rg-webfont.ttf
│ │ ├── pirulen_rg-webfont.woff
│ │ └── stylesheet.css
│ └── questrial
│ │ ├── questrial-regular-webfont.eot
│ │ ├── questrial-regular-webfont.svg
│ │ ├── questrial-regular-webfont.ttf
│ │ ├── questrial-regular-webfont.woff
│ │ └── stylesheet.css
├── icon.html
├── img
│ ├── audio-input-connected-highlight.png
│ ├── audio-input-connected.png
│ ├── audio-input-connecting-highlight.png
│ ├── audio-input-connecting.png
│ ├── audio-input.png
│ ├── audio-jack-nconnect.png
│ ├── audio-jack.png
│ ├── audio-output-connected.png
│ ├── audio-output.png
│ ├── cv-input-connected-highlight.png
│ ├── cv-input-connected.png
│ ├── cv-input-connecting-highlight.png
│ ├── cv-input-connecting.png
│ ├── cv-input.png
│ ├── cv-jack-nconnect.png
│ ├── cv-jack.png
│ ├── cv-output-connected.png
│ ├── cv-output.png
│ ├── favicon
│ │ ├── android-icon-144x144.png
│ │ ├── android-icon-192x192.png
│ │ ├── android-icon-36x36.png
│ │ ├── android-icon-48x48.png
│ │ ├── android-icon-72x72.png
│ │ ├── android-icon-96x96.png
│ │ ├── apple-icon-114x114.png
│ │ ├── apple-icon-120x120.png
│ │ ├── apple-icon-144x144.png
│ │ ├── apple-icon-152x152.png
│ │ ├── apple-icon-180x180.png
│ │ ├── apple-icon-57x57.png
│ │ ├── apple-icon-60x60.png
│ │ ├── apple-icon-72x72.png
│ │ ├── apple-icon-76x76.png
│ │ ├── apple-icon-precomposed.png
│ │ ├── apple-icon.png
│ │ ├── favicon-16x16.png
│ │ ├── favicon-32x32.png
│ │ ├── favicon-96x96.png
│ │ ├── favicon.png
│ │ ├── manifest.json
│ │ ├── ms-icon-144x144.png
│ │ ├── ms-icon-150x150.png
│ │ ├── ms-icon-310x310.png
│ │ └── ms-icon-70x70.png
│ ├── icn-addressing.png
│ ├── icn-remove-16x16.png
│ ├── icn-settings-16x16.png
│ ├── icn-settings.png
│ ├── midi-input-connected-highlight.png
│ ├── midi-input-connected.png
│ ├── midi-input-connecting-highlight.png
│ ├── midi-input-connecting.png
│ ├── midi-input.png
│ ├── midi-jack-nconnect.png
│ ├── midi-jack.png
│ ├── midi-output-connected.png
│ └── midi-output.png
├── index.html
├── js
│ ├── icon.js
│ ├── jquery-1.9.1.min.js
│ ├── jquery-ui-1.10.1.custom.min.js
│ ├── jquery.ba-resize.min.js
│ ├── jquery.mousewheel.min.js
│ ├── jquery.svg.js
│ ├── jquery.textareaAutoResize.js
│ ├── jquery.ui.touch-punch.min.js
│ ├── modgui.js
│ ├── modsdk.js
│ ├── monitor.js
│ ├── mustache.js
│ ├── raphael-min.js
│ ├── sprintf-0.6.js
│ ├── templates.js
│ └── wizard.js
└── resources
│ ├── CHANGELOG
│ ├── LICENSE
│ ├── README.md
│ ├── combos
│ └── model-001
│ │ ├── model-001.css
│ │ ├── model-0550.png
│ │ ├── model-0625.png
│ │ ├── model-0778.png
│ │ └── model-0930.png
│ ├── heads
│ ├── model-001
│ │ ├── model-001.css
│ │ ├── model-0550.png
│ │ ├── model-0700.png
│ │ ├── model-0800.png
│ │ └── model-0950.png
│ ├── rocker-switch-off.png
│ └── rocker-switch-on.png
│ ├── knobs
│ ├── boxy
│ │ ├── aluminium.png
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── boxy.css
│ │ ├── boxy.png
│ │ ├── bronze.png
│ │ ├── copper.png
│ │ ├── gold.png
│ │ ├── green.png
│ │ ├── petrol.png
│ │ ├── purple.png
│ │ ├── silver.png
│ │ └── steel.png
│ ├── british
│ │ └── british.png
│ ├── chicken-head
│ │ ├── _strip.png
│ │ └── chicken-head.png
│ ├── generator
│ │ ├── configs
│ │ │ ├── boxy.py
│ │ │ ├── british.py
│ │ │ ├── chickenhead.py
│ │ │ ├── japanese.py
│ │ │ ├── lata.py
│ │ │ └── mod-ui.py
│ │ ├── generator.py
│ │ ├── gimp.py
│ │ └── sources
│ │ │ ├── boxy.blend
│ │ │ ├── boxy.blend1
│ │ │ ├── boxy.css.in
│ │ │ ├── boxy.xcf
│ │ │ ├── british.blend
│ │ │ ├── british.blend1
│ │ │ ├── british.xcf
│ │ │ ├── chickenhead.blend
│ │ │ ├── chickenhead.blend1
│ │ │ ├── japanese.blend
│ │ │ ├── japanese.blend1
│ │ │ ├── japanese.css.in
│ │ │ ├── japanese.xcf
│ │ │ ├── japanese.xcf.bak
│ │ │ ├── lata.blend
│ │ │ ├── lata.blend1
│ │ │ ├── mod-ui.blend
│ │ │ └── mod-ui.blend1
│ ├── japanese
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── japanese.css
│ │ ├── japanese.html
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── white.png
│ │ └── yellow.png
│ ├── lata
│ │ ├── lata.css
│ │ └── lata.png
│ ├── mod-ui
│ │ └── knob.png
│ └── switch-key
│ │ └── switch-key.png
│ ├── lights
│ └── light-001.png
│ ├── pedals
│ ├── boxy-small
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── dots.png
│ │ ├── flowerpower.png
│ │ ├── gold.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── lava.png
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── slime.png
│ │ ├── tribal1.png
│ │ ├── tribal2.png
│ │ ├── warning.png
│ │ ├── white.png
│ │ ├── wood0.png
│ │ ├── wood1.png
│ │ ├── wood2.png
│ │ ├── wood3.png
│ │ ├── wood4.png
│ │ ├── yellow.png
│ │ └── zinc.png
│ ├── boxy
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── boxy.css
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── dots.png
│ │ ├── flowerpower.png
│ │ ├── gold.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── lava.png
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── slime.png
│ │ ├── tribal1.png
│ │ ├── tribal2.png
│ │ ├── warning.png
│ │ ├── white.png
│ │ ├── wood0.png
│ │ ├── wood1.png
│ │ ├── wood2.png
│ │ ├── wood3.png
│ │ ├── wood4.png
│ │ ├── yellow.png
│ │ └── zinc.png
│ ├── boxy100
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── dots.png
│ │ ├── flowerpower.png
│ │ ├── gold.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── lava.png
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── slime.png
│ │ ├── tribal1.png
│ │ ├── tribal2.png
│ │ ├── warning.png
│ │ ├── white.png
│ │ ├── wood0.png
│ │ ├── wood1.png
│ │ ├── wood2.png
│ │ ├── wood3.png
│ │ ├── wood4.png
│ │ ├── yellow.png
│ │ └── zinc.png
│ ├── boxy75
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── dots.png
│ │ ├── flowerpower.png
│ │ ├── gold.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── lava.png
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── slime.png
│ │ ├── tribal1.png
│ │ ├── tribal2.png
│ │ ├── warning.png
│ │ ├── white.png
│ │ ├── wood0.png
│ │ ├── wood1.png
│ │ ├── wood2.png
│ │ ├── wood3.png
│ │ ├── wood4.png
│ │ ├── yellow.png
│ │ └── zinc.png
│ ├── boxy85
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── dots.png
│ │ ├── flowerpower.png
│ │ ├── gold.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── lava.png
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── slime.png
│ │ ├── tribal1.png
│ │ ├── tribal2.png
│ │ ├── warning.png
│ │ ├── white.png
│ │ ├── wood0.png
│ │ ├── wood1.png
│ │ ├── wood2.png
│ │ ├── wood3.png
│ │ ├── wood4.png
│ │ ├── yellow.png
│ │ └── zinc.png
│ ├── british
│ │ ├── british.css
│ │ └── metallic.png
│ ├── default-screenshot.png
│ ├── default-thumbnail.png
│ ├── default.css
│ ├── default.png
│ ├── footswitch.png
│ ├── generator
│ │ ├── configs
│ │ │ ├── boxy.py
│ │ │ ├── japanese.py
│ │ │ └── lata.py
│ │ ├── generator.py
│ │ ├── gimp.py
│ │ └── sources
│ │ │ ├── boxy.css.in
│ │ │ ├── boxy.xcf
│ │ │ ├── japanese.css.in
│ │ │ ├── japanese.xcf
│ │ │ ├── lata.css.in
│ │ │ └── lata.xcf
│ ├── japanese
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── japanese.css
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── white.png
│ │ └── yellow.png
│ ├── knob.png
│ ├── lata
│ │ ├── _strip.png
│ │ ├── anonymous.png
│ │ ├── atomic.png
│ │ ├── black.png
│ │ ├── blue.png
│ │ ├── brown.png
│ │ ├── camouflage.png
│ │ ├── che.png
│ │ ├── cream.png
│ │ ├── cyan.png
│ │ ├── darkblue.png
│ │ ├── gray.png
│ │ ├── green.png
│ │ ├── humphreys.png
│ │ ├── knob-lata.html
│ │ ├── lata.css
│ │ ├── none.png
│ │ ├── orange.png
│ │ ├── petrol.png
│ │ ├── pink.png
│ │ ├── purple.png
│ │ ├── racing.png
│ │ ├── red.png
│ │ ├── skull.png
│ │ ├── star.png
│ │ ├── white.png
│ │ └── yellow.png
│ ├── purple-light-off.png
│ ├── purple-light-on.png
│ ├── red-light-off.png
│ ├── red-light-on.png
│ ├── slider.png
│ └── switch.png
│ ├── racks
│ └── model-001
│ │ ├── model-001.css
│ │ └── model-001.png
│ ├── settings.html
│ ├── sources
│ ├── 3D models
│ │ ├── chicken knob.STL
│ │ ├── knob MXR com textura e chanfro.U3D
│ │ ├── knob MXR.U3D
│ │ ├── knob boss antigo grande.U3D
│ │ ├── knob boss simetrico.U3D
│ │ ├── knob boss.U3D
│ │ ├── knob chicken head centralizado na esfera.U3D
│ │ ├── knob chicken head.STL
│ │ ├── knob chicken head.U3D
│ │ ├── knob fader concavo.U3D
│ │ ├── knob lata com textura e chanfro.U3D
│ │ ├── knob lata.U3D
│ │ ├── knob metalico cilindrico.U3D
│ │ ├── knob metalico marshall.U3D
│ │ ├── knob mixer.U3D
│ │ ├── knob sansamp.U3D
│ │ ├── knob slider concavo.U3D
│ │ ├── konb boss antigo pequeno arrumado.U3D
│ │ └── konb boss antigo pequeno.U3D
│ ├── free-grunge-textures-backgrounds-14.jpg
│ ├── humphreys.svg
│ ├── japanese.blend1
│ ├── japanese.svg
│ ├── knob1.blend11
│ ├── lata.blend
│ └── metal_round.png
│ ├── switches
│ ├── footswitch.png
│ ├── switch-001.png
│ └── switch-002.png
│ ├── templates
│ ├── pedal-boxy-1-knob.html
│ ├── pedal-boxy-1-select-1-knob.html
│ ├── pedal-boxy-1-select-2-knobs.html
│ ├── pedal-boxy-1-select-3-knobs.html
│ ├── pedal-boxy-1-select-4-knobs.html
│ ├── pedal-boxy-10-sliders.html
│ ├── pedal-boxy-12-sliders.html
│ ├── pedal-boxy-2-knobs.html
│ ├── pedal-boxy-3-knobs.html
│ ├── pedal-boxy-3-sliders.html
│ ├── pedal-boxy-4-knobs.html
│ ├── pedal-boxy-4-sliders.html
│ ├── pedal-boxy-5-knobs.html
│ ├── pedal-boxy-5-sliders.html
│ ├── pedal-boxy-6-knobs.html
│ ├── pedal-boxy-6-sliders.html
│ ├── pedal-boxy-7-knobs.html
│ ├── pedal-boxy-7-sliders.html
│ ├── pedal-boxy-8-knobs.html
│ ├── pedal-boxy-8-sliders.html
│ ├── pedal-boxy-9-sliders.html
│ ├── pedal-boxy-small-1-footswitch-presets.html
│ ├── pedal-boxy-small-1-footswitch.html
│ ├── pedal-british-4-knobs.html
│ ├── pedal-combo-model-001-0550.html
│ ├── pedal-combo-model-001-0625.html
│ ├── pedal-combo-model-001-0778.html
│ ├── pedal-combo-model-001-0930.html
│ ├── pedal-default.html
│ ├── pedal-head-model-001-0550.html
│ ├── pedal-head-model-001-0700.html
│ ├── pedal-head-model-001-0800.html
│ ├── pedal-head-model-001-0950.html
│ ├── pedal-japanese-4-knobs.html
│ ├── pedal-japanese-5-knobs.html
│ ├── pedal-japanese-7-a-knobs.html
│ ├── pedal-japanese-7-b-knobs.html
│ ├── pedal-japanese-8-knobs.html
│ ├── pedal-lata-7-knobs.html
│ ├── pedal-lata-8-knobs.html
│ └── pedal-rack-model-001.html
│ ├── utils
│ ├── dropdown-arrow-black.png
│ └── dropdown-arrow-white.png
│ └── wizard.json
├── lv2specgen
├── DTD
│ ├── xhtml-attribs-1.mod
│ ├── xhtml-base-1.mod
│ ├── xhtml-basic-table-1.mod
│ ├── xhtml-basic11-model-1.mod
│ ├── xhtml-basic11.dtd
│ ├── xhtml-bdo-1.mod
│ ├── xhtml-blkphras-1.mod
│ ├── xhtml-blkpres-1.mod
│ ├── xhtml-blkstruct-1.mod
│ ├── xhtml-charent-1.mod
│ ├── xhtml-csismap-1.mod
│ ├── xhtml-datatypes-1.mod
│ ├── xhtml-datatypes-1.mod.1
│ ├── xhtml-edit-1.mod
│ ├── xhtml-events-1.mod
│ ├── xhtml-form-1.mod
│ ├── xhtml-framework-1.mod
│ ├── xhtml-hypertext-1.mod
│ ├── xhtml-image-1.mod
│ ├── xhtml-inlphras-1.mod
│ ├── xhtml-inlpres-1.mod
│ ├── xhtml-inlstruct-1.mod
│ ├── xhtml-inlstyle-1.mod
│ ├── xhtml-inputmode-1.mod
│ ├── xhtml-lat1.ent
│ ├── xhtml-legacy-1.mod
│ ├── xhtml-link-1.mod
│ ├── xhtml-list-1.mod
│ ├── xhtml-meta-1.mod
│ ├── xhtml-metaAttributes-1.mod
│ ├── xhtml-object-1.mod
│ ├── xhtml-param-1.mod
│ ├── xhtml-pres-1.mod
│ ├── xhtml-qname-1.mod
│ ├── xhtml-rdfa-1.dtd
│ ├── xhtml-rdfa-model-1.mod
│ ├── xhtml-script-1.mod
│ ├── xhtml-special.ent
│ ├── xhtml-ssismap-1.mod
│ ├── xhtml-struct-1.mod
│ ├── xhtml-style-1.mod
│ ├── xhtml-symbol.ent
│ ├── xhtml-table-1.mod
│ ├── xhtml-target-1.mod
│ └── xhtml-text-1.mod
├── lv2docgen.py
├── lv2specgen.py
├── style.css
└── template.html
├── make_screenshot.py
├── mod.lv2
├── manifest.ttl
├── mod.doap.ttl
└── mod.ttl
├── modgui.lv2
├── manifest.ttl
├── modgui.doap.ttl
└── modgui.ttl
├── modsdk
├── __init__.py
├── bundlemonitor.py
├── lilvlib.py
├── screenshot.py
├── settings.py
├── utils.py
└── webserver.py
├── requirements.txt
├── screenshot.js
├── setup.py
└── utils
├── Makefile
├── test.cpp
├── utils.h
└── utils_lilv.cpp
/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.o
3 | *.pyc
4 | *.so
5 | config.json
6 | .DS_Store
7 | MANIFEST.in
8 |
9 | /build/
10 | /documentation/
11 | /html/resources/.git*
12 | /modsdk-env/
13 | /utils/test
14 |
15 | .kdev4/
16 | .project.kdev4
17 | utils/.kdev_include_paths
18 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/.gitmodules
--------------------------------------------------------------------------------
/CHANGELOG:
--------------------------------------------------------------------------------
1 | 1.1
2 | ===
3 |
4 | NEW: modsdk-screenshot command will automatically generate screenshot and thumbnail inside LV2 bundles.
5 |
6 | 1.0.2
7 | =====
8 |
9 | Just packaging issues when publishing
10 |
11 | 1.0
12 | ===
13 |
14 | MOD-SDK has been used on experimental mode for some time, directly from source code, with no versioning. This release packages everything in a python library, with commands in proper path.
15 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM debian:stable
2 |
3 | RUN apt-get update -qq && \
4 | apt-get install -y build-essential liblilv-dev phantomjs && \
5 | apt-get install -y python3-pil python3-pystache python3-tornado python3-pyinotify python3-setuptools
6 |
7 | ENV LV2_PATH="/lv2"
8 |
9 | RUN mkdir /modsdk
10 |
11 | COPY ./ /modsdk/
12 |
13 | WORKDIR /modsdk
14 |
15 | RUN python3 setup.py build
16 |
17 | EXPOSE 9000
18 |
19 | VOLUME ["/lv2"]
20 |
21 | CMD ./development_server.py
22 |
--------------------------------------------------------------------------------
/development_server.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 | # -*- coding: utf-8 -*-
3 |
4 | from modsdk.webserver import run
5 |
6 | if __name__ == "__main__":
7 | run()
8 |
--------------------------------------------------------------------------------
/generate-lv2-html-docs.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | set -e
4 |
5 | if [ ! -d mod.lv2 ]; then
6 | echo "mod.lv2 bundle missing"
7 | exit
8 | fi
9 |
10 | if [ ! -d modgui.lv2 ]; then
11 | echo "modgui.lv2 bundle missing"
12 | exit
13 | fi
14 |
15 | if (! which lv2specgen.py >/dev/null); then
16 | echo "lv2specgen.py tool missing"
17 | exit
18 | fi
19 |
20 | if [ ! -d documentation ]; then
21 | mkdir documentation
22 | fi
23 |
24 | if [ ! -f documentation/style.css ]; then
25 | git clone git@github.com:moddevices/mod-sdk.git --depth 1 -b gh-pages documentation
26 | fi
27 |
28 | cp mod.lv2/* documentation/mod/
29 | cp modgui.lv2/* documentation/modgui/
30 |
31 | python3 ./lv2specgen/lv2specgen.py \
32 | $(pwd)/mod.lv2/manifest.ttl \
33 | $(pwd)/documentation/mod/index.html \
34 | --style-uri="../style.css" \
35 | -i -r $(pwd)/documentation/mod \
36 | -p mod
37 |
38 | python3 ./lv2specgen/lv2specgen.py \
39 | $(pwd)/modgui.lv2/manifest.ttl \
40 | $(pwd)/documentation/modgui/index.html \
41 | --style-uri="../style.css" \
42 | -i -r $(pwd)/documentation/modgui \
43 | -p modgui
44 |
45 | sed -i "/group__manifest.html/d" documentation/*/index.html
46 | sed -i "s|../documentation/mod/||" documentation/mod/index.html
47 | sed -i "s|../documentation/modgui/||" documentation/modgui/index.html
48 |
49 | sed -i "s|/var/mod/mod-s||" documentation/mod/index.html
50 | sed -i "s|/var/mod/mod-s||" documentation/modgui/index.html
51 |
--------------------------------------------------------------------------------
/html/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/favicon.ico
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.eot
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.ttf
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.woff
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-200/Ek-Mukta-200.woff2
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.eot
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.ttf
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.woff
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-600/Ek-Mukta-600.woff2
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.eot
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.ttf
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.woff
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-700/Ek-Mukta-700.woff2
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.eot
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.ttf
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.woff
--------------------------------------------------------------------------------
/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/Ek-Mukta/Ek-Mukta-regular/Ek-Mukta-regular.woff2
--------------------------------------------------------------------------------
/html/fonts/comforta/Comfortaa-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/comforta/Comfortaa-Bold.ttf
--------------------------------------------------------------------------------
/html/fonts/comforta/Comfortaa-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/comforta/Comfortaa-Light.ttf
--------------------------------------------------------------------------------
/html/fonts/comforta/Comfortaa-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/comforta/Comfortaa-Regular.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-book-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-book-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-book-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-book-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-book-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-book-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-book-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-book-webfont.woff2
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-bookitalic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-bookitalic-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-bookitalic-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-bookitalic-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-bookitalic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-bookitalic-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-bookitalic-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-bookitalic-webfont.woff2
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-light-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-light-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-light-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-light-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-light-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-light-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-light-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-light-webfont.woff2
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-lightitalic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-lightitalic-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-lightitalic-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-lightitalic-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-lightitalic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-lightitalic-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-lightitalic-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-lightitalic-webfont.woff2
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-semibold-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-semibold-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-semibold-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-semibold-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-semibold-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-semibold-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/cooper/cooperhewitt-semibold-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/cooper/cooperhewitt-semibold-webfont.woff2
--------------------------------------------------------------------------------
/html/fonts/england-hand/england-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/england-hand/england-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/england-hand/england-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/england-hand/england-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/england-hand/england-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/england-hand/england-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/england-hand/stylesheet.css:
--------------------------------------------------------------------------------
1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 14, 2013 12:29:02 PM America/New_York */
2 |
3 |
4 |
5 | @font-face {
6 | font-family: 'EnglandHand';
7 | src: url('england-webfont.eot');
8 | src: url('england-webfont.eot?#iefix') format('embedded-opentype'),
9 | url('england-webfont.woff') format('woff'),
10 | url('england-webfont.ttf') format('truetype'),
11 | url('england-webfont.svg#EnglandHandDBRegular') format('svg');
12 | font-weight: normal;
13 | font-style: normal;
14 |
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/html/fonts/epf/epf_lul-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/epf/epf_lul-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/epf/epf_lul-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/epf/epf_lul-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/epf/epf_lul-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/epf/epf_lul-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/epf/stylesheet.css:
--------------------------------------------------------------------------------
1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 9, 2013 */
2 | @font-face {
3 | font-family: 'epflul';
4 | src: url('epf_lul-webfont.eot');
5 | src: url('epf_lul-webfont.eot?#iefix') format('embedded-opentype'),
6 | url('epf_lul-webfont.woff') format('woff'),
7 | url('epf_lul-webfont.ttf') format('truetype'),
8 | url('epf_lul-webfont.svg#epflul') format('svg');
9 | font-weight: normal;
10 | font-style: normal;
11 |
12 | }
--------------------------------------------------------------------------------
/html/fonts/nexa/Nexa_Free_Bold-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/nexa/Nexa_Free_Bold-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/nexa/Nexa_Free_Bold-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/nexa/Nexa_Free_Bold-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/nexa/Nexa_Free_Bold-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/nexa/Nexa_Free_Bold-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/nexa/stylesheet.css:
--------------------------------------------------------------------------------
1 | /*
2 | * Web Fonts from fontspring.com
3 | *
4 | * All OpenType features and all extended glyphs have been removed.
5 | * Fully installable fonts can be purchased at http://www.fontspring.com
6 | *
7 | * The fonts included in this stylesheet are subject to the End User License you purchased
8 | * from Fontspring. The fonts are protected under domestic and international trademark and
9 | * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
10 | * distributing this font software.
11 | *
12 | * (c) 2010-2012 Fontspring
13 | *
14 | *
15 | *
16 | *
17 | * The fonts included are copyrighted by the vendor listed below.
18 | *
19 | * Vendor: Fontfabric
20 | * License URL: http://www.fontspring.com/fflicense/fontfabric
21 | *
22 | *
23 | */
24 |
25 | @font-face {
26 | font-family: 'Nexa';
27 | src: url('Nexa_Free_Bold-webfont.eot');
28 | src: url('Nexa_Free_Bold-webfont.eot?#iefix') format('embedded-opentype'),
29 | url('Nexa_Free_Bold-webfont.woff') format('woff'),
30 | url('Nexa_Free_Bold-webfont.ttf') format('truetype'),
31 | url('Nexa_Free_Bold-webfont.svg#nexa_boldregular') format('svg');
32 | font-weight: normal;
33 | font-style: normal;
34 |
35 | }
36 |
37 |
--------------------------------------------------------------------------------
/html/fonts/pirulen/pirulen_rg-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/pirulen/pirulen_rg-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/pirulen/pirulen_rg-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/pirulen/pirulen_rg-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/pirulen/pirulen_rg-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/pirulen/pirulen_rg-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/pirulen/stylesheet.css:
--------------------------------------------------------------------------------
1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 25, 2013 */
2 |
3 | @font-face {
4 | font-family: 'Pirulen';
5 | src: url('pirulen_rg-webfont.eot');
6 | src: url('pirulen_rg-webfont.eot?#iefix') format('embedded-opentype'),
7 | url('pirulen_rg-webfont.woff') format('woff'),
8 | url('pirulen_rg-webfont.ttf') format('truetype');
9 | font-weight: normal;
10 | font-style: normal;
11 |
12 | }
--------------------------------------------------------------------------------
/html/fonts/questrial/questrial-regular-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/questrial/questrial-regular-webfont.eot
--------------------------------------------------------------------------------
/html/fonts/questrial/questrial-regular-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/questrial/questrial-regular-webfont.ttf
--------------------------------------------------------------------------------
/html/fonts/questrial/questrial-regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/fonts/questrial/questrial-regular-webfont.woff
--------------------------------------------------------------------------------
/html/fonts/questrial/stylesheet.css:
--------------------------------------------------------------------------------
1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 27, 2013 */
2 |
3 | @font-face {
4 | font-family: 'Questrial';
5 | src: url('questrial-regular-webfont.eot');
6 | src: url('questrial-regular-webfont.eot?#iefix') format('embedded-opentype'),
7 | url('questrial-regular-webfont.woff') format('woff'),
8 | url('questrial-regular-webfont.ttf') format('truetype'),
9 | url('questrial-regular-webfont.svg#questrialregular') format('svg');
10 | font-weight: normal;
11 | font-style: normal;
12 |
13 | }
--------------------------------------------------------------------------------
/html/icon.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | MOD SDK
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
35 |
36 |
37 |
38 |
39 |
48 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/html/img/audio-input-connected-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-input-connected-highlight.png
--------------------------------------------------------------------------------
/html/img/audio-input-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-input-connected.png
--------------------------------------------------------------------------------
/html/img/audio-input-connecting-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-input-connecting-highlight.png
--------------------------------------------------------------------------------
/html/img/audio-input-connecting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-input-connecting.png
--------------------------------------------------------------------------------
/html/img/audio-input.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-input.png
--------------------------------------------------------------------------------
/html/img/audio-jack-nconnect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-jack-nconnect.png
--------------------------------------------------------------------------------
/html/img/audio-jack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-jack.png
--------------------------------------------------------------------------------
/html/img/audio-output-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-output-connected.png
--------------------------------------------------------------------------------
/html/img/audio-output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/audio-output.png
--------------------------------------------------------------------------------
/html/img/cv-input-connected-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-input-connected-highlight.png
--------------------------------------------------------------------------------
/html/img/cv-input-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-input-connected.png
--------------------------------------------------------------------------------
/html/img/cv-input-connecting-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-input-connecting-highlight.png
--------------------------------------------------------------------------------
/html/img/cv-input-connecting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-input-connecting.png
--------------------------------------------------------------------------------
/html/img/cv-input.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-input.png
--------------------------------------------------------------------------------
/html/img/cv-jack-nconnect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-jack-nconnect.png
--------------------------------------------------------------------------------
/html/img/cv-jack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-jack.png
--------------------------------------------------------------------------------
/html/img/cv-output-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-output-connected.png
--------------------------------------------------------------------------------
/html/img/cv-output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/cv-output.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-144x144.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-192x192.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-36x36.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-48x48.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-72x72.png
--------------------------------------------------------------------------------
/html/img/favicon/android-icon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/android-icon-96x96.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-114x114.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-120x120.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-144x144.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-152x152.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-180x180.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-57x57.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-60x60.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-72x72.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-76x76.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon-precomposed.png
--------------------------------------------------------------------------------
/html/img/favicon/apple-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/apple-icon.png
--------------------------------------------------------------------------------
/html/img/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/html/img/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/html/img/favicon/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/favicon-96x96.png
--------------------------------------------------------------------------------
/html/img/favicon/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/favicon.png
--------------------------------------------------------------------------------
/html/img/favicon/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "App",
3 | "icons": [
4 | {
5 | "src": "\/android-icon-36x36.png",
6 | "sizes": "36x36",
7 | "type": "image\/png",
8 | "density": "0.75"
9 | },
10 | {
11 | "src": "\/android-icon-48x48.png",
12 | "sizes": "48x48",
13 | "type": "image\/png",
14 | "density": "1.0"
15 | },
16 | {
17 | "src": "\/android-icon-72x72.png",
18 | "sizes": "72x72",
19 | "type": "image\/png",
20 | "density": "1.5"
21 | },
22 | {
23 | "src": "\/android-icon-96x96.png",
24 | "sizes": "96x96",
25 | "type": "image\/png",
26 | "density": "2.0"
27 | },
28 | {
29 | "src": "\/android-icon-144x144.png",
30 | "sizes": "144x144",
31 | "type": "image\/png",
32 | "density": "3.0"
33 | },
34 | {
35 | "src": "\/android-icon-192x192.png",
36 | "sizes": "192x192",
37 | "type": "image\/png",
38 | "density": "4.0"
39 | }
40 | ]
41 | }
--------------------------------------------------------------------------------
/html/img/favicon/ms-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/ms-icon-144x144.png
--------------------------------------------------------------------------------
/html/img/favicon/ms-icon-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/ms-icon-150x150.png
--------------------------------------------------------------------------------
/html/img/favicon/ms-icon-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/ms-icon-310x310.png
--------------------------------------------------------------------------------
/html/img/favicon/ms-icon-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/favicon/ms-icon-70x70.png
--------------------------------------------------------------------------------
/html/img/icn-addressing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/icn-addressing.png
--------------------------------------------------------------------------------
/html/img/icn-remove-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/icn-remove-16x16.png
--------------------------------------------------------------------------------
/html/img/icn-settings-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/icn-settings-16x16.png
--------------------------------------------------------------------------------
/html/img/icn-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/icn-settings.png
--------------------------------------------------------------------------------
/html/img/midi-input-connected-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-input-connected-highlight.png
--------------------------------------------------------------------------------
/html/img/midi-input-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-input-connected.png
--------------------------------------------------------------------------------
/html/img/midi-input-connecting-highlight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-input-connecting-highlight.png
--------------------------------------------------------------------------------
/html/img/midi-input-connecting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-input-connecting.png
--------------------------------------------------------------------------------
/html/img/midi-input.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-input.png
--------------------------------------------------------------------------------
/html/img/midi-jack-nconnect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-jack-nconnect.png
--------------------------------------------------------------------------------
/html/img/midi-jack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-jack.png
--------------------------------------------------------------------------------
/html/img/midi-output-connected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-output-connected.png
--------------------------------------------------------------------------------
/html/img/midi-output.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/img/midi-output.png
--------------------------------------------------------------------------------
/html/js/icon.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function() {
2 | var uri = window.location.hash.replace(/^#/, '')
3 |
4 | if (uri) {
5 | $.ajax({
6 | url: '/effect/get/',
7 | data: { uri: uri },
8 | success: function(resp) {
9 | var options = {
10 | defaultIconTemplate: defaultIconTemplate,
11 | bypassed: false,
12 | }
13 | new GUI(resp.data, options).render(null, function(icon) {
14 | $('#pedalboard-dashboard').append(icon)
15 | })
16 | },
17 | error: function(resp) {
18 | alert("Error: Can't get requested plugin via URI.")
19 | },
20 | dataType: 'json'
21 | })
22 | }
23 | })
24 |
--------------------------------------------------------------------------------
/html/js/jquery.ba-resize.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery resize event - v1.1 - 3/14/2010
3 | * http://benalman.com/projects/jquery-resize-plugin/
4 | *
5 | * Copyright (c) 2010 "Cowboy" Ben Alman
6 | * Dual licensed under the MIT and GPL licenses.
7 | * http://benalman.com/about/license/
8 | */
9 | (function($,h,c){var a=$([]),e=$.resize=$.extend($.resize,{}),i,k="setTimeout",j="resize",d=j+"-special-event",b="delay",f="throttleWindow";e[b]=250;e[f]=true;$.event.special[j]={setup:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.add(l);$.data(this,d,{w:l.width(),h:l.height()});if(a.length===1){g()}},teardown:function(){if(!e[f]&&this[k]){return false}var l=$(this);a=a.not(l);l.removeData(d);if(!a.length){clearTimeout(i)}},add:function(l){if(!e[f]&&this[k]){return false}var n;function m(s,o,p){var q=$(this),r=$.data(this,d);r.w=o!==c?o:q.width();r.h=p!==c?p:q.height();n.apply(this,arguments)}if($.isFunction(l)){n=l;return m}else{n=l.handler;l.handler=m}}};function g(){i=h[k](function(){a.each(function(){var n=$(this),m=n.width(),l=n.height(),o=$.data(this,d);if(m!==o.w||l!==o.h){n.trigger(j,[o.w=m,o.h=l])}});g()},e[b])}})(jQuery,this);
--------------------------------------------------------------------------------
/html/js/jquery.mousewheel.min.js:
--------------------------------------------------------------------------------
1 | /*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
2 | * Licensed under the MIT License (LICENSE.txt).
3 | *
4 | * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
5 | * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
6 | * Thanks to: Seamus Leahy for adding deltaX and deltaY
7 | *
8 | * Version: 3.0.6
9 | *
10 | * Requires: 1.2.2+
11 | */
12 | (function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
13 |
--------------------------------------------------------------------------------
/html/js/jquery.ui.touch-punch.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Touch Punch 0.2.2
3 | *
4 | * Copyright 2011, Dave Furfero
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | *
7 | * Depends:
8 | * jquery.ui.widget.js
9 | * jquery.ui.mouse.js
10 | */
11 | (function(b){b.support.touch="ontouchend" in document;if(!b.support.touch){return;}var c=b.ui.mouse.prototype,e=c._mouseInit,a;function d(g,h){if(g.originalEvent.touches.length>1){return;}g.preventDefault();var i=g.originalEvent.changedTouches[0],f=document.createEvent("MouseEvents");f.initMouseEvent(h,true,true,window,1,i.screenX,i.screenY,i.clientX,i.clientY,false,false,false,false,0,null);g.target.dispatchEvent(f);}c._touchStart=function(g){var f=this;if(a||!f._mouseCapture(g.originalEvent.changedTouches[0])){return;}a=true;f._touchMoved=false;d(g,"mouseover");d(g,"mousemove");d(g,"mousedown");};c._touchMove=function(f){if(!a){return;}this._touchMoved=true;d(f,"mousemove");};c._touchEnd=function(f){if(!a){return;}d(f,"mouseup");d(f,"mouseout");if(!this._touchMoved){d(f,"click");}a=false;};c._mouseInit=function(){var f=this;f.element.bind("touchstart",b.proxy(f,"_touchStart")).bind("touchmove",b.proxy(f,"_touchMove")).bind("touchend",b.proxy(f,"_touchEnd"));e.call(f);};})(jQuery);
--------------------------------------------------------------------------------
/html/js/monitor.js:
--------------------------------------------------------------------------------
1 | function BundleMonitor() {
2 | this.notify = new Function();
3 | this.connect();
4 | }
5 |
6 | BundleMonitor.prototype.connect = function() {
7 | this.loaded = false;
8 | this.ws = new WebSocket('ws://' + document.location.host + '/monitor');
9 |
10 | this.ws.onmessage = function(message) {
11 | this.notify();
12 | }.bind(this);
13 |
14 | this.ws.onopen = function() {
15 | this.loaded = true;
16 | if (this.bundle) {
17 | this.watch(bundle);
18 | }
19 | }.bind(this)
20 |
21 | this.ws.onclose = this.reconnect.bind(this);
22 | this.ws.onerror = this.reconnect.bind(this);
23 | }
24 |
25 | BundleMonitor.prototype.watch = function(bundle, callback) {
26 | this.bundle = bundle;
27 | this.notify = callback;
28 | if (this.loaded) {
29 | this.ws.send(bundle);
30 | }
31 | }
32 |
33 | BundleMonitor.prototype.reconnect = function() {
34 | setTimeout(this.connect.bind(this), 1000);
35 | }
36 |
37 |
--------------------------------------------------------------------------------
/html/js/templates.js:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright 2012-2013 AGR Audio, Industria e Comercio LTDA.
3 | *
4 | * This program is free software: you can redistribute it and/or modify
5 | * it under the terms of the GNU General Public License as published by
6 | * the Free Software Foundation, either version 3 of the License, or
7 | * (at your option) any later version.
8 | *
9 | * This program is distributed in the hope that it will be useful,
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | * GNU General Public License for more details.
13 | *
14 | * You should have received a copy of the GNU General Public License
15 | * along with this program. If not, see .
16 | */
17 |
18 | /*
19 | This file won't be loaded. Instead, the server will deliver the TEMPLATES
20 | variable, with all templates needed for the system.*/
21 |
--------------------------------------------------------------------------------
/html/resources/CHANGELOG:
--------------------------------------------------------------------------------
1 | 0.9.4
2 | =====
3 |
4 | - new: layout for lv2 presets interface
5 |
6 | 0.9.3
7 | =====
8 |
9 | - new: footswitch for trigger buttons in settings
10 |
11 | 0.9.2
12 | =====
13 |
14 | - fix: hover on enumeration in boxy and combos
15 |
16 | 0.9.1
17 | =====
18 |
19 | - fix: hover on enumeration
20 |
21 | 0.9
22 | ===
23 |
24 | - All current code was named v0.9
25 |
--------------------------------------------------------------------------------
/html/resources/README.md:
--------------------------------------------------------------------------------
1 | mod-resources
2 | =============
3 |
4 | Images, HTML templates and CSSs for building web-based audio processing interfaces. It's used by the MOD interfaces, both in the SDK and core software.
5 |
6 |
--------------------------------------------------------------------------------
/html/resources/combos/model-001/model-0550.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/combos/model-001/model-0550.png
--------------------------------------------------------------------------------
/html/resources/combos/model-001/model-0625.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/combos/model-001/model-0625.png
--------------------------------------------------------------------------------
/html/resources/combos/model-001/model-0778.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/combos/model-001/model-0778.png
--------------------------------------------------------------------------------
/html/resources/combos/model-001/model-0930.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/combos/model-001/model-0930.png
--------------------------------------------------------------------------------
/html/resources/heads/model-001/model-0550.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/model-001/model-0550.png
--------------------------------------------------------------------------------
/html/resources/heads/model-001/model-0700.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/model-001/model-0700.png
--------------------------------------------------------------------------------
/html/resources/heads/model-001/model-0800.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/model-001/model-0800.png
--------------------------------------------------------------------------------
/html/resources/heads/model-001/model-0950.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/model-001/model-0950.png
--------------------------------------------------------------------------------
/html/resources/heads/rocker-switch-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/rocker-switch-off.png
--------------------------------------------------------------------------------
/html/resources/heads/rocker-switch-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/heads/rocker-switch-on.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/aluminium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/aluminium.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/black.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/blue.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/boxy.css:
--------------------------------------------------------------------------------
1 | /* STYLES FOR THE BOXY KNOB */
2 |
3 |
4 | /* = KNOBS
5 | ================================================ */
6 | .mod-pedal-boxy{{{cns}}} .mod-control-group.mod-copper .mod-knob .mod-knob-image {
7 | background-image:url(/resources/knobs/boxy/copper.png{{{ns}}});
8 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-aluminium .mod-knob .mod-knob-image {
9 | background-image:url(/resources/knobs/boxy/aluminium.png{{{ns}}});
10 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-gold .mod-knob .mod-knob-image {
11 | background-image:url(/resources/knobs/boxy/gold.png{{{ns}}});
12 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-petrol .mod-knob .mod-knob-image {
13 | background-image:url(/resources/knobs/boxy/petrol.png{{{ns}}});
14 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-silver .mod-knob .mod-knob-image {
15 | background-image:url(/resources/knobs/boxy/silver.png{{{ns}}});
16 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-bronze .mod-knob .mod-knob-image {
17 | background-image:url(/resources/knobs/boxy/bronze.png{{{ns}}});
18 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-blue .mod-knob .mod-knob-image {
19 | background-image:url(/resources/knobs/boxy/blue.png{{{ns}}});
20 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-steel .mod-knob .mod-knob-image {
21 | background-image:url(/resources/knobs/boxy/steel.png{{{ns}}});
22 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-purple .mod-knob .mod-knob-image {
23 | background-image:url(/resources/knobs/boxy/purple.png{{{ns}}});
24 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-black .mod-knob .mod-knob-image {
25 | background-image:url(/resources/knobs/boxy/black.png{{{ns}}});
26 | }.mod-pedal-boxy{{{cns}}} .mod-control-group.mod-green .mod-knob .mod-knob-image {
27 | background-image:url(/resources/knobs/boxy/green.png{{{ns}}});
28 | }
29 |
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/boxy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/boxy.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/bronze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/bronze.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/copper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/copper.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/gold.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/green.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/petrol.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/purple.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/silver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/silver.png
--------------------------------------------------------------------------------
/html/resources/knobs/boxy/steel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/boxy/steel.png
--------------------------------------------------------------------------------
/html/resources/knobs/british/british.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/british/british.png
--------------------------------------------------------------------------------
/html/resources/knobs/chicken-head/_strip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/chicken-head/_strip.png
--------------------------------------------------------------------------------
/html/resources/knobs/chicken-head/chicken-head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/chicken-head/chicken-head.png
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/boxy.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "boxy",
2 |
3 | "gimp_image" : "sources/boxy.xcf",
4 | "blender_image" : "sources/boxy.blend",
5 | "layers" : [
6 | { "scene" : "Knob", "index" : 1000, "visible" : 1, "layer" : "knob" },
7 | { "scene" : "Mask", "index" : 1001, "visible" : 0, "layer" : "mask" },
8 | { "scene" : "Black", "index" : 0, "visible" : 0, "layer" : "over_black" },
9 | { "scene" : "White", "index" : 0, "visible" : 0, "layer" : "over_white" } ],
10 |
11 | "css_source" : "sources/boxy.css.in",
12 | "css_dest" : "../boxy/boxy.css",
13 |
14 | "chdir" : "../boxy",
15 |
16 | "color_prefix" : "color_",
17 | "over_prefix" : "over_",
18 | "mask_layer" : "mask",
19 | "export_suffix" : ".png" }
20 |
21 | colors = { "aluminium" : "black",
22 | "black" : "white",
23 | "blue" : "white",
24 | "bronze" : "black",
25 | "copper" : "black",
26 | "gold" : "black",
27 | "green" : "black",
28 | "silver" : "black",
29 | "steel" : "black",
30 | "petrol" : "white",
31 | "purple" : "black" }
32 |
33 | backgrounds_css = """.mod-pedal-boxy{{{cns}}} .mod-control-group.mod- .mod-knob .mod-knob-image {
34 | background-image:url(/resources/knobs/boxy/.png{{{ns}}});
35 | }"""
36 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/british.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "british",
2 |
3 | "gimp_image" : "sources/british.xcf",
4 | "blender_image" : "sources/british.blend",
5 | "layers" : [{ "scene" : "Knob", "layer" : "knob", "index" : 1000, "visible" : 1 },
6 | { "scene" : "Shadow", "layer" : "shadow", "index" : 1000, "visible" : 1 }],
7 | "color_prefix" : "",
8 | "chdir" : "../british",
9 |
10 | "export_suffix" : ".png" }
11 | colors = { "british" : "none" }
12 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/chickenhead.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "chickenhead",
2 |
3 | "blender_image" : "sources/chickenhead.blend",
4 | "layers" : [{ "scene" : "Knob", "export" : "chicken-head" }],
5 |
6 | "chdir" : "../chicken-head",
7 |
8 | "export_suffix" : ".png" }
9 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/japanese.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "japanese",
2 |
3 | "gimp_image" : "sources/japanese.xcf",
4 | "blender_image" : "sources/japanese.blend",
5 | "layers" : [
6 | { "scene" : "Knob", "index" : 1000, "visible" : 1, "layer" : "knob" },
7 | { "scene" : "Mask", "index" : 1001, "visible" : 0, "layer" : "mask" },
8 | { "scene" : "Black", "index" : 0, "visible" : 0, "layer" : "over_black" },
9 | { "scene" : "White", "index" : 0, "visible" : 0, "layer" : "over_white" } ],
10 |
11 | "css_source" : "sources/japanese.css.in",
12 | "css_dest" : "../japanese/japanese.css",
13 |
14 | "chdir" : "../japanese",
15 |
16 | "color_prefix" : "color_",
17 | "over_prefix" : "over_",
18 | "mask_layer" : "mask",
19 | "export_suffix" : ".png" }
20 |
21 | colors = { "black" : "white",
22 | "blue" : "white",
23 | "brown" : "white",
24 | "cream" : "black",
25 | "cyan" : "black",
26 | "darkblue" : "white",
27 | "gray" : "black",
28 | "green" : "black",
29 | "none" : "black",
30 | "orange" : "black",
31 | "petrol" : "white",
32 | "pink" : "black",
33 | "purple" : "white",
34 | "racing" : "white",
35 | "red" : "black",
36 | "white" : "black",
37 | "yellow" : "black" }
38 |
39 | backgrounds_css = """.mod-pedal-japanese{{{cns}}} .mod-control-group.mod- .mod-knob .mod-knob-image {
40 | background-image:url(/resources/knobs/japanese/.png{{{ns}}});
41 | }"""
42 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/lata.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "lata",
2 |
3 | "blender_image" : "sources/lata.blend",
4 | "layers" : [{ "scene" : "Knob", "export" : "lata" }],
5 |
6 | "chdir" : "../lata",
7 |
8 | "export_suffix" : ".png" }
9 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/configs/mod-ui.py:
--------------------------------------------------------------------------------
1 | options = { "type" : "mod-ui",
2 |
3 | "blender_image" : "sources/mod-ui.blend",
4 | "layers" : [{ "scene" : "Knob", "export" : "mod-ui" }],
5 |
6 | "chdir" : "../mod-ui",
7 |
8 | "export_suffix" : ".png" }
9 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/boxy.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/boxy.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/boxy.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/boxy.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/boxy.css.in:
--------------------------------------------------------------------------------
1 | /* STYLES FOR THE BOXY KNOB */
2 |
3 |
4 | /* = KNOBS
5 | ================================================ */
6 |
7 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/boxy.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/boxy.xcf
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/british.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/british.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/british.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/british.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/british.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/british.xcf
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/chickenhead.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/chickenhead.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/chickenhead.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/chickenhead.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/japanese.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/japanese.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/japanese.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/japanese.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/japanese.css.in:
--------------------------------------------------------------------------------
1 | /* STYLES FOR THE JAPANESE KNOB */
2 |
3 |
4 | /* = KNOBS
5 | ================================================ */
6 |
7 |
8 | .mod-pedal-japanese{{{cns}}} .mod-control-group {
9 | height:141px;
10 | left:17px;
11 | position:absolute;
12 | right:17px;
13 | top:18px;
14 | }
15 | .mod-pedal-japanese{{{cns}}} .mod-control-group .mod-knob {
16 | height:70px;
17 | float:left;
18 | overflow:hidden;
19 | position:relative;
20 | text-align:center;
21 | width:60px;
22 | }
23 | .mod-pedal-japanese{{{cns}}} .mod-control-group .mod-knob > span.mod-knob-title {
24 | color:white;
25 | display:block;
26 | font-size:10px;
27 | font-weight:bold;
28 | height:11px;
29 | line-height:1;
30 | margin:0;
31 | padding:0;
32 | position:relative;
33 | overflow:hidden;
34 | text-transform:uppercase;
35 | }
36 | .mod-pedal-japanese{{{cns}}} .mod-control-group .mod-knob .mod-knob-image {
37 | background-position:left center;
38 | background-repeat:no-repeat;
39 | background-size:auto 52px;
40 | height:52px;
41 | margin:0 auto;
42 | position:relative;
43 | overflow:hidden;
44 | width:52px;
45 | }
46 |
47 |
48 | /* 4 KNOBS */
49 | .mod-pedal-japanese{{{cns}}}.mod-four-knobs .mod-control-group {
50 | height:70px;
51 | top:49px;
52 | }
53 |
54 | /* 7 KNOBS - OPTION 1 */
55 | .mod-pedal-japanese{{{cns}}}.mod-seven-a-knobs .mod-control-group .mod-knob:first-child {
56 | margin-left:30px;
57 | }
58 |
59 | /* 7 KNOBS - OPTION 2 */
60 | .mod-pedal-japanese{{{cns}}}.mod-seven-b-knobs .mod-control-group .mod-knob:first-child {
61 | margin:0 30px;
62 | }
63 |
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/japanese.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/japanese.xcf
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/japanese.xcf.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/japanese.xcf.bak
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/lata.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/lata.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/lata.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/lata.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/mod-ui.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/mod-ui.blend
--------------------------------------------------------------------------------
/html/resources/knobs/generator/sources/mod-ui.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/generator/sources/mod-ui.blend1
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/black.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/blue.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/brown.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/cream.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/cyan.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/darkblue.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/gray.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/green.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/japanese.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
23 |
24 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/none.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/orange.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/petrol.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/pink.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/purple.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/racing.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/red.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/white.png
--------------------------------------------------------------------------------
/html/resources/knobs/japanese/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/japanese/yellow.png
--------------------------------------------------------------------------------
/html/resources/knobs/lata/lata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/lata/lata.png
--------------------------------------------------------------------------------
/html/resources/knobs/mod-ui/knob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/mod-ui/knob.png
--------------------------------------------------------------------------------
/html/resources/knobs/switch-key/switch-key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/knobs/switch-key/switch-key.png
--------------------------------------------------------------------------------
/html/resources/lights/light-001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/lights/light-001.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/dots.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/flowerpower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/flowerpower.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/gold.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/lava.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/lava.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/slime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/slime.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/tribal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/tribal1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/tribal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/tribal2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/warning.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/wood0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/wood0.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/wood1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/wood2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/wood2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/wood3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/wood3.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/wood4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/wood4.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy-small/zinc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy-small/zinc.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/dots.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/flowerpower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/flowerpower.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/gold.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/lava.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/lava.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/slime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/slime.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/tribal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/tribal1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/tribal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/tribal2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/warning.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/wood0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/wood0.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/wood1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/wood2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/wood2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/wood3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/wood3.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/wood4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/wood4.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy/zinc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy/zinc.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/dots.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/flowerpower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/flowerpower.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/gold.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/lava.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/lava.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/slime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/slime.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/tribal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/tribal1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/tribal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/tribal2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/warning.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/wood0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/wood0.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/wood1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/wood2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/wood2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/wood3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/wood3.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/wood4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/wood4.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy100/zinc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy100/zinc.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/dots.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/flowerpower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/flowerpower.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/gold.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/lava.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/lava.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/slime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/slime.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/tribal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/tribal1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/tribal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/tribal2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/warning.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/wood0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/wood0.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/wood1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/wood2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/wood2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/wood3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/wood3.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/wood4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/wood4.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy75/zinc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy75/zinc.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/dots.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/dots.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/flowerpower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/flowerpower.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/gold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/gold.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/lava.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/lava.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/slime.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/slime.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/tribal1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/tribal1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/tribal2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/tribal2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/warning.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/wood0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/wood0.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/wood1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/wood1.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/wood2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/wood2.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/wood3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/wood3.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/wood4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/wood4.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/boxy85/zinc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/boxy85/zinc.png
--------------------------------------------------------------------------------
/html/resources/pedals/british/metallic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/british/metallic.png
--------------------------------------------------------------------------------
/html/resources/pedals/default-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/default-screenshot.png
--------------------------------------------------------------------------------
/html/resources/pedals/default-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/default-thumbnail.png
--------------------------------------------------------------------------------
/html/resources/pedals/default.css:
--------------------------------------------------------------------------------
1 | /* = CONTAINER
2 | ================================================ */
3 | .mod-pedal-default {
4 | background-image:url(/resources/pedals/default.png);
5 | background-position:center center;
6 | background-repeat:no-repeat;
7 | background-size:251px 434px;
8 | height:434px;
9 | position:absolute;
10 | width:251px;
11 | border-radius: 80px 82px 80px 82px;
12 | }
13 |
14 | /* = LIGHT ON/OFF
15 | ================================================ */
16 | .mod-pedal-default .mod-light {
17 | background-position:center center;
18 | background-repeat:no-repeat;
19 | height:32px;
20 | left:10px;
21 | position:absolute;
22 | right:10px;
23 | top:200px;
24 | }
25 |
26 | /* = AUDIO PORTS
27 | ================================================ */
28 |
29 | .mod-pedal-default .mod-pedal-input {
30 | /*
31 | left: -28px;
32 | top: 110px;
33 | */
34 | }
35 | .mod-pedal-default .mod-pedal-output {
36 | /*
37 | right: -24px;
38 | top: 110px;
39 | */
40 | }
41 |
42 | /* = FOOTSWITCH
43 | ================================================ */
44 | .mod-pedal-default .mod-footswitch {
45 | background-image:url(/resources/pedals/footswitch.png);
46 | background-position:bottom center;
47 | background-repeat:no-repeat;
48 | background-size:auto 132px;
49 | bottom: 100px;
50 | cursor:pointer;
51 | height:66px;
52 | width: 66px;
53 | left:13px;
54 | margin: auto;
55 | position:absolute !important;
56 | right:13px;
57 | }
58 | .mod-pedal-default .mod-footswitch.on {
59 | background-position-y: top !important;
60 | background-image:url(/resources/pedals/footswitch.png);
61 | }
62 |
63 | /* = NAME
64 | ================================================ */
65 | .mod-pedal-default .mod-plugin-name {
66 | color: #333;
67 | left:50px;
68 | right:50px;
69 | position:absolute;
70 | text-align:center;
71 | top:60px;
72 | }
73 |
74 | .mod-pedal-default .mod-plugin-name h1 {
75 | font-family: "Ek Mukta",Helvetica,Arial,Sans-serif;
76 | font-weight: bold;
77 | text-shadow: 0 0 8px 2px white;
78 | font-size: 30px;
79 | line-height: 30px;
80 | }
81 |
--------------------------------------------------------------------------------
/html/resources/pedals/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/default.png
--------------------------------------------------------------------------------
/html/resources/pedals/footswitch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/footswitch.png
--------------------------------------------------------------------------------
/html/resources/pedals/generator/configs/japanese.py:
--------------------------------------------------------------------------------
1 | options = { "gimp_image" : "sources/japanese.xcf",
2 | "css_source" : "sources/japanese.css.in",
3 | "css_dest" : "../japanese/japanese.css",
4 | "borderx" : 0,
5 | "bordery" : 0,
6 | "chdir" : "../",
7 | "color_prefix" : "color_",
8 | "mask_prefix" : "mask_",
9 | "export_suffix" : ".png" }
10 |
11 | colors = { "black" : "white",
12 | "blue" : "white",
13 | "brown" : "white",
14 | "cream" : "white",
15 | "cyan" : "white",
16 | "darkblue" : "white",
17 | "gray" : "white",
18 | "green" : "white",
19 | "none" : "white",
20 | "orange" : "white",
21 | "petrol" : "white",
22 | "pink" : "white",
23 | "purple" : "white",
24 | "racing" : "white",
25 | "red" : "white",
26 | "white" : "black",
27 | "yellow" : "white" }
28 |
29 | sizes = ( { "x" : 274, "y" : 530, "folder" : "japanese" }, )
30 |
31 | backgrounds_css = """.mod-pedal-japanese{{{cns}}}.mod- { background-image:url(/resources/pedals/japanese/.png{{{ns}}}); }
32 | """
33 |
34 | colors_css = ( { "black" : """{
35 | background-image:url(/resources/utils/dropdown-arrow-white.png{{{ns}}});
36 | }""",
37 | "white" : """{
38 | background-image:url(/resources/utils/dropdown-arrow-white.png{{{ns}}});
39 | }""",
40 | "identifier" : """.mod-pedal-japanese{{{cns}}}.mod- .mod-enumerated""" },
41 |
42 | { "white" : """{
43 | color:white;
44 | }""",
45 | "black" : """{
46 | color:#7F7F7F;
47 | }""",
48 | "identifier" : """.mod-pedal-japanese{{{cns}}}.mod- .mod-plugin-name h1,
49 | .mod-pedal-japanese{{{cns}}}.mod- .mod-enumerated,
50 | .mod-pedal-japanese{{{cns}}}.mod- .mod-control-group .mod-knob > span.mod-knob-title""" } )
51 |
--------------------------------------------------------------------------------
/html/resources/pedals/generator/sources/boxy.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/generator/sources/boxy.xcf
--------------------------------------------------------------------------------
/html/resources/pedals/generator/sources/japanese.css.in:
--------------------------------------------------------------------------------
1 | /* STYLES FOR THE JAPANESE PEDAL */
2 |
3 | @import url(/fonts/epf/stylesheet.css);
4 | @import url(/fonts/nexa/stylesheet.css);
5 | @import url(/fonts/pirulen/stylesheet.css);
6 | @import url(/fonts/questrial/stylesheet.css);
7 |
8 | /* = CONTAINER
9 | ================================================ */
10 | .mod-pedal-japanese{{{cns}}} {
11 | background-position:center center;
12 | background-repeat:no-repeat;
13 | height:530px;
14 | position:absolute;
15 | width:274px;
16 | border-radius: 18px;
17 | }
18 |
19 | /* PORTS
20 | ================================================ */
21 |
22 | .mod-pedal-japanese{{{cns}}}.mod-pedal .mod-pedal-input,
23 | .mod-pedal-japanese{{{cns}}}.mod-pedal .mod-pedal-output {
24 | top: 186px;
25 | }
26 |
27 | /* = PLUGIN'S AUTHOR
28 | ================================================ */
29 | .mod-pedal-japanese{{{cns}}} .mod-plugin-brand {
30 | bottom:95px;
31 | left:30px;
32 | position:absolute;
33 | right:30px;
34 | text-align:center;
35 | text-transform:uppercase;
36 | }
37 |
38 | .mod-pedal-japanese{{{cns}}} .mod-plugin-brand h1 {
39 | color:#292d31;
40 | font-family:"Nexa";
41 | font-size:32px;
42 | text-shadow:1px 2px 2px rgba(0,0,0,.5),2px 4px 5px rgba(0,0,0,.5),0px 0px 8px rgba(0,0,0,.5), -1px -1px 1px rgba(255,255,255,.2);
43 | }
44 |
45 | /* = PLUGIN'S NAME
46 | ================================================ */
47 | .mod-pedal-japanese{{{cns}}} .mod-plugin-name {
48 | bottom:210px;
49 | left:30px;
50 | overflow:hidden;
51 | position:absolute;
52 | right:30px;
53 | text-align:right;
54 | top:230px;
55 | }
56 |
57 | .mod-pedal-japanese{{{cns}}} .mod-plugin-name h1 {
58 | font-family:"Questrial";
59 | font-size:24px;
60 | line-height:1;
61 | }
62 |
63 | /* = LIGHT ON/OFF
64 | ================================================ */
65 | .mod-pedal-japanese{{{cns}}} .mod-light {
66 | height:32px;
67 | left:121px;
68 | position:absolute;
69 | top:197px;
70 | width:32px;
71 | }
72 |
73 | /* = FOOTSWITCH
74 | ================================================ */
75 | .mod-pedal-japanese{{{cns}}} .mod-footswitch {
76 | bottom:46px;
77 | cursor:pointer;
78 | height:155px;
79 | left:13px;
80 | position:absolute;
81 | right:13px;
82 | }
83 |
84 |
85 | /* = BACKGROUND IMAGES - Colour of the pedal
86 | ================================================ */
87 |
88 |
89 |
90 |
91 |
--------------------------------------------------------------------------------
/html/resources/pedals/generator/sources/japanese.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/generator/sources/japanese.xcf
--------------------------------------------------------------------------------
/html/resources/pedals/generator/sources/lata.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/generator/sources/lata.xcf
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/japanese/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/japanese/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/knob.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/knob.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/_strip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/_strip.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/anonymous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/anonymous.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/atomic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/atomic.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/black.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/blue.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/brown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/brown.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/camouflage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/camouflage.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/che.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/che.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/cream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/cream.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/cyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/cyan.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/darkblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/darkblue.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/gray.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/green.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/humphreys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/humphreys.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/knob-lata.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/resources/pedals/lata/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/none.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/orange.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/petrol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/petrol.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/pink.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/purple.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/purple.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/racing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/racing.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/red.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/skull.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/skull.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/star.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/white.png
--------------------------------------------------------------------------------
/html/resources/pedals/lata/yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/lata/yellow.png
--------------------------------------------------------------------------------
/html/resources/pedals/purple-light-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/purple-light-off.png
--------------------------------------------------------------------------------
/html/resources/pedals/purple-light-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/purple-light-on.png
--------------------------------------------------------------------------------
/html/resources/pedals/red-light-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/red-light-off.png
--------------------------------------------------------------------------------
/html/resources/pedals/red-light-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/red-light-on.png
--------------------------------------------------------------------------------
/html/resources/pedals/slider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/slider.png
--------------------------------------------------------------------------------
/html/resources/pedals/switch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/pedals/switch.png
--------------------------------------------------------------------------------
/html/resources/racks/model-001/model-001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/racks/model-001/model-001.png
--------------------------------------------------------------------------------
/html/resources/sources/3D models/chicken knob.STL:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/chicken knob.STL
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob MXR com textura e chanfro.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob MXR com textura e chanfro.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob MXR.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob MXR.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob boss antigo grande.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob boss antigo grande.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob boss simetrico.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob boss simetrico.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob boss.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob boss.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob chicken head centralizado na esfera.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob chicken head centralizado na esfera.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob chicken head.STL:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob chicken head.STL
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob chicken head.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob chicken head.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob fader concavo.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob fader concavo.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob lata com textura e chanfro.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob lata com textura e chanfro.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob lata.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob lata.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob metalico cilindrico.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob metalico cilindrico.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob metalico marshall.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob metalico marshall.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob mixer.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob mixer.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob sansamp.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob sansamp.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/knob slider concavo.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/knob slider concavo.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/konb boss antigo pequeno arrumado.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/konb boss antigo pequeno arrumado.U3D
--------------------------------------------------------------------------------
/html/resources/sources/3D models/konb boss antigo pequeno.U3D:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/3D models/konb boss antigo pequeno.U3D
--------------------------------------------------------------------------------
/html/resources/sources/free-grunge-textures-backgrounds-14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/free-grunge-textures-backgrounds-14.jpg
--------------------------------------------------------------------------------
/html/resources/sources/japanese.blend1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/japanese.blend1
--------------------------------------------------------------------------------
/html/resources/sources/knob1.blend11:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/knob1.blend11
--------------------------------------------------------------------------------
/html/resources/sources/lata.blend:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/lata.blend
--------------------------------------------------------------------------------
/html/resources/sources/metal_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/sources/metal_round.png
--------------------------------------------------------------------------------
/html/resources/switches/footswitch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/switches/footswitch.png
--------------------------------------------------------------------------------
/html/resources/switches/switch-001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/switches/switch-001.png
--------------------------------------------------------------------------------
/html/resources/switches/switch-002.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/switches/switch-002.png
--------------------------------------------------------------------------------
/html/resources/templates/pedal-boxy-small-1-footswitch.html:
--------------------------------------------------------------------------------
1 |
42 |
--------------------------------------------------------------------------------
/html/resources/templates/pedal-default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
{{effect.name}}
4 |
5 |
6 |
23 |
24 | {{#effect.ports.audio.output}}
25 |
28 | {{/effect.ports.audio.output}}
29 | {{#effect.ports.midi.output}}
30 |
33 | {{/effect.ports.midi.output}}
34 | {{#effect.ports.cv.output}}
35 |
38 | {{/effect.ports.cv.output}}
39 |
40 |
41 |
--------------------------------------------------------------------------------
/html/resources/utils/dropdown-arrow-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/utils/dropdown-arrow-black.png
--------------------------------------------------------------------------------
/html/resources/utils/dropdown-arrow-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/html/resources/utils/dropdown-arrow-white.png
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-base-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
29 |
30 |
31 |
32 |
33 |
35 |
36 |
37 | ]]>
38 |
39 |
40 |
45 | ]]>
46 |
47 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-bdo-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
28 |
29 |
30 |
34 |
35 |
36 | ]]>
37 |
38 |
39 |
45 | ]]>
46 |
47 |
48 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-blkpres-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
29 |
30 |
31 | ]]>
32 |
33 |
34 |
38 | ]]>
39 |
40 |
41 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-blkstruct-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
31 |
32 |
33 | ]]>
34 |
35 |
36 |
40 | ]]>
41 |
42 |
43 |
46 |
47 |
48 | ]]>
49 |
50 |
51 |
55 | ]]>
56 |
57 |
58 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-charent-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
23 |
24 |
27 |
30 |
33 |
34 | %xhtml-lat1;
35 | %xhtml-symbol;
36 | %xhtml-special;
37 |
38 |
39 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-edit-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
33 |
34 |
35 | ]]>
36 |
37 |
38 |
44 | ]]>
45 |
46 |
47 |
48 |
49 |
53 |
54 |
55 | ]]>
56 |
57 |
58 |
64 | ]]>
65 |
66 |
67 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-hypertext-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
27 |
28 |
29 |
30 |
31 |
35 |
36 |
37 | ]]>
38 |
39 |
40 |
52 | ]]>
53 |
54 |
55 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-image-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
24 |
25 |
30 |
31 |
32 |
34 |
35 |
36 | ]]>
37 |
38 |
39 |
49 | ]]>
50 |
51 |
52 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-inlstruct-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
32 |
33 |
34 |
35 | ]]>
36 |
37 |
38 |
42 | ]]>
43 |
44 |
45 |
46 |
47 |
51 |
52 |
53 | ]]>
54 |
55 |
56 |
60 | ]]>
61 |
62 |
63 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-inlstyle-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
24 |
25 |
28 |
29 |
30 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-inputmode-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
30 |
33 |
34 |
35 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-link-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
35 |
36 |
37 |
38 |
39 |
41 |
42 |
43 | ]]>
44 |
45 |
46 |
57 | ]]>
58 |
59 |
60 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-meta-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
31 |
32 |
33 | ]]>
34 |
35 |
36 |
45 | ]]>
46 |
47 |
48 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-object-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
29 |
30 |
31 |
32 |
33 |
37 |
38 |
39 | ]]>
40 |
41 |
42 |
58 | ]]>
59 |
60 |
61 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-param-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
26 |
27 |
28 |
29 |
30 |
32 |
33 |
34 | ]]>
35 |
36 |
37 |
46 | ]]>
47 |
48 |
49 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-pres-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
23 |
24 |
25 |
29 | %xhtml-inlpres.mod;]]>
30 |
31 |
32 |
36 | %xhtml-blkpres.mod;]]>
37 |
38 |
39 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-script-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
26 |
27 |
28 |
29 |
30 |
32 |
33 |
34 | ]]>
35 |
36 |
37 |
47 | ]]>
48 |
49 |
50 |
51 |
52 |
56 |
57 |
58 | ]]>
59 |
60 |
61 |
65 | ]]>
66 |
67 |
68 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-ssismap-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
23 |
24 |
27 |
28 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-style-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
25 |
26 |
27 |
28 |
29 |
31 |
32 |
33 | ]]>
34 |
35 |
36 |
46 | ]]>
47 |
48 |
49 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-target-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
24 |
25 |
26 |
27 |
28 |
29 |
32 |
33 |
34 |
37 |
38 |
39 |
42 |
43 |
44 |
47 |
48 |
49 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/lv2specgen/DTD/xhtml-text-1.mod:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
18 |
23 |
24 |
25 |
29 | %xhtml-inlstruct.mod;]]>
30 |
31 |
32 |
36 | %xhtml-inlphras.mod;]]>
37 |
38 |
39 |
43 | %xhtml-blkstruct.mod;]]>
44 |
45 |
46 |
50 | %xhtml-blkphras.mod;]]>
51 |
52 |
53 |
--------------------------------------------------------------------------------
/make_screenshot.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 | # -*- coding: utf-8 -*-
3 |
4 | from modsdk.screenshot import run
5 |
6 | if __name__ == "__main__":
7 | run()
8 |
--------------------------------------------------------------------------------
/mod.lv2/manifest.ttl:
--------------------------------------------------------------------------------
1 | @prefix lv2: .
2 | @prefix rdfs: .
3 |
4 |
5 | a lv2:Specification ;
6 | lv2:minorVersion 1 ;
7 | lv2:microVersion 2 ;
8 | rdfs:seeAlso .
9 |
--------------------------------------------------------------------------------
/modgui.lv2/manifest.ttl:
--------------------------------------------------------------------------------
1 | @prefix lv2: .
2 | @prefix rdfs: .
3 |
4 |
5 | a lv2:Specification ;
6 | lv2:minorVersion 2 ;
7 | lv2:microVersion 0 ;
8 | rdfs:seeAlso .
9 |
--------------------------------------------------------------------------------
/modgui.lv2/modgui.doap.ttl:
--------------------------------------------------------------------------------
1 | @prefix dcs: .
2 | @prefix doap: .
3 | @prefix foaf: .
4 | @prefix rdfs: .
5 |
6 |
7 | a doap:Project ;
8 | doap:license ;
9 | doap:name "MOD GUI" ;
10 | doap:homepage ;
11 | doap:created "2013-05-03" ;
12 | doap:shortdesc "An LV2 extension to build HTML interfaces for audio plugins." ;
13 | doap:developer ,
14 | ;
15 | doap:maintainer ;
16 | doap:release [
17 | doap:revision "1.0" ;
18 | doap:created "2014-10-14" ;
19 | doap:file-release ;
20 | dcs:changeset [
21 | dcs:item [
22 | rdfs:label "First stable release."
23 | ]
24 | ]
25 | ] , [
26 | doap:revision "2.0" ;
27 | doap:created "2016-03-28" ;
28 | doap:file-release ;
29 | dcs:changeset [
30 | dcs:item [
31 | rdfs:label "Code rewrite and domain switch."
32 | ]
33 | ]
34 | ] .
35 |
36 |
37 | a foaf:Person ;
38 | foaf:name "Luis Fagundes";
39 | foaf:mbox .
40 |
41 |
42 | a foaf:Person ;
43 | foaf:name "Filipe Coelho" ;
44 | foaf:mbox .
45 |
--------------------------------------------------------------------------------
/modsdk/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mod-audio/mod-sdk/ba1e9be87b7cb50cf18169649b2cffa9c7dd2c9d/modsdk/__init__.py
--------------------------------------------------------------------------------
/modsdk/bundlemonitor.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 |
3 | import os, pyinotify
4 | from tornado import ioloop
5 | from modsdk.settings import LV2_DIR
6 |
7 | class EventHandler(pyinotify.ProcessEvent):
8 |
9 | def __init__(self, monitor):
10 | super(EventHandler, self).__init__()
11 | self.monitor = monitor
12 |
13 | def process_IN_CREATE(self, event):
14 | self.monitor.notify(event.pathname, event.maskname)
15 | if os.path.isdir(event.pathname):
16 | self.monitor.add_watch(event.pathname)
17 |
18 | def process_IN_DELETE(self, event):
19 | self.monitor.notify(event.pathname, event.maskname)
20 |
21 | def process_IN_CLOSE_WRITE(self, event):
22 | self.monitor.notify(event.pathname, event.maskname)
23 |
24 | class BundleMonitor:
25 |
26 | def __init__(self, callback):
27 | self.callback = callback
28 | self.watches = []
29 |
30 | self.mask = pyinotify.IN_DELETE | pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE
31 | self.wm = pyinotify.WatchManager()
32 | self.notifier = pyinotify.Notifier(self.wm, EventHandler(self), timeout=100)
33 |
34 | def monitor(self, bundle):
35 | self.clear()
36 | path = os.path.join(LV2_DIR, bundle)
37 | self.add_watch(path)
38 | self.schedule()
39 |
40 | def add_watch(self, path):
41 | watch = self.wm.add_watch(path, self.mask, rec=True)
42 | self.watches.append(watch)
43 |
44 | def notify(self, pathname, maskname = None):
45 | self.callback()
46 |
47 | def schedule(self):
48 | ioloop.IOLoop.instance().add_callback(self.check)
49 |
50 | def check(self):
51 | self.notifier.process_events()
52 | if self.notifier.check_events():
53 | self.notifier.read_events()
54 | if len(self.watches) > 0:
55 | self.schedule()
56 |
57 | def clear(self):
58 | while len(self.watches) > 0:
59 | watch = self.watches.pop()
60 | for path, handler in watch.items():
61 | if os.path.exists(path):
62 | self.wm.rm_watch(handler)
63 |
64 |
--------------------------------------------------------------------------------
/modsdk/settings.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 | # -*- coding: utf-8 -*-
3 |
4 | import os, sys
5 |
6 | CWD = sys.path[0]
7 |
8 | if not CWD:
9 | CWD = os.path.dirname(sys.argv[0])
10 | if os.path.isfile(CWD):
11 | CWD = os.path.dirname(CWD)
12 |
13 | if os.path.exists(os.path.join(CWD, 'html')):
14 | ROOT = CWD
15 | elif os.path.exists(os.path.join(CWD, '..', 'html')):
16 | ROOT = os.path.join(os.path.join(CWD, '..'))
17 | else:
18 | ROOT = os.path.join(sys.prefix, 'share', 'mod-sdk')
19 |
20 | PORT = 9000
21 | HTML_DIR = os.path.join(ROOT, 'html')
22 | WIZARD_DB = os.path.join(HTML_DIR, 'resources/wizard.json')
23 | TEMPLATE_DIR = os.path.join(HTML_DIR, 'resources/templates')
24 | DEFAULT_DEVICE = "http://localhost:8888"
25 | DEFAULT_ICON_TEMPLATE = os.path.join(HTML_DIR, 'resources/templates/pedal-default.html')
26 | DEFAULT_SETTINGS_TEMPLATE = os.path.join(HTML_DIR, 'resources/settings.html')
27 | DEFAULT_ICON_IMAGE = {
28 | 'thumbnail' : os.path.join(HTML_DIR, 'resources/pedals/default-thumbnail.png'),
29 | 'screenshot': os.path.join(HTML_DIR, 'resources/pedals/default-screenshot.png')
30 | }
31 | if os.path.exists('/usr/bin/phantomjs'):
32 | PHANTOM_BINARY = '/usr/bin/phantomjs'
33 | else:
34 | PHANTOM_BINARY = '/usr/local/bin/phantomjs'
35 | SCREENSHOT_SCRIPT = os.path.join(ROOT, 'screenshot.js')
36 | MAX_THUMB_WIDTH = 256
37 | MAX_THUMB_HEIGHT = 64
38 |
39 | CONFIG_DIR = os.getenv("MOD_DATA_DIR", os.path.expanduser("~/.local/share/mod-data"))
40 | CONFIG_FILE = os.path.join(CONFIG_DIR, "sdk-config.json")
41 |
42 | DEVICE_MODE = bool(int(os.getenv("MOD_DEVICE_MODE", 0)))
43 |
44 | LV2_PATH = os.getenv("LV2_PATH")
45 |
46 | if not LV2_PATH: # might be set but empty
47 | LV2_DIR = os.path.expanduser("~/.lv2")
48 | LV2_PATH = LV2_DIR + ":/usr/lib/lv2:/usr/local/lib/lv2"
49 | else:
50 | for path in LV2_PATH.split(":"):
51 | if os.access(path, os.W_OK):
52 | LV2_DIR = path
53 | break
54 | else:
55 | LV2_DIR = ""
56 |
57 | IMAGE_VERSION_PATH = os.environ.pop('MOD_IMAGE_VERSION_PATH', '/etc/mod-release/release')
58 |
59 | if os.path.isfile(IMAGE_VERSION_PATH):
60 | with open(IMAGE_VERSION_PATH, 'r') as fh:
61 | IMAGE_VERSION = fh.read().strip() or None
62 | else:
63 | IMAGE_VERSION = None
64 |
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | Pillow>=8.2.0
2 | tornado==4.3
3 | pyinotify
4 |
--------------------------------------------------------------------------------
/screenshot.js:
--------------------------------------------------------------------------------
1 | var page = require('webpage').create(),
2 | system = require('system'),
3 | address, output, size;
4 |
5 | if (system.args.length != 5) {
6 | console.log('Usage: screenshot.js URL filename [paperwidth*paperheight|paperformat] [zoom]');
7 | console.log(' paper (pdf output) examples: "5in*7.5in", "10cm*20cm", "A4", "Letter"');
8 | phantom.exit(1);
9 | } else {
10 | address = system.args[1];
11 | output = system.args[2];
12 | width = system.args[3];
13 | height = system.args[4];
14 | page.viewportSize = { width: width, height: height };
15 | page.open(address, function (status) {
16 | if (status !== 'success') {
17 | console.log('Unable to load the address!');
18 | phantom.exit();
19 | } else {
20 | window.setTimeout(function () {
21 | page.render(output);
22 | phantom.exit();
23 | }, 5000);
24 | }
25 | });
26 | }
27 |
--------------------------------------------------------------------------------
/utils/Makefile:
--------------------------------------------------------------------------------
1 |
2 | CXX ?= g++
3 |
4 | CXXFLAGS += -Wall -Wextra -Wshadow -std=gnu++0x -fPIC -O3 -Wno-deprecated-declarations
5 |
6 | ifneq ($(shell uname -s),Darwin)
7 | LDFLAGS += -Wl,-O1 -Wl,--no-undefined -Wl,--strip-all
8 | endif
9 |
10 | ifeq ($(shell pkg-config --atleast-version=0.22.0 lilv-0 && echo true), true)
11 | CXXFLAGS += -DHAVE_NEW_LILV
12 | endif
13 |
14 | all: build
15 |
16 | build: libmod_utils.so
17 |
18 | clean:
19 | rm -f *.so *.o
20 |
21 | libmod_utils.so: utils_lilv.cpp.o
22 | $(CXX) $^ $(LDFLAGS) -shared $(shell pkg-config --libs lilv-0) -o $@
23 |
24 | utils_lilv.cpp.o: utils_lilv.cpp utils.h
25 | $(CXX) $< $(CXXFLAGS) $(shell pkg-config --cflags lilv-0) -c -o $@
26 |
27 | test.cpp.o: test.cpp utils.h
28 | $(CXX) $< $(CXXFLAGS) -c -o $@
29 |
30 | test: utils_lilv.cpp.o test.cpp.o
31 | $(CXX) $^ $(LDFLAGS) $(shell pkg-config --libs lilv-0) -o $@
32 |
33 | test-run: test
34 | valgrind --leak-check=full --show-leak-kinds=all --partial-loads-ok=yes ./test
35 |
--------------------------------------------------------------------------------
/utils/test.cpp:
--------------------------------------------------------------------------------
1 | /*
2 | * MOD-SDK utilities
3 | * Copyright (C) 2015-2016 Filipe Coelho
4 | *
5 | * This program is free software; you can redistribute it and/or
6 | * modify it under the terms of the GNU General Public License as
7 | * published by the Free Software Foundation; either version 2 of
8 | * the License, or any later version.
9 | *
10 | * This program is distributed in the hope that it will be useful,
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | * GNU General Public License for more details.
14 | *
15 | * For a full copy of the GNU General Public License see the COPYING file.
16 | */
17 |
18 | #ifndef DEBUG
19 | #define DEBUG
20 | #endif
21 |
22 | #include "utils.h"
23 |
24 | #include
25 | #include
26 | #include
27 | #include
28 | #include
29 |
30 | void scanPlugins()
31 | {
32 | if (const char* const* const bundles = get_all_bundles())
33 | {
34 | for (int i=0; bundles[i] != nullptr; ++i)
35 | {
36 | if (const PluginInfo* const* const plugins = get_bundle_plugins(bundles[i]))
37 | {
38 | for (int j=0; plugins[j] != nullptr; ++j)
39 | {
40 | if (! plugins[j]->valid)
41 | {
42 | printf("Invalid plugin found\n");
43 | break;
44 | }
45 |
46 | assert(get_plugin_info(plugins[j]->uri) != nullptr);
47 | }
48 | }
49 | else
50 | {
51 | printf("null bundle found\n");
52 | break;
53 | }
54 | }
55 | }
56 | }
57 |
58 | int main()
59 | {
60 | init();
61 | scanPlugins();
62 | cleanup();
63 |
64 | return 0;
65 | }
66 |
--------------------------------------------------------------------------------