├── .gitignore ├── LICENSE ├── README.md ├── dev ├── TDComponents-0.1.229.toe ├── TDComponents-0.1.toe ├── config │ └── masks │ │ └── table_masks_surf1_v1.tsv └── recordings │ └── chopRecording0.chan ├── img ├── .DS_Store ├── Timecode.gif ├── Timecode.png ├── colorCurvesScreenshot.png └── masker_ui.jpg └── release ├── chop_recorder-v0.2.30.tox ├── color_curves-v3.0.0.tox ├── comper-v2.0.6.tox ├── hexler-v0.1.5.tox ├── masker-v0.6.4.tox ├── optimeister-v0.6.53.tox ├── playback-v0.2.38.tox ├── step_n_repeat-v1.0.2.tox └── timecode-v0.1.7.tox /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/README.md -------------------------------------------------------------------------------- /dev/TDComponents-0.1.229.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/dev/TDComponents-0.1.229.toe -------------------------------------------------------------------------------- /dev/TDComponents-0.1.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/dev/TDComponents-0.1.toe -------------------------------------------------------------------------------- /dev/config/masks/table_masks_surf1_v1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/dev/config/masks/table_masks_surf1_v1.tsv -------------------------------------------------------------------------------- /dev/recordings/chopRecording0.chan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/dev/recordings/chopRecording0.chan -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/Timecode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/img/Timecode.gif -------------------------------------------------------------------------------- /img/Timecode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/img/Timecode.png -------------------------------------------------------------------------------- /img/colorCurvesScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/img/colorCurvesScreenshot.png -------------------------------------------------------------------------------- /img/masker_ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/img/masker_ui.jpg -------------------------------------------------------------------------------- /release/chop_recorder-v0.2.30.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/chop_recorder-v0.2.30.tox -------------------------------------------------------------------------------- /release/color_curves-v3.0.0.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/color_curves-v3.0.0.tox -------------------------------------------------------------------------------- /release/comper-v2.0.6.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/comper-v2.0.6.tox -------------------------------------------------------------------------------- /release/hexler-v0.1.5.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/hexler-v0.1.5.tox -------------------------------------------------------------------------------- /release/masker-v0.6.4.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/masker-v0.6.4.tox -------------------------------------------------------------------------------- /release/optimeister-v0.6.53.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/optimeister-v0.6.53.tox -------------------------------------------------------------------------------- /release/playback-v0.2.38.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/playback-v0.2.38.tox -------------------------------------------------------------------------------- /release/step_n_repeat-v1.0.2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/step_n_repeat-v1.0.2.tox -------------------------------------------------------------------------------- /release/timecode-v0.1.7.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylanroscover/TDComponents/HEAD/release/timecode-v0.1.7.tox --------------------------------------------------------------------------------