├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── client ├── css │ ├── FontAwesome │ │ └── font-awesome.min.css │ ├── app_cm.css │ ├── app_fs.css │ ├── codemirror │ │ ├── addon │ │ │ ├── display │ │ │ │ └── fullscreen.css │ │ │ ├── scroll │ │ │ │ └── simplescrollbars.css │ │ │ └── search │ │ │ │ └── matchesonscrollbar.css │ │ ├── codemirror.css │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── abcdef.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── ayu-dark.css │ │ │ ├── ayu-mirage.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── bespin.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── colorforth.css │ │ │ ├── darcula.css │ │ │ ├── dracula.css │ │ │ ├── duotone-dark.css │ │ │ ├── duotone-light.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── gruvbox-dark.css │ │ │ ├── hopscotch.css │ │ │ ├── icecoder.css │ │ │ ├── idea.css │ │ │ ├── isotope.css │ │ │ ├── lesser-dark.css │ │ │ ├── liquibyte.css │ │ │ ├── lucario.css │ │ │ ├── material-darker.css │ │ │ ├── material-ocean.css │ │ │ ├── material-palenight.css │ │ │ ├── material.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── moxer.css │ │ │ ├── neat.css │ │ │ ├── neo.css │ │ │ ├── night.css │ │ │ ├── nord.css │ │ │ ├── oceanic-next.css │ │ │ ├── panda-syntax.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── railscasts.css │ │ │ ├── rubyblue.css │ │ │ ├── seti.css │ │ │ ├── shadowfox.css │ │ │ ├── solarized.css │ │ │ ├── ssms.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── ttcn.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ ├── xq-light.css │ │ │ ├── yeti.css │ │ │ ├── yonce.css │ │ │ └── zenburn.css │ ├── electron.css │ ├── icons.css │ ├── normalize │ │ └── normalize.css │ ├── wui.css │ └── wui │ │ └── wui.min.css ├── data │ ├── OpenSans-Regular.woff │ ├── brushes │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── pixel.png │ ├── dark-tire.png │ ├── examples │ │ ├── additive bitcrush.glsl │ │ ├── additive feedback.glsl │ │ ├── additive input.glsl │ │ ├── additive midi 2.glsl │ │ ├── additive midi.glsl │ │ ├── additive noise.glsl │ │ ├── additive ws.glsl │ │ ├── additive.glsl │ │ ├── bandpass.glsl │ │ ├── droplet.glsl │ │ ├── faust.glsl │ │ ├── fm.glsl │ │ ├── formant.glsl │ │ ├── gfx 0 input tiling.glsl │ │ ├── gfx 1 crossfade.glsl │ │ ├── gfx 2 polar.glsl │ │ ├── gfx 3 edge detect.glsl │ │ ├── gfx 4 blur.glsl │ │ ├── gfx 5 tunnel.glsl │ │ ├── gfx 6 horizon.glsl │ │ ├── granular.glsl │ │ ├── in.glsl │ │ ├── karplus-strong 2.glsl │ │ ├── karplus-strong.glsl │ │ ├── metal.glsl │ │ ├── midi delay.glsl │ │ ├── midi portamento.glsl │ │ ├── modal.glsl │ │ ├── modulation.glsl │ │ ├── multitimbral midi.glsl │ │ ├── phase distorsion.glsl │ │ ├── shadertoy.glsl │ │ ├── spectral resynth.glsl │ │ ├── spectral synthesis.glsl │ │ ├── string resonance.glsl │ │ ├── subtractive.glsl │ │ └── wavetable.glsl │ ├── fs.png │ ├── fsynth.png │ ├── fsynth2.png │ ├── fsynth_1024_logo.png │ ├── fsyntha.png │ ├── guide │ │ └── fs.png │ ├── inconsolata.woff │ ├── logo.png │ ├── md │ │ ├── pjs.md │ │ ├── quickstart.md │ │ └── uniforms.md │ ├── noise.png │ ├── shirt.png │ └── ui-icons │ │ ├── README.md │ │ ├── all.png │ │ ├── audio_file.png │ │ ├── brush.png │ │ ├── camera.png │ │ ├── code.png │ │ ├── controls.png │ │ ├── cross45.png │ │ ├── desktop.png │ │ ├── detach.png │ │ ├── dice.png │ │ ├── discuss.png │ │ ├── eraser.png │ │ ├── fs.png │ │ ├── function.png │ │ ├── fx.png │ │ ├── gear.png │ │ ├── help.png │ │ ├── image_file.png │ │ ├── join.png │ │ ├── lock_x.png │ │ ├── lock_y.png │ │ ├── mic.png │ │ ├── midi.png │ │ ├── minus_symbolic.png │ │ ├── mul_symbolic.png │ │ ├── mute.png │ │ ├── osc.png │ │ ├── paint_brush.png │ │ ├── pause.png │ │ ├── pjs.png │ │ ├── play.png │ │ ├── plus.png │ │ ├── plus_symbolic.png │ │ ├── record.png │ │ ├── replace.png │ │ ├── reset.png │ │ ├── reset2.png │ │ ├── save.png │ │ ├── shadertoy.png │ │ ├── share.png │ │ ├── spectrum.png │ │ ├── stop.png │ │ ├── trash.png │ │ ├── unmute.png │ │ ├── unused │ │ └── midi.png │ │ ├── users.png │ │ ├── video.png │ │ ├── video_none.png │ │ └── xyf.png ├── dist │ ├── cm.css │ ├── cm.js │ ├── cm.min.css │ ├── cm.min.js │ ├── fs.css │ ├── fs.js │ ├── fs.min.css │ ├── fs.min.js │ └── worker │ │ ├── FFTW.wasm │ │ ├── audio_renderer.js │ │ ├── audio_renderer.min.js │ │ ├── audio_to_image.js │ │ ├── audio_to_image.min.js │ │ ├── fas.js │ │ ├── fas.min.js │ │ ├── fragment_worklet.js │ │ ├── fragment_worklet.min.js │ │ ├── image_processor.js │ │ ├── image_processor.min.js │ │ ├── image_to_audio.js │ │ ├── image_to_audio.min.js │ │ ├── notes_buffer.js │ │ ├── notes_buffer.min.js │ │ ├── notes_renderer.js │ │ ├── notes_renderer.min.js │ │ ├── osc.js │ │ ├── osc.min.js │ │ ├── parse_glsl.js │ │ ├── parse_glsl.min.js │ │ ├── recorder.js │ │ └── recorder.min.js ├── dl │ ├── fas-sha3.txt │ ├── ffs-sha3.txt │ └── osc-relay-sha3.txt ├── favicon.ico ├── favicon.png ├── favicon_128x128.png ├── favicon_256x256.png ├── favicon_64x64.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── index.html ├── js │ ├── app_cm.js │ ├── app_fs.js │ ├── audio.js │ ├── audio_import.js │ ├── brushes.js │ ├── canvas_input.js │ ├── ccwt │ │ ├── ccwt.js │ │ └── fftw │ │ │ ├── COPYING │ │ │ └── FFTW.wasm │ ├── clipboard │ │ └── clipboard.min.js │ ├── codemirror │ │ ├── addon │ │ │ ├── display │ │ │ │ └── fullscreen.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ └── matchbrackets.js │ │ │ ├── scroll │ │ │ │ ├── annotatescrollbar.js │ │ │ │ └── simplescrollbars.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ └── searchcursor.js │ │ │ └── selection │ │ │ │ └── active-line.js │ │ ├── codemirror.js │ │ └── mode │ │ │ ├── clike.js │ │ │ ├── glsl.js │ │ │ └── javascript.js │ ├── config.js │ ├── db.js │ ├── discuss.js │ ├── dsp.js │ │ └── dsp.js │ ├── editor.js │ ├── events.js │ ├── export.js │ ├── fas.js │ ├── file_import.js │ ├── file_manager.js │ ├── filesaver │ │ └── FileSaver.min.js │ ├── glsl.js │ ├── graphics.js │ ├── guide.js │ ├── image_import.js │ ├── inputs.js │ ├── leaderline │ │ └── leader-line.min.js │ ├── midi.js │ ├── mpe.js │ │ ├── LICENSE.txt │ │ ├── mpe.js │ │ └── mpe.min.js │ ├── network.js │ ├── notification.js │ ├── osc.js │ │ └── osc-browser.js │ ├── osc_handler.js │ ├── paint.js │ ├── peglsl │ │ └── glsl.js │ ├── pjs.js │ ├── plainoverlay │ │ └── plain-overlay.min.js │ ├── processing.js │ │ └── processing.min.js │ ├── resize_throttler │ │ └── resize_throttler.js │ ├── sharedb │ │ ├── ot-text.js │ │ └── sharedb.js │ ├── showdown │ │ └── showdown.min.js │ ├── slices.js │ ├── tools.js │ ├── transports.js │ ├── ui.js │ ├── worker │ │ ├── audio_renderer.js │ │ ├── audio_to_image.js │ │ ├── fas.js │ │ ├── image_processor.js │ │ ├── notes_buffer.js │ │ ├── notes_renderer.js │ │ ├── osc.js │ │ ├── parse_glsl.js │ │ └── recorder.js │ ├── workspace.js │ └── wui │ │ ├── wui.js │ │ └── wui.min.js ├── manifest.json ├── nutbuild ├── pynutbuild ├── pynutbuild_worker └── svg │ ├── logo.svg │ ├── logo2.svg │ └── wave.svg ├── common.js ├── documentation ├── audio │ ├── fsynth_adsr.ogg │ ├── fsynth_ar.ogg │ ├── fsynth_ar2.ogg │ ├── fsynth_attenuation.ogg │ ├── fsynth_filters.ogg │ ├── fsynth_fundamental.ogg │ ├── fsynth_harmonics.ogg │ ├── fsynth_lpf.ogg │ ├── fsynth_lpf_mod.ogg │ ├── fsynth_midi.ogg │ ├── fsynth_morph.ogg │ ├── fsynth_pulsewave.ogg │ ├── fsynth_sequence.ogg │ └── fsynth_square.ogg ├── basis.maml ├── build ├── documentation ├── documentation.html ├── fragment_documentation.pdf ├── gif │ ├── add_slices.gif │ ├── add_slices.png │ ├── analysis_dialog.gif │ ├── analysis_dialog.png │ ├── dialog_resize.gif │ ├── dialog_resize.png │ ├── dragging_slices.gif │ ├── dragging_slices.png │ ├── fragment_documentation.pdf │ ├── fragment_input.gif │ ├── fragment_input.png │ ├── freq_details.gif │ ├── freq_details.png │ ├── glsl_inline_report.gif │ ├── glsl_inline_report.png │ ├── input_reorder.gif │ ├── input_reorder.png │ ├── mute_slice.gif │ ├── mute_slice.png │ ├── remove_slices.gif │ ├── remove_slices.png │ ├── slice_settings.gif │ └── slice_settings.png ├── images │ ├── dialog_actions.png │ ├── fsynth_ui.png │ ├── homepage_sessions.png │ ├── import.png │ ├── impulse.png │ ├── lpf.png │ ├── midi_learn.png │ ├── midi_settings.png │ ├── paint_toolbox.png │ ├── possibilities.png │ ├── sequence.png │ ├── session_chat.png │ ├── settings.png │ ├── slice_settings.png │ ├── toolbar.png │ └── ui_help.png ├── mk │ ├── docs │ │ ├── audio_server.md │ │ ├── camera_import.md │ │ ├── canvas_import.md │ │ ├── concept.md │ │ ├── credits.md │ │ ├── dsk_import.md │ │ ├── favicon.ico │ │ ├── getting_started.md │ │ ├── gifs │ │ │ ├── canvas.gif │ │ │ ├── canvas_input.gif │ │ │ ├── dialog_resize.gif │ │ │ ├── dragging_slices.gif │ │ │ ├── freq_details.gif │ │ │ ├── glsl_inline_report.gif │ │ │ ├── image_import.gif │ │ │ ├── input_reorder.gif │ │ │ ├── mute_slice.gif │ │ │ └── remove_slices.gif │ │ ├── glsl.md │ │ ├── graphics.md │ │ ├── images │ │ │ ├── audio_import_settings.png │ │ │ ├── canvas.png │ │ │ ├── canvas_settings.png │ │ │ ├── dialog_actions.png │ │ │ ├── fas_settings.png │ │ │ ├── frequency_map.png │ │ │ ├── homepage_sessions.png │ │ │ ├── image_settings.png │ │ │ ├── import_dialog.png │ │ │ ├── impulse.png │ │ │ ├── info_bar.png │ │ │ ├── lpf.png │ │ │ ├── midi_learn.png │ │ │ ├── pjs.png │ │ │ ├── possibilities.png │ │ │ ├── record.png │ │ │ ├── settings.png │ │ │ ├── slice_settings.png │ │ │ ├── toolbar.png │ │ │ └── ui_help.png │ │ ├── images_import.md │ │ ├── import.md │ │ ├── index.md │ │ ├── instruments.md │ │ ├── mic_import.md │ │ ├── midi.md │ │ ├── osc.md │ │ ├── pjs_import.md │ │ ├── record_dialog.md │ │ ├── sessions.md │ │ ├── settings.md │ │ ├── sounds_import.md │ │ ├── tools.md │ │ ├── tutorials │ │ │ ├── effects.md │ │ │ ├── envelopes.md │ │ │ ├── feedback.md │ │ │ ├── filters.md │ │ │ ├── fundamental.md │ │ │ ├── gifs │ │ │ │ ├── canvas.gif │ │ │ │ ├── canvas_input.gif │ │ │ │ ├── dialog_resize.gif │ │ │ │ ├── dragging_slices.gif │ │ │ │ ├── freq_details.gif │ │ │ │ ├── glsl_inline_report.gif │ │ │ │ ├── image_import.gif │ │ │ │ ├── input_reorder.gif │ │ │ │ ├── mute_slice.gif │ │ │ │ └── remove_slices.gif │ │ │ ├── images │ │ │ │ ├── audio_import_settings.png │ │ │ │ ├── canvas.png │ │ │ │ ├── canvas_settings.png │ │ │ │ ├── dialog_actions.png │ │ │ │ ├── fas_settings.png │ │ │ │ ├── fgl.png │ │ │ │ ├── frequency_map.png │ │ │ │ ├── homepage_sessions.png │ │ │ │ ├── image_settings.png │ │ │ │ ├── import_dialog.png │ │ │ │ ├── impulse.png │ │ │ │ ├── info_bar.png │ │ │ │ ├── lpf.png │ │ │ │ ├── midi_learn.png │ │ │ │ ├── pjs.png │ │ │ │ ├── possibilities.png │ │ │ │ ├── record.png │ │ │ │ ├── slice_settings.png │ │ │ │ ├── toolbar.png │ │ │ │ └── ui_help.png │ │ │ ├── multitimbrality.md │ │ │ ├── partials.md │ │ │ ├── time_axis.md │ │ │ └── waveforms.md │ │ ├── ui.md │ │ └── videos_import.md │ └── mkdocs.yml ├── pdf │ ├── webgl1_glsl_1.pdf │ ├── webgl1_glsl_2.pdf │ ├── webgl2_glsl_1.pdf │ ├── webgl2_glsl_2.pdf │ └── webgl2_glsl_3.pdf └── png │ └── fJCBv8mOl-C9YgjNVFHoP3ypseu8.png ├── editor ├── README.md ├── css │ ├── app_ed.css │ ├── codemirror │ │ ├── addon │ │ │ ├── display │ │ │ │ └── fullscreen.css │ │ │ ├── scroll │ │ │ │ └── simplescrollbars.css │ │ │ └── search │ │ │ │ └── matchesonscrollbar.css │ │ ├── codemirror.css │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── abcdef.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── bespin.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── colorforth.css │ │ │ ├── dracula.css │ │ │ ├── duotone-dark.css │ │ │ ├── duotone-light.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── hopscotch.css │ │ │ ├── icecoder.css │ │ │ ├── isotope.css │ │ │ ├── lesser-dark.css │ │ │ ├── liquibyte.css │ │ │ ├── material.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── neo.css │ │ │ ├── night.css │ │ │ ├── panda-syntax.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── railscasts.css │ │ │ ├── rubyblue.css │ │ │ ├── seti.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── ttcn.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ ├── xq-light.css │ │ │ ├── yeti.css │ │ │ └── zenburn.css │ └── normalize │ │ └── normalize.css ├── dist │ ├── ed.css │ ├── ed.js │ ├── ed.min.css │ └── ed.min.js ├── favicon.png ├── index.html ├── js │ ├── app_ed.js │ ├── codemirror │ │ ├── addon │ │ │ ├── display │ │ │ │ └── fullscreen.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ └── matchbrackets.js │ │ │ ├── scroll │ │ │ │ ├── annotatescrollbar.js │ │ │ │ └── simplescrollbars.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ └── searchcursor.js │ │ │ └── selection │ │ │ │ └── active-line.js │ │ ├── codemirror.js │ │ ├── codemirror_glsl.js │ │ └── mode │ │ │ └── javascript.js │ ├── config.js │ ├── network.js │ └── sharedb │ │ ├── ot-text.js │ │ └── sharedb.js ├── nutbuild └── pynutbuild ├── fas_relay ├── README.md ├── fas_relay.js ├── package.json └── simulation.htm ├── ffs ├── README.md ├── ffs.js └── package.json ├── fsdb ├── fsdb.js └── package.json ├── fss ├── fss.js └── package.json ├── fsws ├── fsws.js └── package.json ├── osc_relay ├── osc_relay.js └── package.json ├── package.json ├── prod ├── prod_files ├── scripts ├── db_cleanup.js └── package.json ├── setup ├── supercollider └── fs.scd └── www ├── css ├── FontAwesome │ └── fontawesome.min.css ├── Skeleton │ ├── normalize.css │ └── skeleton.css ├── WUI_CircularMenu │ └── skeleton │ │ └── wui_circular_menu.min.css ├── app_fp.css └── icons.css ├── data ├── OpenSans-Bold.ttf ├── OpenSans-Italic.ttf ├── OpenSans-Regular.ttf ├── Raleway-Regular.ttf ├── bg.jpg ├── btn_donate_LG.gif ├── fork_me.png ├── fsynth_1024_logo.png ├── icons │ ├── join.png │ └── trash.png ├── logo.png ├── logo_continuous.png ├── patron.png ├── pixel.gif └── raspberry-pi-logo.png ├── dist ├── fp.css ├── fp.js ├── fp.min.css └── fp.min.js ├── favicon.ico ├── favicon.png ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── index.html ├── js ├── WUI_CircularMenu │ └── wui_circular_menu.min.js ├── app_fp.js ├── docReady │ └── docready.js └── main.js ├── nutbuild ├── pynutbuild └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/README.md -------------------------------------------------------------------------------- /client/css/FontAwesome/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/FontAwesome/font-awesome.min.css -------------------------------------------------------------------------------- /client/css/app_cm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/app_cm.css -------------------------------------------------------------------------------- /client/css/app_fs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/app_fs.css -------------------------------------------------------------------------------- /client/css/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/addon/display/fullscreen.css -------------------------------------------------------------------------------- /client/css/codemirror/addon/scroll/simplescrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/addon/scroll/simplescrollbars.css -------------------------------------------------------------------------------- /client/css/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/addon/search/matchesonscrollbar.css -------------------------------------------------------------------------------- /client/css/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/codemirror.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/3024-day.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/3024-night.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/abcdef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/abcdef.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ambiance-mobile.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ambiance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ambiance.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ayu-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ayu-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ayu-mirage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ayu-mirage.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/base16-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/base16-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/base16-light.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/bespin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/bespin.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/blackboard.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/colorforth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/colorforth.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/darcula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/darcula.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/dracula.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/duotone-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/duotone-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/duotone-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/duotone-light.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/erlang-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/gruvbox-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/hopscotch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/hopscotch.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/icecoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/icecoder.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/idea.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/isotope.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/isotope.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/lesser-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/liquibyte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/liquibyte.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/lucario.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/lucario.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/material-darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/material-darker.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/material-ocean.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/material-ocean.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/material-palenight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/material-palenight.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/material.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/mbo.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/mdn-like.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/midnight.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/moxer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/moxer.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/neat.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/neo.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/night.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/nord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/nord.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/oceanic-next.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/oceanic-next.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/panda-syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/panda-syntax.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/paraiso-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/paraiso-light.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/pastel-on-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/pastel-on-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/railscasts.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/seti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/seti.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/shadowfox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/shadowfox.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/solarized.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ssms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ssms.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/the-matrix.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/tomorrow-night-bright.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/ttcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/ttcn.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/twilight.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/vibrant-ink.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/xq-light.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/yeti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/yeti.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/yonce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/yonce.css -------------------------------------------------------------------------------- /client/css/codemirror/theme/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/codemirror/theme/zenburn.css -------------------------------------------------------------------------------- /client/css/electron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/electron.css -------------------------------------------------------------------------------- /client/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/icons.css -------------------------------------------------------------------------------- /client/css/normalize/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/normalize/normalize.css -------------------------------------------------------------------------------- /client/css/wui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/wui.css -------------------------------------------------------------------------------- /client/css/wui/wui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/css/wui/wui.min.css -------------------------------------------------------------------------------- /client/data/OpenSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/OpenSans-Regular.woff -------------------------------------------------------------------------------- /client/data/brushes/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/1.png -------------------------------------------------------------------------------- /client/data/brushes/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/10.png -------------------------------------------------------------------------------- /client/data/brushes/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/11.png -------------------------------------------------------------------------------- /client/data/brushes/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/12.png -------------------------------------------------------------------------------- /client/data/brushes/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/13.png -------------------------------------------------------------------------------- /client/data/brushes/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/14.png -------------------------------------------------------------------------------- /client/data/brushes/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/15.png -------------------------------------------------------------------------------- /client/data/brushes/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/16.png -------------------------------------------------------------------------------- /client/data/brushes/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/17.png -------------------------------------------------------------------------------- /client/data/brushes/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/18.png -------------------------------------------------------------------------------- /client/data/brushes/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/19.png -------------------------------------------------------------------------------- /client/data/brushes/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/2.png -------------------------------------------------------------------------------- /client/data/brushes/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/3.png -------------------------------------------------------------------------------- /client/data/brushes/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/4.png -------------------------------------------------------------------------------- /client/data/brushes/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/5.png -------------------------------------------------------------------------------- /client/data/brushes/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/6.png -------------------------------------------------------------------------------- /client/data/brushes/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/7.png -------------------------------------------------------------------------------- /client/data/brushes/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/8.png -------------------------------------------------------------------------------- /client/data/brushes/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/9.png -------------------------------------------------------------------------------- /client/data/brushes/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/brushes/pixel.png -------------------------------------------------------------------------------- /client/data/dark-tire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/dark-tire.png -------------------------------------------------------------------------------- /client/data/examples/additive bitcrush.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive bitcrush.glsl -------------------------------------------------------------------------------- /client/data/examples/additive feedback.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive feedback.glsl -------------------------------------------------------------------------------- /client/data/examples/additive input.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive input.glsl -------------------------------------------------------------------------------- /client/data/examples/additive midi 2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive midi 2.glsl -------------------------------------------------------------------------------- /client/data/examples/additive midi.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive midi.glsl -------------------------------------------------------------------------------- /client/data/examples/additive noise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive noise.glsl -------------------------------------------------------------------------------- /client/data/examples/additive ws.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive ws.glsl -------------------------------------------------------------------------------- /client/data/examples/additive.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/additive.glsl -------------------------------------------------------------------------------- /client/data/examples/bandpass.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/bandpass.glsl -------------------------------------------------------------------------------- /client/data/examples/droplet.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/droplet.glsl -------------------------------------------------------------------------------- /client/data/examples/faust.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/faust.glsl -------------------------------------------------------------------------------- /client/data/examples/fm.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/fm.glsl -------------------------------------------------------------------------------- /client/data/examples/formant.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/formant.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 0 input tiling.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 0 input tiling.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 1 crossfade.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 1 crossfade.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 2 polar.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 2 polar.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 3 edge detect.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 3 edge detect.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 4 blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 4 blur.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 5 tunnel.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 5 tunnel.glsl -------------------------------------------------------------------------------- /client/data/examples/gfx 6 horizon.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/gfx 6 horizon.glsl -------------------------------------------------------------------------------- /client/data/examples/granular.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/granular.glsl -------------------------------------------------------------------------------- /client/data/examples/in.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/in.glsl -------------------------------------------------------------------------------- /client/data/examples/karplus-strong 2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/karplus-strong 2.glsl -------------------------------------------------------------------------------- /client/data/examples/karplus-strong.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/karplus-strong.glsl -------------------------------------------------------------------------------- /client/data/examples/metal.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/metal.glsl -------------------------------------------------------------------------------- /client/data/examples/midi delay.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/midi delay.glsl -------------------------------------------------------------------------------- /client/data/examples/midi portamento.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/midi portamento.glsl -------------------------------------------------------------------------------- /client/data/examples/modal.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/modal.glsl -------------------------------------------------------------------------------- /client/data/examples/modulation.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/modulation.glsl -------------------------------------------------------------------------------- /client/data/examples/multitimbral midi.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/multitimbral midi.glsl -------------------------------------------------------------------------------- /client/data/examples/phase distorsion.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/phase distorsion.glsl -------------------------------------------------------------------------------- /client/data/examples/shadertoy.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/shadertoy.glsl -------------------------------------------------------------------------------- /client/data/examples/spectral resynth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/spectral resynth.glsl -------------------------------------------------------------------------------- /client/data/examples/spectral synthesis.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/spectral synthesis.glsl -------------------------------------------------------------------------------- /client/data/examples/string resonance.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/string resonance.glsl -------------------------------------------------------------------------------- /client/data/examples/subtractive.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/subtractive.glsl -------------------------------------------------------------------------------- /client/data/examples/wavetable.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/examples/wavetable.glsl -------------------------------------------------------------------------------- /client/data/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/fs.png -------------------------------------------------------------------------------- /client/data/fsynth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/fsynth.png -------------------------------------------------------------------------------- /client/data/fsynth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/fsynth2.png -------------------------------------------------------------------------------- /client/data/fsynth_1024_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/fsynth_1024_logo.png -------------------------------------------------------------------------------- /client/data/fsyntha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/fsyntha.png -------------------------------------------------------------------------------- /client/data/guide/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/guide/fs.png -------------------------------------------------------------------------------- /client/data/inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/inconsolata.woff -------------------------------------------------------------------------------- /client/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/logo.png -------------------------------------------------------------------------------- /client/data/md/pjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/md/pjs.md -------------------------------------------------------------------------------- /client/data/md/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/md/quickstart.md -------------------------------------------------------------------------------- /client/data/md/uniforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/md/uniforms.md -------------------------------------------------------------------------------- /client/data/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/noise.png -------------------------------------------------------------------------------- /client/data/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/shirt.png -------------------------------------------------------------------------------- /client/data/ui-icons/README.md: -------------------------------------------------------------------------------- 1 | thank to http://fa2png.io -------------------------------------------------------------------------------- /client/data/ui-icons/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/all.png -------------------------------------------------------------------------------- /client/data/ui-icons/audio_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/audio_file.png -------------------------------------------------------------------------------- /client/data/ui-icons/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/brush.png -------------------------------------------------------------------------------- /client/data/ui-icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/camera.png -------------------------------------------------------------------------------- /client/data/ui-icons/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/code.png -------------------------------------------------------------------------------- /client/data/ui-icons/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/controls.png -------------------------------------------------------------------------------- /client/data/ui-icons/cross45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/cross45.png -------------------------------------------------------------------------------- /client/data/ui-icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/desktop.png -------------------------------------------------------------------------------- /client/data/ui-icons/detach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/detach.png -------------------------------------------------------------------------------- /client/data/ui-icons/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/dice.png -------------------------------------------------------------------------------- /client/data/ui-icons/discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/discuss.png -------------------------------------------------------------------------------- /client/data/ui-icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/eraser.png -------------------------------------------------------------------------------- /client/data/ui-icons/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/fs.png -------------------------------------------------------------------------------- /client/data/ui-icons/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/function.png -------------------------------------------------------------------------------- /client/data/ui-icons/fx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/fx.png -------------------------------------------------------------------------------- /client/data/ui-icons/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/gear.png -------------------------------------------------------------------------------- /client/data/ui-icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/help.png -------------------------------------------------------------------------------- /client/data/ui-icons/image_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/image_file.png -------------------------------------------------------------------------------- /client/data/ui-icons/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/join.png -------------------------------------------------------------------------------- /client/data/ui-icons/lock_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/lock_x.png -------------------------------------------------------------------------------- /client/data/ui-icons/lock_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/lock_y.png -------------------------------------------------------------------------------- /client/data/ui-icons/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/mic.png -------------------------------------------------------------------------------- /client/data/ui-icons/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/midi.png -------------------------------------------------------------------------------- /client/data/ui-icons/minus_symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/minus_symbolic.png -------------------------------------------------------------------------------- /client/data/ui-icons/mul_symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/mul_symbolic.png -------------------------------------------------------------------------------- /client/data/ui-icons/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/mute.png -------------------------------------------------------------------------------- /client/data/ui-icons/osc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/osc.png -------------------------------------------------------------------------------- /client/data/ui-icons/paint_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/paint_brush.png -------------------------------------------------------------------------------- /client/data/ui-icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/pause.png -------------------------------------------------------------------------------- /client/data/ui-icons/pjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/pjs.png -------------------------------------------------------------------------------- /client/data/ui-icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/play.png -------------------------------------------------------------------------------- /client/data/ui-icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/plus.png -------------------------------------------------------------------------------- /client/data/ui-icons/plus_symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/plus_symbolic.png -------------------------------------------------------------------------------- /client/data/ui-icons/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/record.png -------------------------------------------------------------------------------- /client/data/ui-icons/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/replace.png -------------------------------------------------------------------------------- /client/data/ui-icons/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/reset.png -------------------------------------------------------------------------------- /client/data/ui-icons/reset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/reset2.png -------------------------------------------------------------------------------- /client/data/ui-icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/save.png -------------------------------------------------------------------------------- /client/data/ui-icons/shadertoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/shadertoy.png -------------------------------------------------------------------------------- /client/data/ui-icons/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/share.png -------------------------------------------------------------------------------- /client/data/ui-icons/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/spectrum.png -------------------------------------------------------------------------------- /client/data/ui-icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/stop.png -------------------------------------------------------------------------------- /client/data/ui-icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/trash.png -------------------------------------------------------------------------------- /client/data/ui-icons/unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/unmute.png -------------------------------------------------------------------------------- /client/data/ui-icons/unused/midi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/unused/midi.png -------------------------------------------------------------------------------- /client/data/ui-icons/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/users.png -------------------------------------------------------------------------------- /client/data/ui-icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/video.png -------------------------------------------------------------------------------- /client/data/ui-icons/video_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/video_none.png -------------------------------------------------------------------------------- /client/data/ui-icons/xyf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/data/ui-icons/xyf.png -------------------------------------------------------------------------------- /client/dist/cm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/cm.css -------------------------------------------------------------------------------- /client/dist/cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/cm.js -------------------------------------------------------------------------------- /client/dist/cm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/cm.min.css -------------------------------------------------------------------------------- /client/dist/cm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/cm.min.js -------------------------------------------------------------------------------- /client/dist/fs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/fs.css -------------------------------------------------------------------------------- /client/dist/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/fs.js -------------------------------------------------------------------------------- /client/dist/fs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/fs.min.css -------------------------------------------------------------------------------- /client/dist/fs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/fs.min.js -------------------------------------------------------------------------------- /client/dist/worker/FFTW.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/FFTW.wasm -------------------------------------------------------------------------------- /client/dist/worker/audio_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/audio_renderer.js -------------------------------------------------------------------------------- /client/dist/worker/audio_renderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/audio_renderer.min.js -------------------------------------------------------------------------------- /client/dist/worker/audio_to_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/audio_to_image.js -------------------------------------------------------------------------------- /client/dist/worker/audio_to_image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/audio_to_image.min.js -------------------------------------------------------------------------------- /client/dist/worker/fas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/fas.js -------------------------------------------------------------------------------- /client/dist/worker/fas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/fas.min.js -------------------------------------------------------------------------------- /client/dist/worker/fragment_worklet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/fragment_worklet.js -------------------------------------------------------------------------------- /client/dist/worker/fragment_worklet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/fragment_worklet.min.js -------------------------------------------------------------------------------- /client/dist/worker/image_processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/image_processor.js -------------------------------------------------------------------------------- /client/dist/worker/image_processor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/image_processor.min.js -------------------------------------------------------------------------------- /client/dist/worker/image_to_audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/image_to_audio.js -------------------------------------------------------------------------------- /client/dist/worker/image_to_audio.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/image_to_audio.min.js -------------------------------------------------------------------------------- /client/dist/worker/notes_buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/notes_buffer.js -------------------------------------------------------------------------------- /client/dist/worker/notes_buffer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/notes_buffer.min.js -------------------------------------------------------------------------------- /client/dist/worker/notes_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/notes_renderer.js -------------------------------------------------------------------------------- /client/dist/worker/notes_renderer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/notes_renderer.min.js -------------------------------------------------------------------------------- /client/dist/worker/osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/osc.js -------------------------------------------------------------------------------- /client/dist/worker/osc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/osc.min.js -------------------------------------------------------------------------------- /client/dist/worker/parse_glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/parse_glsl.js -------------------------------------------------------------------------------- /client/dist/worker/parse_glsl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/parse_glsl.min.js -------------------------------------------------------------------------------- /client/dist/worker/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/recorder.js -------------------------------------------------------------------------------- /client/dist/worker/recorder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dist/worker/recorder.min.js -------------------------------------------------------------------------------- /client/dl/fas-sha3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dl/fas-sha3.txt -------------------------------------------------------------------------------- /client/dl/ffs-sha3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dl/ffs-sha3.txt -------------------------------------------------------------------------------- /client/dl/osc-relay-sha3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/dl/osc-relay-sha3.txt -------------------------------------------------------------------------------- /client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/favicon.ico -------------------------------------------------------------------------------- /client/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/favicon.png -------------------------------------------------------------------------------- /client/favicon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/favicon_128x128.png -------------------------------------------------------------------------------- /client/favicon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/favicon_256x256.png -------------------------------------------------------------------------------- /client/favicon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/favicon_64x64.png -------------------------------------------------------------------------------- /client/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /client/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /client/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /client/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /client/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /client/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/index.html -------------------------------------------------------------------------------- /client/js/app_cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/app_cm.js -------------------------------------------------------------------------------- /client/js/app_fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/app_fs.js -------------------------------------------------------------------------------- /client/js/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/audio.js -------------------------------------------------------------------------------- /client/js/audio_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/audio_import.js -------------------------------------------------------------------------------- /client/js/brushes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/brushes.js -------------------------------------------------------------------------------- /client/js/canvas_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/canvas_input.js -------------------------------------------------------------------------------- /client/js/ccwt/ccwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/ccwt/ccwt.js -------------------------------------------------------------------------------- /client/js/ccwt/fftw/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/ccwt/fftw/COPYING -------------------------------------------------------------------------------- /client/js/ccwt/fftw/FFTW.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/ccwt/fftw/FFTW.wasm -------------------------------------------------------------------------------- /client/js/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/display/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/display/fullscreen.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/edit/closebrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/edit/closebrackets.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/edit/matchbrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/edit/matchbrackets.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/scroll/annotatescrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/scroll/annotatescrollbar.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/scroll/simplescrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/scroll/simplescrollbars.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/search/match-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/search/match-highlighter.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/search/matchesonscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/search/matchesonscrollbar.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/search/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/search/searchcursor.js -------------------------------------------------------------------------------- /client/js/codemirror/addon/selection/active-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/addon/selection/active-line.js -------------------------------------------------------------------------------- /client/js/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/codemirror.js -------------------------------------------------------------------------------- /client/js/codemirror/mode/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/mode/clike.js -------------------------------------------------------------------------------- /client/js/codemirror/mode/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/mode/glsl.js -------------------------------------------------------------------------------- /client/js/codemirror/mode/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/codemirror/mode/javascript.js -------------------------------------------------------------------------------- /client/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/config.js -------------------------------------------------------------------------------- /client/js/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/db.js -------------------------------------------------------------------------------- /client/js/discuss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/discuss.js -------------------------------------------------------------------------------- /client/js/dsp.js/dsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/dsp.js/dsp.js -------------------------------------------------------------------------------- /client/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/editor.js -------------------------------------------------------------------------------- /client/js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/events.js -------------------------------------------------------------------------------- /client/js/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/export.js -------------------------------------------------------------------------------- /client/js/fas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/fas.js -------------------------------------------------------------------------------- /client/js/file_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/file_import.js -------------------------------------------------------------------------------- /client/js/file_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/file_manager.js -------------------------------------------------------------------------------- /client/js/filesaver/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/filesaver/FileSaver.min.js -------------------------------------------------------------------------------- /client/js/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/glsl.js -------------------------------------------------------------------------------- /client/js/graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/graphics.js -------------------------------------------------------------------------------- /client/js/guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/guide.js -------------------------------------------------------------------------------- /client/js/image_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/image_import.js -------------------------------------------------------------------------------- /client/js/inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/inputs.js -------------------------------------------------------------------------------- /client/js/leaderline/leader-line.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/leaderline/leader-line.min.js -------------------------------------------------------------------------------- /client/js/midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/midi.js -------------------------------------------------------------------------------- /client/js/mpe.js/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/mpe.js/LICENSE.txt -------------------------------------------------------------------------------- /client/js/mpe.js/mpe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/mpe.js/mpe.js -------------------------------------------------------------------------------- /client/js/mpe.js/mpe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/mpe.js/mpe.min.js -------------------------------------------------------------------------------- /client/js/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/network.js -------------------------------------------------------------------------------- /client/js/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/notification.js -------------------------------------------------------------------------------- /client/js/osc.js/osc-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/osc.js/osc-browser.js -------------------------------------------------------------------------------- /client/js/osc_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/osc_handler.js -------------------------------------------------------------------------------- /client/js/paint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/paint.js -------------------------------------------------------------------------------- /client/js/peglsl/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/peglsl/glsl.js -------------------------------------------------------------------------------- /client/js/pjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/pjs.js -------------------------------------------------------------------------------- /client/js/plainoverlay/plain-overlay.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/plainoverlay/plain-overlay.min.js -------------------------------------------------------------------------------- /client/js/processing.js/processing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/processing.js/processing.min.js -------------------------------------------------------------------------------- /client/js/resize_throttler/resize_throttler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/resize_throttler/resize_throttler.js -------------------------------------------------------------------------------- /client/js/sharedb/ot-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/sharedb/ot-text.js -------------------------------------------------------------------------------- /client/js/sharedb/sharedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/sharedb/sharedb.js -------------------------------------------------------------------------------- /client/js/showdown/showdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/showdown/showdown.min.js -------------------------------------------------------------------------------- /client/js/slices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/slices.js -------------------------------------------------------------------------------- /client/js/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/tools.js -------------------------------------------------------------------------------- /client/js/transports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/transports.js -------------------------------------------------------------------------------- /client/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/ui.js -------------------------------------------------------------------------------- /client/js/worker/audio_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/audio_renderer.js -------------------------------------------------------------------------------- /client/js/worker/audio_to_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/audio_to_image.js -------------------------------------------------------------------------------- /client/js/worker/fas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/fas.js -------------------------------------------------------------------------------- /client/js/worker/image_processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/image_processor.js -------------------------------------------------------------------------------- /client/js/worker/notes_buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/notes_buffer.js -------------------------------------------------------------------------------- /client/js/worker/notes_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/notes_renderer.js -------------------------------------------------------------------------------- /client/js/worker/osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/osc.js -------------------------------------------------------------------------------- /client/js/worker/parse_glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/parse_glsl.js -------------------------------------------------------------------------------- /client/js/worker/recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/worker/recorder.js -------------------------------------------------------------------------------- /client/js/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/workspace.js -------------------------------------------------------------------------------- /client/js/wui/wui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/wui/wui.js -------------------------------------------------------------------------------- /client/js/wui/wui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/js/wui/wui.min.js -------------------------------------------------------------------------------- /client/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/manifest.json -------------------------------------------------------------------------------- /client/nutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/nutbuild -------------------------------------------------------------------------------- /client/pynutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/pynutbuild -------------------------------------------------------------------------------- /client/pynutbuild_worker: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python pynut.py js/worker 3 | -------------------------------------------------------------------------------- /client/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/svg/logo.svg -------------------------------------------------------------------------------- /client/svg/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/svg/logo2.svg -------------------------------------------------------------------------------- /client/svg/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/client/svg/wave.svg -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/common.js -------------------------------------------------------------------------------- /documentation/audio/fsynth_adsr.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_adsr.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_ar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_ar.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_ar2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_ar2.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_attenuation.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_attenuation.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_filters.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_filters.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_fundamental.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_fundamental.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_harmonics.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_harmonics.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_lpf.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_lpf.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_lpf_mod.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_lpf_mod.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_midi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_midi.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_morph.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_morph.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_pulsewave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_pulsewave.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_sequence.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_sequence.ogg -------------------------------------------------------------------------------- /documentation/audio/fsynth_square.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/audio/fsynth_square.ogg -------------------------------------------------------------------------------- /documentation/basis.maml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/basis.maml -------------------------------------------------------------------------------- /documentation/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/build -------------------------------------------------------------------------------- /documentation/documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/documentation -------------------------------------------------------------------------------- /documentation/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/documentation.html -------------------------------------------------------------------------------- /documentation/fragment_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/fragment_documentation.pdf -------------------------------------------------------------------------------- /documentation/gif/add_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/add_slices.gif -------------------------------------------------------------------------------- /documentation/gif/add_slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/add_slices.png -------------------------------------------------------------------------------- /documentation/gif/analysis_dialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/analysis_dialog.gif -------------------------------------------------------------------------------- /documentation/gif/analysis_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/analysis_dialog.png -------------------------------------------------------------------------------- /documentation/gif/dialog_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/dialog_resize.gif -------------------------------------------------------------------------------- /documentation/gif/dialog_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/dialog_resize.png -------------------------------------------------------------------------------- /documentation/gif/dragging_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/dragging_slices.gif -------------------------------------------------------------------------------- /documentation/gif/dragging_slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/dragging_slices.png -------------------------------------------------------------------------------- /documentation/gif/fragment_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/fragment_documentation.pdf -------------------------------------------------------------------------------- /documentation/gif/fragment_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/fragment_input.gif -------------------------------------------------------------------------------- /documentation/gif/fragment_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/fragment_input.png -------------------------------------------------------------------------------- /documentation/gif/freq_details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/freq_details.gif -------------------------------------------------------------------------------- /documentation/gif/freq_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/freq_details.png -------------------------------------------------------------------------------- /documentation/gif/glsl_inline_report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/glsl_inline_report.gif -------------------------------------------------------------------------------- /documentation/gif/glsl_inline_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/glsl_inline_report.png -------------------------------------------------------------------------------- /documentation/gif/input_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/input_reorder.gif -------------------------------------------------------------------------------- /documentation/gif/input_reorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/input_reorder.png -------------------------------------------------------------------------------- /documentation/gif/mute_slice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/mute_slice.gif -------------------------------------------------------------------------------- /documentation/gif/mute_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/mute_slice.png -------------------------------------------------------------------------------- /documentation/gif/remove_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/remove_slices.gif -------------------------------------------------------------------------------- /documentation/gif/remove_slices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/remove_slices.png -------------------------------------------------------------------------------- /documentation/gif/slice_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/slice_settings.gif -------------------------------------------------------------------------------- /documentation/gif/slice_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/gif/slice_settings.png -------------------------------------------------------------------------------- /documentation/images/dialog_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/dialog_actions.png -------------------------------------------------------------------------------- /documentation/images/fsynth_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/fsynth_ui.png -------------------------------------------------------------------------------- /documentation/images/homepage_sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/homepage_sessions.png -------------------------------------------------------------------------------- /documentation/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/import.png -------------------------------------------------------------------------------- /documentation/images/impulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/impulse.png -------------------------------------------------------------------------------- /documentation/images/lpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/lpf.png -------------------------------------------------------------------------------- /documentation/images/midi_learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/midi_learn.png -------------------------------------------------------------------------------- /documentation/images/midi_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/midi_settings.png -------------------------------------------------------------------------------- /documentation/images/paint_toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/paint_toolbox.png -------------------------------------------------------------------------------- /documentation/images/possibilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/possibilities.png -------------------------------------------------------------------------------- /documentation/images/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/sequence.png -------------------------------------------------------------------------------- /documentation/images/session_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/session_chat.png -------------------------------------------------------------------------------- /documentation/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/settings.png -------------------------------------------------------------------------------- /documentation/images/slice_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/slice_settings.png -------------------------------------------------------------------------------- /documentation/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/toolbar.png -------------------------------------------------------------------------------- /documentation/images/ui_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/images/ui_help.png -------------------------------------------------------------------------------- /documentation/mk/docs/audio_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/audio_server.md -------------------------------------------------------------------------------- /documentation/mk/docs/camera_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/camera_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/canvas_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/canvas_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/concept.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/concept.md -------------------------------------------------------------------------------- /documentation/mk/docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/credits.md -------------------------------------------------------------------------------- /documentation/mk/docs/dsk_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/dsk_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/favicon.ico -------------------------------------------------------------------------------- /documentation/mk/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/getting_started.md -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/canvas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/canvas.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/canvas_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/canvas_input.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/dialog_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/dialog_resize.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/dragging_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/dragging_slices.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/freq_details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/freq_details.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/glsl_inline_report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/glsl_inline_report.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/image_import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/image_import.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/input_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/input_reorder.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/mute_slice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/mute_slice.gif -------------------------------------------------------------------------------- /documentation/mk/docs/gifs/remove_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/gifs/remove_slices.gif -------------------------------------------------------------------------------- /documentation/mk/docs/glsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/glsl.md -------------------------------------------------------------------------------- /documentation/mk/docs/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/graphics.md -------------------------------------------------------------------------------- /documentation/mk/docs/images/audio_import_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/audio_import_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/canvas.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/canvas_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/canvas_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/dialog_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/dialog_actions.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/fas_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/fas_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/frequency_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/frequency_map.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/homepage_sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/homepage_sessions.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/image_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/image_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/import_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/import_dialog.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/impulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/impulse.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/info_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/info_bar.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/lpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/lpf.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/midi_learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/midi_learn.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/pjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/pjs.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/possibilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/possibilities.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/record.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/slice_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/slice_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/toolbar.png -------------------------------------------------------------------------------- /documentation/mk/docs/images/ui_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images/ui_help.png -------------------------------------------------------------------------------- /documentation/mk/docs/images_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/images_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/import.md -------------------------------------------------------------------------------- /documentation/mk/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/index.md -------------------------------------------------------------------------------- /documentation/mk/docs/instruments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/instruments.md -------------------------------------------------------------------------------- /documentation/mk/docs/mic_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/mic_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/midi.md -------------------------------------------------------------------------------- /documentation/mk/docs/osc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/osc.md -------------------------------------------------------------------------------- /documentation/mk/docs/pjs_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/pjs_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/record_dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/record_dialog.md -------------------------------------------------------------------------------- /documentation/mk/docs/sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/sessions.md -------------------------------------------------------------------------------- /documentation/mk/docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/settings.md -------------------------------------------------------------------------------- /documentation/mk/docs/sounds_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/sounds_import.md -------------------------------------------------------------------------------- /documentation/mk/docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tools.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/effects.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/envelopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/envelopes.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/feedback.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/filters.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/fundamental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/fundamental.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/canvas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/canvas.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/canvas_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/canvas_input.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/dialog_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/dialog_resize.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/dragging_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/dragging_slices.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/freq_details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/freq_details.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/glsl_inline_report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/glsl_inline_report.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/image_import.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/image_import.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/input_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/input_reorder.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/mute_slice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/mute_slice.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/gifs/remove_slices.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/gifs/remove_slices.gif -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/audio_import_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/audio_import_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/canvas.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/canvas_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/canvas_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/dialog_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/dialog_actions.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/fas_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/fas_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/fgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/fgl.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/frequency_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/frequency_map.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/homepage_sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/homepage_sessions.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/image_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/image_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/import_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/import_dialog.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/impulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/impulse.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/info_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/info_bar.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/lpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/lpf.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/midi_learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/midi_learn.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/pjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/pjs.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/possibilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/possibilities.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/record.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/slice_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/slice_settings.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/toolbar.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/images/ui_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/images/ui_help.png -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/multitimbrality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/multitimbrality.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/partials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/partials.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/time_axis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/time_axis.md -------------------------------------------------------------------------------- /documentation/mk/docs/tutorials/waveforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/tutorials/waveforms.md -------------------------------------------------------------------------------- /documentation/mk/docs/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/ui.md -------------------------------------------------------------------------------- /documentation/mk/docs/videos_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/docs/videos_import.md -------------------------------------------------------------------------------- /documentation/mk/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/mk/mkdocs.yml -------------------------------------------------------------------------------- /documentation/pdf/webgl1_glsl_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/pdf/webgl1_glsl_1.pdf -------------------------------------------------------------------------------- /documentation/pdf/webgl1_glsl_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/pdf/webgl1_glsl_2.pdf -------------------------------------------------------------------------------- /documentation/pdf/webgl2_glsl_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/pdf/webgl2_glsl_1.pdf -------------------------------------------------------------------------------- /documentation/pdf/webgl2_glsl_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/pdf/webgl2_glsl_2.pdf -------------------------------------------------------------------------------- /documentation/pdf/webgl2_glsl_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/pdf/webgl2_glsl_3.pdf -------------------------------------------------------------------------------- /documentation/png/fJCBv8mOl-C9YgjNVFHoP3ypseu8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/documentation/png/fJCBv8mOl-C9YgjNVFHoP3ypseu8.png -------------------------------------------------------------------------------- /editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/README.md -------------------------------------------------------------------------------- /editor/css/app_ed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/app_ed.css -------------------------------------------------------------------------------- /editor/css/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/addon/display/fullscreen.css -------------------------------------------------------------------------------- /editor/css/codemirror/addon/scroll/simplescrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/addon/scroll/simplescrollbars.css -------------------------------------------------------------------------------- /editor/css/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/addon/search/matchesonscrollbar.css -------------------------------------------------------------------------------- /editor/css/codemirror/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/codemirror.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/3024-day.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/3024-day.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/3024-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/3024-night.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/abcdef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/abcdef.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/ambiance-mobile.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/base16-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/base16-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/base16-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/base16-light.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/bespin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/bespin.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/blackboard.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/cobalt.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/colorforth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/colorforth.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/dracula.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/duotone-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/duotone-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/duotone-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/duotone-light.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/eclipse.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/elegant.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/erlang-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/erlang-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/hopscotch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/hopscotch.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/icecoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/icecoder.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/isotope.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/isotope.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/lesser-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/lesser-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/liquibyte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/liquibyte.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/material.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/mbo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/mbo.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/mdn-like.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/midnight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/midnight.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/monokai.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/neat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/neat.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/neo.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/night.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/panda-syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/panda-syntax.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/paraiso-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/paraiso-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/paraiso-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/paraiso-light.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/pastel-on-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/pastel-on-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/railscasts.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/rubyblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/rubyblue.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/seti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/seti.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/solarized.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/the-matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/the-matrix.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/tomorrow-night-bright.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/ttcn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/ttcn.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/twilight.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/vibrant-ink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/vibrant-ink.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/xq-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/xq-dark.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/xq-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/xq-light.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/yeti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/yeti.css -------------------------------------------------------------------------------- /editor/css/codemirror/theme/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/codemirror/theme/zenburn.css -------------------------------------------------------------------------------- /editor/css/normalize/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/css/normalize/normalize.css -------------------------------------------------------------------------------- /editor/dist/ed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/dist/ed.css -------------------------------------------------------------------------------- /editor/dist/ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/dist/ed.js -------------------------------------------------------------------------------- /editor/dist/ed.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/dist/ed.min.css -------------------------------------------------------------------------------- /editor/dist/ed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/dist/ed.min.js -------------------------------------------------------------------------------- /editor/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/favicon.png -------------------------------------------------------------------------------- /editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/index.html -------------------------------------------------------------------------------- /editor/js/app_ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/app_ed.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/display/fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/display/fullscreen.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/edit/closebrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/edit/closebrackets.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/edit/matchbrackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/edit/matchbrackets.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/scroll/annotatescrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/scroll/annotatescrollbar.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/scroll/simplescrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/scroll/simplescrollbars.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/search/match-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/search/match-highlighter.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/search/matchesonscrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/search/matchesonscrollbar.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/search/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/search/searchcursor.js -------------------------------------------------------------------------------- /editor/js/codemirror/addon/selection/active-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/addon/selection/active-line.js -------------------------------------------------------------------------------- /editor/js/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/codemirror.js -------------------------------------------------------------------------------- /editor/js/codemirror/codemirror_glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/codemirror_glsl.js -------------------------------------------------------------------------------- /editor/js/codemirror/mode/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/codemirror/mode/javascript.js -------------------------------------------------------------------------------- /editor/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/config.js -------------------------------------------------------------------------------- /editor/js/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/network.js -------------------------------------------------------------------------------- /editor/js/sharedb/ot-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/sharedb/ot-text.js -------------------------------------------------------------------------------- /editor/js/sharedb/sharedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/js/sharedb/sharedb.js -------------------------------------------------------------------------------- /editor/nutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/nutbuild -------------------------------------------------------------------------------- /editor/pynutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/editor/pynutbuild -------------------------------------------------------------------------------- /fas_relay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fas_relay/README.md -------------------------------------------------------------------------------- /fas_relay/fas_relay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fas_relay/fas_relay.js -------------------------------------------------------------------------------- /fas_relay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fas_relay/package.json -------------------------------------------------------------------------------- /fas_relay/simulation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fas_relay/simulation.htm -------------------------------------------------------------------------------- /ffs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/ffs/README.md -------------------------------------------------------------------------------- /ffs/ffs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/ffs/ffs.js -------------------------------------------------------------------------------- /ffs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/ffs/package.json -------------------------------------------------------------------------------- /fsdb/fsdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fsdb/fsdb.js -------------------------------------------------------------------------------- /fsdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fsdb/package.json -------------------------------------------------------------------------------- /fss/fss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fss/fss.js -------------------------------------------------------------------------------- /fss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fss/package.json -------------------------------------------------------------------------------- /fsws/fsws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fsws/fsws.js -------------------------------------------------------------------------------- /fsws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/fsws/package.json -------------------------------------------------------------------------------- /osc_relay/osc_relay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/osc_relay/osc_relay.js -------------------------------------------------------------------------------- /osc_relay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/osc_relay/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/package.json -------------------------------------------------------------------------------- /prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/prod -------------------------------------------------------------------------------- /prod_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/prod_files -------------------------------------------------------------------------------- /scripts/db_cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/scripts/db_cleanup.js -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/scripts/package.json -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/setup -------------------------------------------------------------------------------- /supercollider/fs.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/supercollider/fs.scd -------------------------------------------------------------------------------- /www/css/FontAwesome/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/FontAwesome/fontawesome.min.css -------------------------------------------------------------------------------- /www/css/Skeleton/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/Skeleton/normalize.css -------------------------------------------------------------------------------- /www/css/Skeleton/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/Skeleton/skeleton.css -------------------------------------------------------------------------------- /www/css/WUI_CircularMenu/skeleton/wui_circular_menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/WUI_CircularMenu/skeleton/wui_circular_menu.min.css -------------------------------------------------------------------------------- /www/css/app_fp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/app_fp.css -------------------------------------------------------------------------------- /www/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/css/icons.css -------------------------------------------------------------------------------- /www/data/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /www/data/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /www/data/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /www/data/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/Raleway-Regular.ttf -------------------------------------------------------------------------------- /www/data/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/bg.jpg -------------------------------------------------------------------------------- /www/data/btn_donate_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/btn_donate_LG.gif -------------------------------------------------------------------------------- /www/data/fork_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/fork_me.png -------------------------------------------------------------------------------- /www/data/fsynth_1024_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/fsynth_1024_logo.png -------------------------------------------------------------------------------- /www/data/icons/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/icons/join.png -------------------------------------------------------------------------------- /www/data/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/icons/trash.png -------------------------------------------------------------------------------- /www/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/logo.png -------------------------------------------------------------------------------- /www/data/logo_continuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/logo_continuous.png -------------------------------------------------------------------------------- /www/data/patron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/patron.png -------------------------------------------------------------------------------- /www/data/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/pixel.gif -------------------------------------------------------------------------------- /www/data/raspberry-pi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/data/raspberry-pi-logo.png -------------------------------------------------------------------------------- /www/dist/fp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/dist/fp.css -------------------------------------------------------------------------------- /www/dist/fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/dist/fp.js -------------------------------------------------------------------------------- /www/dist/fp.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/dist/fp.min.css -------------------------------------------------------------------------------- /www/dist/fp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/dist/fp.min.js -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/favicon.png -------------------------------------------------------------------------------- /www/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /www/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /www/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /www/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /www/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /www/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/WUI_CircularMenu/wui_circular_menu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/js/WUI_CircularMenu/wui_circular_menu.min.js -------------------------------------------------------------------------------- /www/js/app_fp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/js/app_fp.js -------------------------------------------------------------------------------- /www/js/docReady/docready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/js/docReady/docready.js -------------------------------------------------------------------------------- /www/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/js/main.js -------------------------------------------------------------------------------- /www/nutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/nutbuild -------------------------------------------------------------------------------- /www/pynutbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/pynutbuild -------------------------------------------------------------------------------- /www/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /www/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /www/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /www/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /www/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /www/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /www/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /www/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /www/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /www/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /www/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /www/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /www/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /www/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /www/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grz0zrg/fsynth/HEAD/www/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------