├── .gitignore ├── Common ├── UbermapLibs.py ├── __init__.py ├── configobj.py └── test.py ├── Config ├── browser.cfg ├── devices.cfg └── global.cfg ├── Devices ├── Push │ └── __init__.py ├── Push2 │ └── __init__.py ├── README.md ├── UbermapDevices.py ├── UbermapDevicesPatches.py └── install.command ├── Example Configs ├── Aalto_703fa0717581c36bca45d7bba1bdb2f9.cfg ├── Cypher_755a0a7ca20b878a9d3c3b5d791b642b.cfg ├── Devastor_0eda44b85eb0c26d1fab12c2bfb3922a.cfg ├── Drumazon_612f85215e1a6a5a0569f369d3fc8191.cfg ├── FF Timeless 2_36a4aea0ddafa421d95316420d6007ff.cfg ├── LuSH-101_3bdd0c5e394b1732bd4de72571fc8a7a.cfg ├── Max MIDI Effect_86742a9aa7c78617f94e80f3ce65d488.cfg ├── Reaktor5_9c1425c4d9e6878ca148439e91cd63a6.cfg ├── Strobe_d12742b1df46815f693630017e9023ac.cfg └── TAL U-No-LX-V2 Plugin_569b7fdc31896910257c1367634d997b.cfg ├── Options.txt ├── Plugin Parameter Configs └── LuSH-101.shhpmap └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | working 2 | -------------------------------------------------------------------------------- /Common/UbermapLibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Common/UbermapLibs.py -------------------------------------------------------------------------------- /Common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/configobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Common/configobj.py -------------------------------------------------------------------------------- /Common/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Common/test.py -------------------------------------------------------------------------------- /Config/browser.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Config/browser.cfg -------------------------------------------------------------------------------- /Config/devices.cfg: -------------------------------------------------------------------------------- 1 | use_md5 = True -------------------------------------------------------------------------------- /Config/global.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Config/global.cfg -------------------------------------------------------------------------------- /Devices/Push/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/Push/__init__.py -------------------------------------------------------------------------------- /Devices/Push2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/Push2/__init__.py -------------------------------------------------------------------------------- /Devices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/README.md -------------------------------------------------------------------------------- /Devices/UbermapDevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/UbermapDevices.py -------------------------------------------------------------------------------- /Devices/UbermapDevicesPatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/UbermapDevicesPatches.py -------------------------------------------------------------------------------- /Devices/install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Devices/install.command -------------------------------------------------------------------------------- /Example Configs/Aalto_703fa0717581c36bca45d7bba1bdb2f9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Aalto_703fa0717581c36bca45d7bba1bdb2f9.cfg -------------------------------------------------------------------------------- /Example Configs/Cypher_755a0a7ca20b878a9d3c3b5d791b642b.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Cypher_755a0a7ca20b878a9d3c3b5d791b642b.cfg -------------------------------------------------------------------------------- /Example Configs/Devastor_0eda44b85eb0c26d1fab12c2bfb3922a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Devastor_0eda44b85eb0c26d1fab12c2bfb3922a.cfg -------------------------------------------------------------------------------- /Example Configs/Drumazon_612f85215e1a6a5a0569f369d3fc8191.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Drumazon_612f85215e1a6a5a0569f369d3fc8191.cfg -------------------------------------------------------------------------------- /Example Configs/FF Timeless 2_36a4aea0ddafa421d95316420d6007ff.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/FF Timeless 2_36a4aea0ddafa421d95316420d6007ff.cfg -------------------------------------------------------------------------------- /Example Configs/LuSH-101_3bdd0c5e394b1732bd4de72571fc8a7a.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/LuSH-101_3bdd0c5e394b1732bd4de72571fc8a7a.cfg -------------------------------------------------------------------------------- /Example Configs/Max MIDI Effect_86742a9aa7c78617f94e80f3ce65d488.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Max MIDI Effect_86742a9aa7c78617f94e80f3ce65d488.cfg -------------------------------------------------------------------------------- /Example Configs/Reaktor5_9c1425c4d9e6878ca148439e91cd63a6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Reaktor5_9c1425c4d9e6878ca148439e91cd63a6.cfg -------------------------------------------------------------------------------- /Example Configs/Strobe_d12742b1df46815f693630017e9023ac.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/Strobe_d12742b1df46815f693630017e9023ac.cfg -------------------------------------------------------------------------------- /Example Configs/TAL U-No-LX-V2 Plugin_569b7fdc31896910257c1367634d997b.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Example Configs/TAL U-No-LX-V2 Plugin_569b7fdc31896910257c1367634d997b.cfg -------------------------------------------------------------------------------- /Options.txt: -------------------------------------------------------------------------------- 1 | -_PluginAutoPopulateThreshold=128 -------------------------------------------------------------------------------- /Plugin Parameter Configs/LuSH-101.shhpmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/Plugin Parameter Configs/LuSH-101.shhpmap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomduncalf/ubermap/HEAD/README.md --------------------------------------------------------------------------------