├── .github ├── FUNDING.yml └── workflows │ └── Windows Build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── How_to_build.md ├── LICENSE ├── README.md ├── VST_Compatible_Logo_Steinberg_with_TM.png ├── cmake_output_log ├── resource ├── A6B5CA9F4C4F5B9388F837774504BD37_snapshot.png ├── A6B5CA9F4C4F5B9388F837774504BD37_snapshot_2.0x.png ├── JSIF_editor.uidesc ├── au-info.plist ├── knobs │ ├── IN_LED.knob │ ├── LED.knob │ ├── LED_FX.knob │ ├── OUT_LED.knob │ ├── knob_green.knob │ ├── knob_green.png │ ├── knob_red.knob │ ├── knob_red.png │ ├── oversample.knob │ └── untitled.knob ├── orig_LED_FX_OFF.png ├── orig_LED_FX_ON.png ├── orig_LED_OFF.png ├── orig_LED_ON.png ├── orig_LED_cover.png ├── orig_background.png ├── orig_button_onoff.png ├── orig_handle.png ├── orig_knob_green_.png ├── orig_knob_red_.png ├── twarch │ ├── knob_red.png │ ├── knob_red_.knob │ ├── knob_yellow.png │ ├── knob_yellow_.knob │ ├── rotary_knob_needle_0.png │ ├── twarch_background.png │ ├── twarch_btn_CLIP.png │ ├── twarch_btn_IN.png │ ├── twarch_btn_SPLIT.png │ ├── twarch_handle.png │ ├── twarch_knob_red_.png │ ├── twarch_knob_yellow_.png │ ├── twarch_meter_fx_on.png │ ├── twarch_meter_off.png │ └── twarch_meter_on.png ├── win32resource.aps └── win32resource.rc ├── screenshots ├── 8x_H_JS.png ├── 8x_H_RC.png ├── 8x_freq.png ├── 8x_phase_JS.png ├── 8x_phase_RC.png ├── Guide │ ├── 0-1.png │ ├── 1-1.png │ ├── 1-2.png │ ├── 2-1.png │ ├── 3-1.png │ ├── 3-2.png │ ├── 3-3.png │ ├── 3-4.png │ ├── 3-5.png │ ├── 3-6.png │ ├── 3-7.png │ ├── 3-8.png │ └── 4-1.png ├── OS_1x_Min.png ├── OS_2x_Lin.png ├── OS_2x_Min.png ├── OS_4x_Lin.png ├── OS_4x_Min.png ├── OS_8x_Lin.png ├── OS_8x_Min.png ├── screenshot.png ├── screenshot_both.png ├── screenshot_orig.png └── screenshot_twarch.png └── source ├── JSIF_cids.h ├── JSIF_controller.cpp ├── JSIF_controller.h ├── JSIF_entry.cpp ├── JSIF_processor.cpp ├── JSIF_processor.h ├── JSIF_shared.h └── version.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/Windows Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/.github/workflows/Windows Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /How_to_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/How_to_build.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/README.md -------------------------------------------------------------------------------- /VST_Compatible_Logo_Steinberg_with_TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/VST_Compatible_Logo_Steinberg_with_TM.png -------------------------------------------------------------------------------- /cmake_output_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/cmake_output_log -------------------------------------------------------------------------------- /resource/A6B5CA9F4C4F5B9388F837774504BD37_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/A6B5CA9F4C4F5B9388F837774504BD37_snapshot.png -------------------------------------------------------------------------------- /resource/A6B5CA9F4C4F5B9388F837774504BD37_snapshot_2.0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/A6B5CA9F4C4F5B9388F837774504BD37_snapshot_2.0x.png -------------------------------------------------------------------------------- /resource/JSIF_editor.uidesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/JSIF_editor.uidesc -------------------------------------------------------------------------------- /resource/au-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/au-info.plist -------------------------------------------------------------------------------- /resource/knobs/IN_LED.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/IN_LED.knob -------------------------------------------------------------------------------- /resource/knobs/LED.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/LED.knob -------------------------------------------------------------------------------- /resource/knobs/LED_FX.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/LED_FX.knob -------------------------------------------------------------------------------- /resource/knobs/OUT_LED.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/OUT_LED.knob -------------------------------------------------------------------------------- /resource/knobs/knob_green.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/knob_green.knob -------------------------------------------------------------------------------- /resource/knobs/knob_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/knob_green.png -------------------------------------------------------------------------------- /resource/knobs/knob_red.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/knob_red.knob -------------------------------------------------------------------------------- /resource/knobs/knob_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/knob_red.png -------------------------------------------------------------------------------- /resource/knobs/oversample.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/oversample.knob -------------------------------------------------------------------------------- /resource/knobs/untitled.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/knobs/untitled.knob -------------------------------------------------------------------------------- /resource/orig_LED_FX_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_LED_FX_OFF.png -------------------------------------------------------------------------------- /resource/orig_LED_FX_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_LED_FX_ON.png -------------------------------------------------------------------------------- /resource/orig_LED_OFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_LED_OFF.png -------------------------------------------------------------------------------- /resource/orig_LED_ON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_LED_ON.png -------------------------------------------------------------------------------- /resource/orig_LED_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_LED_cover.png -------------------------------------------------------------------------------- /resource/orig_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_background.png -------------------------------------------------------------------------------- /resource/orig_button_onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_button_onoff.png -------------------------------------------------------------------------------- /resource/orig_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_handle.png -------------------------------------------------------------------------------- /resource/orig_knob_green_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_knob_green_.png -------------------------------------------------------------------------------- /resource/orig_knob_red_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/orig_knob_red_.png -------------------------------------------------------------------------------- /resource/twarch/knob_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/knob_red.png -------------------------------------------------------------------------------- /resource/twarch/knob_red_.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/knob_red_.knob -------------------------------------------------------------------------------- /resource/twarch/knob_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/knob_yellow.png -------------------------------------------------------------------------------- /resource/twarch/knob_yellow_.knob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/knob_yellow_.knob -------------------------------------------------------------------------------- /resource/twarch/rotary_knob_needle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/rotary_knob_needle_0.png -------------------------------------------------------------------------------- /resource/twarch/twarch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_background.png -------------------------------------------------------------------------------- /resource/twarch/twarch_btn_CLIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_btn_CLIP.png -------------------------------------------------------------------------------- /resource/twarch/twarch_btn_IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_btn_IN.png -------------------------------------------------------------------------------- /resource/twarch/twarch_btn_SPLIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_btn_SPLIT.png -------------------------------------------------------------------------------- /resource/twarch/twarch_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_handle.png -------------------------------------------------------------------------------- /resource/twarch/twarch_knob_red_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_knob_red_.png -------------------------------------------------------------------------------- /resource/twarch/twarch_knob_yellow_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_knob_yellow_.png -------------------------------------------------------------------------------- /resource/twarch/twarch_meter_fx_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_meter_fx_on.png -------------------------------------------------------------------------------- /resource/twarch/twarch_meter_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_meter_off.png -------------------------------------------------------------------------------- /resource/twarch/twarch_meter_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/twarch/twarch_meter_on.png -------------------------------------------------------------------------------- /resource/win32resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/win32resource.aps -------------------------------------------------------------------------------- /resource/win32resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/resource/win32resource.rc -------------------------------------------------------------------------------- /screenshots/8x_H_JS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/8x_H_JS.png -------------------------------------------------------------------------------- /screenshots/8x_H_RC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/8x_H_RC.png -------------------------------------------------------------------------------- /screenshots/8x_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/8x_freq.png -------------------------------------------------------------------------------- /screenshots/8x_phase_JS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/8x_phase_JS.png -------------------------------------------------------------------------------- /screenshots/8x_phase_RC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/8x_phase_RC.png -------------------------------------------------------------------------------- /screenshots/Guide/0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/0-1.png -------------------------------------------------------------------------------- /screenshots/Guide/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/1-1.png -------------------------------------------------------------------------------- /screenshots/Guide/1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/1-2.png -------------------------------------------------------------------------------- /screenshots/Guide/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/2-1.png -------------------------------------------------------------------------------- /screenshots/Guide/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-1.png -------------------------------------------------------------------------------- /screenshots/Guide/3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-2.png -------------------------------------------------------------------------------- /screenshots/Guide/3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-3.png -------------------------------------------------------------------------------- /screenshots/Guide/3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-4.png -------------------------------------------------------------------------------- /screenshots/Guide/3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-5.png -------------------------------------------------------------------------------- /screenshots/Guide/3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-6.png -------------------------------------------------------------------------------- /screenshots/Guide/3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-7.png -------------------------------------------------------------------------------- /screenshots/Guide/3-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/3-8.png -------------------------------------------------------------------------------- /screenshots/Guide/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/Guide/4-1.png -------------------------------------------------------------------------------- /screenshots/OS_1x_Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_1x_Min.png -------------------------------------------------------------------------------- /screenshots/OS_2x_Lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_2x_Lin.png -------------------------------------------------------------------------------- /screenshots/OS_2x_Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_2x_Min.png -------------------------------------------------------------------------------- /screenshots/OS_4x_Lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_4x_Lin.png -------------------------------------------------------------------------------- /screenshots/OS_4x_Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_4x_Min.png -------------------------------------------------------------------------------- /screenshots/OS_8x_Lin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_8x_Lin.png -------------------------------------------------------------------------------- /screenshots/OS_8x_Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/OS_8x_Min.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /screenshots/screenshot_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/screenshot_both.png -------------------------------------------------------------------------------- /screenshots/screenshot_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/screenshot_orig.png -------------------------------------------------------------------------------- /screenshots/screenshot_twarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/screenshots/screenshot_twarch.png -------------------------------------------------------------------------------- /source/JSIF_cids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_cids.h -------------------------------------------------------------------------------- /source/JSIF_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_controller.cpp -------------------------------------------------------------------------------- /source/JSIF_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_controller.h -------------------------------------------------------------------------------- /source/JSIF_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_entry.cpp -------------------------------------------------------------------------------- /source/JSIF_processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_processor.cpp -------------------------------------------------------------------------------- /source/JSIF_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_processor.h -------------------------------------------------------------------------------- /source/JSIF_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/JSIF_shared.h -------------------------------------------------------------------------------- /source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kiriki-liszt/JS_Inflator/HEAD/source/version.h --------------------------------------------------------------------------------