├── .gitignore ├── LICENSE.txt ├── README.md ├── eclipse.sh ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── build.gradle ├── src │ └── net │ │ └── mgsx │ │ └── ppp │ │ └── midi │ │ ├── BiClockScheduler.java │ │ └── ClockScheduler.java └── test │ └── net │ └── mgsx │ └── ppp │ └── midi │ └── ClockSchedulerTest.java ├── pd-for-android ├── .gitignore └── build.gradle ├── pd-party ├── .gitignore ├── AndroidManifest.xml ├── LICENSE.txt ├── README.md ├── TODO.txt ├── build.gradle ├── droidparty-abstractions │ ├── clock-gui.pd │ ├── clock-help.pd │ ├── clock.pd │ ├── loadsave-help.pd │ ├── loadsave.pd │ ├── midiclockout-help.pd │ ├── midiclockout.pd │ ├── persist-help.pd │ ├── persist-load-help.pd │ ├── persist-load.pd │ ├── persist-map-help.pd │ ├── persist-map.pd │ ├── persist-save-help.pd │ ├── persist-save.pd │ ├── persist-table-help.pd │ ├── persist-table.pd │ ├── taplist-help.pd │ ├── taplist.pd │ ├── touch-help.pd │ └── touch.pd ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_cast.png │ │ ├── ic_action_download.png │ │ ├── ic_action_io.png │ │ ├── ic_action_network_wifi.png │ │ ├── ic_action_pause.png │ │ ├── ic_action_play.png │ │ ├── ic_action_replay.png │ │ ├── ic_action_soundoff.png │ │ ├── ic_action_soundon.png │ │ ├── ic_action_time.png │ │ ├── ic_action_upload.png │ │ └── ic_action_usb.png │ ├── drawable-mdpi │ │ ├── ic_action_cast.png │ │ ├── ic_action_download.png │ │ ├── ic_action_io.png │ │ ├── ic_action_network_wifi.png │ │ ├── ic_action_pause.png │ │ ├── ic_action_play.png │ │ ├── ic_action_replay.png │ │ ├── ic_action_soundoff.png │ │ ├── ic_action_soundon.png │ │ ├── ic_action_time.png │ │ ├── ic_action_upload.png │ │ └── ic_action_usb.png │ ├── drawable-xhdpi │ │ ├── ic_action_cast.png │ │ ├── ic_action_download.png │ │ ├── ic_action_io.png │ │ ├── ic_action_network_wifi.png │ │ ├── ic_action_pause.png │ │ ├── ic_action_play.png │ │ ├── ic_action_replay.png │ │ ├── ic_action_soundoff.png │ │ ├── ic_action_soundon.png │ │ ├── ic_action_time.png │ │ ├── ic_action_upload.png │ │ └── ic_action_usb.png │ ├── drawable-xxhdpi │ │ ├── ic_action_cast.png │ │ ├── ic_action_download.png │ │ ├── ic_action_io.png │ │ ├── ic_action_network_wifi.png │ │ ├── ic_action_pause.png │ │ ├── ic_action_play.png │ │ ├── ic_action_replay.png │ │ ├── ic_action_soundoff.png │ │ ├── ic_action_soundon.png │ │ ├── ic_action_time.png │ │ ├── ic_action_upload.png │ │ └── ic_action_usb.png │ ├── drawable │ │ ├── radio_button_toggle.xml │ │ ├── radio_button_toggle_off.xml │ │ ├── radio_button_toggle_on.xml │ │ └── textback.xml │ ├── layout │ │ ├── load_dialog.xml │ │ ├── main.xml │ │ ├── numberbox_dialog.xml │ │ ├── save_dialog.xml │ │ ├── symbol_dialog.xml │ │ └── tempo_scale.xml │ ├── raw │ │ └── dejavu_sans_mono_bold.ttf │ └── values │ │ ├── ids.xml │ │ └── strings.xml └── src │ └── net │ └── mgsx │ └── ppp │ ├── LoadDialog.java │ ├── NumberboxDialog.java │ ├── PdDroidParty.java │ ├── PdDroidPartyConfig.java │ ├── PdDroidPartyLauncher.java │ ├── SaveDialog.java │ ├── SymbolDialog.java │ ├── midi │ ├── MidiClock.java │ ├── MidiCode.java │ ├── MidiDevice.java │ ├── MidiInput.java │ ├── MidiListener.java │ ├── MidiManager.java │ ├── MidiManagerHandler.java │ ├── MidiOutput.java │ ├── MidiPort.java │ ├── UsbMidiHandler.java │ ├── UsbMidiManager.java │ ├── ip │ │ ├── IPMidiDevice.java │ │ ├── IPMidiInput.java │ │ ├── IPMidiOutput.java │ │ ├── MidiInputCreateDialog.java │ │ └── MidiOutputCreateDialog.java │ └── pd │ │ ├── PdMidiDevice.java │ │ └── PdMidiOutput.java │ ├── net │ └── NetworkHelper.java │ ├── pd │ ├── DroidPartyReceiver.java │ ├── PdClock.java │ ├── PdGUI.java │ ├── PdHelper.java │ ├── PdParser.java │ └── PdPatch.java │ ├── svg │ ├── SVGInfo.java │ └── SVGRenderer.java │ ├── theme │ ├── Theme.java │ ├── mono │ │ └── MonochromeTheme.java │ └── pd │ │ └── PdTheme.java │ ├── util │ └── FileHelper.java │ ├── view │ ├── ClockSettingsDialog.java │ ├── MidiConfigDialog.java │ ├── MidiPortAdapter.java │ ├── NumberSelector.java │ ├── PdDroidPatchView.java │ └── PdPartyClockControl.java │ └── widget │ ├── OrientedWidget.java │ ├── Widget.java │ ├── WidgetFactory.java │ ├── abs │ ├── LoadSave.java │ ├── Taplist.java │ └── Touch.java │ ├── core │ ├── Bang.java │ ├── Canvasrect.java │ ├── Comment.java │ ├── Numberbox.java │ ├── Numberbox2.java │ ├── Radio.java │ ├── Slider.java │ ├── Subpatch.java │ ├── Symbol.java │ ├── Toggle.java │ └── VUMeter.java │ └── custom │ ├── FilledToggle.java │ ├── PopupTaplist.java │ ├── RibbonSlider.java │ ├── SimpleBang.java │ ├── SimpleRadio.java │ └── SwitchToggle.java ├── samples ├── demo-AcidBass │ ├── .gitignore │ ├── AcidBass_launcher_desktop.pd │ ├── AndroidManifest.xml │ ├── assets │ │ └── Acid_Bass │ │ │ ├── AcidBass_audioControls.pd │ │ │ ├── AcidBass_core.pd │ │ │ ├── AcidBass_noteOptions.pd │ │ │ ├── AcidBass_noteSelector.pd │ │ │ ├── onestep2.pd │ │ │ ├── presets_pattern │ │ │ ├── acid-groove-fast.cbs │ │ │ ├── acid-groove-fast.cbs-Notes │ │ │ ├── arpegio-guitare-slow.cbs │ │ │ └── arpegio-guitare-slow.cbs-Notes │ │ │ ├── presets_synth │ │ │ ├── acid-lead.cbs │ │ │ └── electric-drive.cbs │ │ │ ├── table_note_rd_lookup.pd │ │ │ ├── table_set_from_gui.pd │ │ │ ├── tanh~.pd │ │ │ └── voice.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── acidbass │ │ │ ├── GridArray.java │ │ │ └── MainActivity.java │ └── web │ │ └── ic_launcher.png ├── demo-AcidDrums │ ├── .gitignore │ ├── AcidDrums_launcher_desktop.pd │ ├── AndroidManifest.xml │ ├── assets │ │ └── Acid_Drums │ │ │ ├── aciddrums_audiocore.pd │ │ │ ├── aciddrums_controls.pd │ │ │ ├── aciddrums_fullstack.pd │ │ │ ├── aciddrums_sequencer.pd │ │ │ ├── perk-bassdrum.pd │ │ │ ├── perk-clap.pd │ │ │ ├── perk-cowbell.pd │ │ │ ├── perk-hihat.pd │ │ │ ├── perk-snare.pd │ │ │ ├── presets_pattern │ │ │ ├── empty.cbs │ │ │ └── pseudo-random.cbs │ │ │ ├── presets_synth │ │ │ ├── default.cbs │ │ │ └── electro-kit.cbs │ │ │ ├── step.pd │ │ │ └── tanh~.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── aciddrums │ │ │ └── MainActivity.java │ └── web │ │ └── ic_launcher.png ├── demo-Arpeggio │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ │ └── Arpeggio │ │ │ ├── arpeggio.pd │ │ │ └── presets │ │ │ └── initial.cbs │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── arpeggio │ │ │ ├── MainActivity.java │ │ │ └── TrackLed.java │ └── web │ │ └── ic_launcher.png ├── demo-ChipSequencer │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── ChipSequencer_launcher_desktop.pd │ ├── assets │ │ └── Chip_sequencer │ │ │ ├── chip_sequencer.pd │ │ │ ├── chip_sequencer_audiocore.pd │ │ │ ├── chip_sequencer_controls.pd │ │ │ ├── chip_sequencer_fullstack.pd │ │ │ ├── chip_sequencer_sequencer.pd │ │ │ ├── presets_pattern │ │ │ ├── default │ │ │ ├── default-Accents │ │ │ ├── default-Notes │ │ │ └── default-Octaves │ │ │ ├── presets_synth │ │ │ ├── test │ │ │ ├── test-Synth-Data │ │ │ └── test-Synth-Pitch │ │ │ ├── rj │ │ │ ├── LICENSE.txt │ │ │ ├── OVERVIEW.pd │ │ │ ├── _markovanal.pd │ │ │ ├── a.txt │ │ │ ├── a_breath-help.pd │ │ │ ├── a_breath.pd │ │ │ ├── a_onset-help.pd │ │ │ ├── a_onset.pd │ │ │ ├── c.txt │ │ │ ├── c_adsr-help.pd │ │ │ ├── c_adsr.pd │ │ │ ├── c_adsrj-help.pd │ │ │ ├── c_adsrj.pd │ │ │ ├── c_bangx-help.pd │ │ │ ├── c_bangx.pd │ │ │ ├── c_bus-help.pd │ │ │ ├── c_bus.pd │ │ │ ├── c_cpfade-help.pd │ │ │ ├── c_cpfade.pd │ │ │ ├── c_drunk-help.pd │ │ │ ├── c_drunk.pd │ │ │ ├── c_ead-help.pd │ │ │ ├── c_ead.pd │ │ │ ├── c_frand-help.pd │ │ │ ├── c_frand.pd │ │ │ ├── c_frombus-help.pd │ │ │ ├── c_frombus.pd │ │ │ ├── c_lfo-help.pd │ │ │ ├── c_lfo.pd │ │ │ ├── c_madsr-help.pd │ │ │ ├── c_madsr.pd │ │ │ ├── c_madsrj-help.pd │ │ │ ├── c_madsrj.pd │ │ │ ├── c_markov-help.pd │ │ │ ├── c_markov.pd │ │ │ ├── c_mfade3-help.pd │ │ │ ├── c_mfade3.pd │ │ │ ├── c_mphasor-help.pd │ │ │ ├── c_mphasor.pd │ │ │ ├── c_multimetro-help.pd │ │ │ ├── c_multimetro.pd │ │ │ ├── c_multipass-help.pd │ │ │ ├── c_multipass.pd │ │ │ ├── c_pass-help.pd │ │ │ ├── c_pass.pd │ │ │ ├── c_patternchange-help.pd │ │ │ ├── c_patternchange.pd │ │ │ ├── c_seqplay-help.pd │ │ │ ├── c_seqplay.pd │ │ │ ├── c_taptap-help.pd │ │ │ ├── c_taptap.pd │ │ │ ├── c_tobus-help.pd │ │ │ ├── c_tobus.pd │ │ │ ├── c_urn-help.pd │ │ │ ├── c_urn.pd │ │ │ ├── c_xfade-help.pd │ │ │ ├── c_xfade.pd │ │ │ ├── e.txt │ │ │ ├── e_agc-help.pd │ │ │ ├── e_agc.pd │ │ │ ├── e_alias-help.pd │ │ │ ├── e_alias.pd │ │ │ ├── e_apdist-help.pd │ │ │ ├── e_apdist.pd │ │ │ ├── e_beequad-help.pd │ │ │ ├── e_beequad.pd │ │ │ ├── e_bitcrusher-help.pd │ │ │ ├── e_bitcrusher.pd │ │ │ ├── e_chorus-help.pd │ │ │ ├── e_chorus.pd │ │ │ ├── e_chorusr-help.pd │ │ │ ├── e_chorusr.pd │ │ │ ├── e_circlepan-help.pd │ │ │ ├── e_circlepan.pd │ │ │ ├── e_dubdel-help.pd │ │ │ ├── e_dubdel.pd │ │ │ ├── e_dynproc-help.pd │ │ │ ├── e_dynproc.pd │ │ │ ├── e_fbdelay-help.pd │ │ │ ├── e_fbdelay.pd │ │ │ ├── e_fbdelay2.pd │ │ │ ├── e_forcepitch-help.pd │ │ │ ├── e_forcepitch.pd │ │ │ ├── e_freqshift-help.pd │ │ │ ├── e_freqshift.pd │ │ │ ├── e_graindelread-help.pd │ │ │ ├── e_graindelread.pd │ │ │ ├── e_lop2-help.pd │ │ │ ├── e_lop2.pd │ │ │ ├── e_lop4-help.pd │ │ │ ├── e_lop4.pd │ │ │ ├── e_mcompressor-help.pd │ │ │ ├── e_mcompressor.pd │ │ │ ├── e_noclickdel-help.pd │ │ │ ├── e_noclickdel.pd │ │ │ ├── e_noclickdelsig.pd │ │ │ ├── e_pan-help.pd │ │ │ ├── e_pan.pd │ │ │ ├── e_phaser-help.pd │ │ │ ├── e_phaser.pd │ │ │ ├── e_pingpong-help.pd │ │ │ ├── e_pingpong.pd │ │ │ ├── e_pitchshift-help.pd │ │ │ ├── e_pitchshift.pd │ │ │ ├── e_platereverb-help.pd │ │ │ ├── e_platereverb.pd │ │ │ ├── e_repeater-help.pd │ │ │ ├── e_repeater.pd │ │ │ ├── e_reslop-help.pd │ │ │ ├── e_reslop.pd │ │ │ ├── e_resonzq-help.pd │ │ │ ├── e_resonzq.pd │ │ │ ├── e_reverb-help.pd │ │ │ ├── e_reverb.pd │ │ │ ├── e_scompress-help.pd │ │ │ ├── e_scompress.pd │ │ │ ├── e_scompressor-help.pd │ │ │ ├── e_scompressor.pd │ │ │ ├── e_sdelay-help.pd │ │ │ ├── e_sdelay.pd │ │ │ ├── e_softclip-help.pd │ │ │ ├── e_softclip.pd │ │ │ ├── e_stereowidener-help.pd │ │ │ ├── e_stereowidener.pd │ │ │ ├── e_tremolo-help.pd │ │ │ ├── e_tremolo.pd │ │ │ ├── e_vocoder-help.pd │ │ │ ├── e_vocoder.pd │ │ │ ├── g.txt │ │ │ ├── g_channelstrip-help.pd │ │ │ ├── g_channelstrip.pd │ │ │ ├── g_compressorgui-help.pd │ │ │ ├── g_compressorgui.pd │ │ │ ├── g_hradio-help.pd │ │ │ ├── g_hradio.pd │ │ │ ├── g_hsl-help.pd │ │ │ ├── g_hsl.pd │ │ │ ├── g_hsl4-help.pd │ │ │ ├── g_hsl4.pd │ │ │ ├── g_nbx-help.pd │ │ │ ├── g_nbx.pd │ │ │ ├── g_nhsl-help.pd │ │ │ ├── g_nhsl.pd │ │ │ ├── g_pattern32-help.pd │ │ │ ├── g_pattern32.pd │ │ │ ├── g_showimage-help.pd │ │ │ ├── g_showimage.pd │ │ │ ├── g_showtext-help.pd │ │ │ ├── g_showtext.pd │ │ │ ├── g_symbol-help.pd │ │ │ ├── g_symbol.pd │ │ │ ├── g_synsl-help.pd │ │ │ ├── g_synsl.pd │ │ │ ├── g_synthcontrol-help.pd │ │ │ ├── g_synthcontrol.pd │ │ │ ├── g_tgl-help.pd │ │ │ ├── g_tgl.pd │ │ │ ├── g_vol-help.pd │ │ │ ├── g_vol.pd │ │ │ ├── g_vol2-help.pd │ │ │ ├── g_vol2.pd │ │ │ ├── m.txt │ │ │ ├── m_accel_magnitude-help.pd │ │ │ ├── m_accel_magnitude.pd │ │ │ ├── m_accel_pitch-help.pd │ │ │ ├── m_accel_pitch.pd │ │ │ ├── m_accel_roll-help.pd │ │ │ ├── m_accel_roll.pd │ │ │ ├── m_accel_status-help.pd │ │ │ ├── m_accel_status.pd │ │ │ ├── m_autoscale-help.pd │ │ │ ├── m_autoscale.pd │ │ │ ├── m_beat2ms-help.pd │ │ │ ├── m_beat2ms.pd │ │ │ ├── m_bpm2ms-help.pd │ │ │ ├── m_bpm2ms.pd │ │ │ ├── m_chorddict-help.pd │ │ │ ├── m_chorddict.pd │ │ │ ├── m_intv2ratio-help.pd │ │ │ ├── m_intv2ratio.pd │ │ │ ├── m_keyfollow-help.pd │ │ │ ├── m_keyfollow.pd │ │ │ ├── m_majorscale-help.pd │ │ │ ├── m_majorscale.pd │ │ │ ├── m_markovanal-help.pd │ │ │ ├── m_markovanal.pd │ │ │ ├── m_minorscale-help.pd │ │ │ ├── m_minorscale.pd │ │ │ ├── m_ms2beat-help.pd │ │ │ ├── m_ms2beat.pd │ │ │ ├── m_ms2sm-help.pd │ │ │ ├── m_ms2sm.pd │ │ │ ├── m_ratio2intv-help.pd │ │ │ ├── m_ratio2intv.pd │ │ │ ├── m_scale-help.pd │ │ │ ├── m_scale.pd │ │ │ ├── m_sm2ms-help.pd │ │ │ ├── m_sm2ms.pd │ │ │ ├── m_speedlimit-help.pd │ │ │ ├── m_speedlimit.pd │ │ │ ├── m_symbolarray-help.pd │ │ │ ├── m_symbolarray.pd │ │ │ ├── m_thresholds-help.pd │ │ │ ├── m_thresholds.pd │ │ │ ├── m_touch2grid-help.pd │ │ │ ├── m_touch2grid.pd │ │ │ ├── r_#accelerate-help.pd │ │ │ ├── r_#accelerate.pd │ │ │ ├── r_#compass-help.pd │ │ │ ├── r_#compass.pd │ │ │ ├── r_#gyro-help.pd │ │ │ ├── r_#gyro.pd │ │ │ ├── r_#loc-help.pd │ │ │ ├── r_#loc.pd │ │ │ ├── r_#time-help.pd │ │ │ ├── r_#time.pd │ │ │ ├── r_#touch-help.pd │ │ │ ├── r_#touch.pd │ │ │ ├── rj-meta.pd │ │ │ ├── rj.txt │ │ │ ├── rj_image-help.pd │ │ │ ├── rj_image.pd │ │ │ ├── s.txt │ │ │ ├── s_blsaw-help.pd │ │ │ ├── s_blsaw.pd │ │ │ ├── s_blsquare-help.pd │ │ │ ├── s_blsquare.pd │ │ │ ├── s_buzz-help.pd │ │ │ ├── s_buzz.pd │ │ │ ├── s_chip-help.pd │ │ │ ├── s_chip.pd │ │ │ ├── s_cwc-help.pd │ │ │ ├── s_cwc.pd │ │ │ ├── s_czz-help.pd │ │ │ ├── s_czz.pd │ │ │ ├── s_drumelectro-help.pd │ │ │ ├── s_drumelectro.pd │ │ │ ├── s_ejun-help.pd │ │ │ ├── s_ejun.pd │ │ │ ├── s_fm4-help.pd │ │ │ ├── s_fm4.pd │ │ │ ├── s_fmoscil-help.pd │ │ │ ├── s_fmoscil.pd │ │ │ ├── s_fplaytable-help.pd │ │ │ ├── s_fplaytable.pd │ │ │ ├── s_fplaytable2.pd │ │ │ ├── s_guitar-help.pd │ │ │ ├── s_guitar.pd │ │ │ ├── s_hstr-help.pd │ │ │ ├── s_hstr.pd │ │ │ ├── s_looper-help.pd │ │ │ ├── s_looper.pd │ │ │ ├── s_loopsmooth-help.pd │ │ │ ├── s_loopsmooth.pd │ │ │ ├── s_multisynth.pd │ │ │ ├── s_noish-help.pd │ │ │ ├── s_noish.pd │ │ │ ├── s_noiz-help.pd │ │ │ ├── s_noiz.pd │ │ │ ├── s_osc-help.pd │ │ │ ├── s_osc.pd │ │ │ ├── s_pinknoise-help.pd │ │ │ ├── s_pinknoise.pd │ │ │ ├── s_playolap-help.pd │ │ │ ├── s_playolap.pd │ │ │ ├── s_playtable-help.pd │ │ │ ├── s_playtable.pd │ │ │ ├── s_playtable2-help.pd │ │ │ ├── s_playtable2.pd │ │ │ ├── s_rhodey-help.pd │ │ │ ├── s_rhodey.pd │ │ │ ├── s_spad-help.pd │ │ │ ├── s_spad.pd │ │ │ ├── s_vphasor-help.pd │ │ │ ├── s_vphasor.pd │ │ │ ├── s_wsb-help.pd │ │ │ ├── s_wsb.pd │ │ │ ├── soundinput.pd │ │ │ ├── soundoutput.pd │ │ │ ├── synth-waveshapping-voice.pd │ │ │ ├── u.txt │ │ │ ├── u_bandpass1-help.pd │ │ │ ├── u_bandpass1.pd │ │ │ ├── u_bandpass1q-help.pd │ │ │ ├── u_bandpass1q.pd │ │ │ ├── u_bandpass2-help.pd │ │ │ ├── u_bandpass2.pd │ │ │ ├── u_bandpass2q-help.pd │ │ │ ├── u_bandpass2q.pd │ │ │ ├── u_channelstrip-help.pd │ │ │ ├── u_channelstrip.pd │ │ │ ├── u_cocollect-help.pd │ │ │ ├── u_cocollect.pd │ │ │ ├── u_collect-help.pd │ │ │ ├── u_collect.pd │ │ │ ├── u_dispatch-help.pd │ │ │ ├── u_dispatch.pd │ │ │ ├── u_dumpfile-help.pd │ │ │ ├── u_dumpfile.pd │ │ │ ├── u_fade-help.pd │ │ │ ├── u_fade.pd │ │ │ ├── u_follower.pd │ │ │ ├── u_highpass-help.pd │ │ │ ├── u_highpass.pd │ │ │ ├── u_highpassq-help.pd │ │ │ ├── u_highpassq.pd │ │ │ ├── u_listdrip-help.pd │ │ │ ├── u_listdrip.pd │ │ │ ├── u_listequal-help.pd │ │ │ ├── u_listequal.pd │ │ │ ├── u_listfilter-help.pd │ │ │ ├── u_listfilter.pd │ │ │ ├── u_listloop-help.pd │ │ │ ├── u_listloop.pd │ │ │ ├── u_listmap-help.pd │ │ │ ├── u_listmap.pd │ │ │ ├── u_listnth-help.pd │ │ │ ├── u_listnth.pd │ │ │ ├── u_listrandom-help.pd │ │ │ ├── u_listrandom.pd │ │ │ ├── u_listreduce-help.pd │ │ │ ├── u_listreduce.pd │ │ │ ├── u_listser-help.pd │ │ │ ├── u_listser.pd │ │ │ ├── u_loader-help.pd │ │ │ ├── u_loader.pd │ │ │ ├── u_loadmeter-help.pd │ │ │ ├── u_loadmeter.pd │ │ │ ├── u_lowpass-help.pd │ │ │ ├── u_lowpass.pd │ │ │ ├── u_lowpassq-help.pd │ │ │ ├── u_lowpassq.pd │ │ │ ├── u_makepoly-help.pd │ │ │ ├── u_makepoly.pd │ │ │ ├── u_makepolymono-help.pd │ │ │ ├── u_makepolymono.pd │ │ │ ├── u_messagesaver-help.pd │ │ │ ├── u_messagesaver.pd │ │ │ ├── u_multisamplebank-help.pd │ │ │ ├── u_multisamplebank.pd │ │ │ ├── u_multisamplebank2-help.pd │ │ │ ├── u_multisamplebank2.pd │ │ │ ├── u_record-help.pd │ │ │ ├── u_record.pd │ │ │ ├── u_robinpoly-help.pd │ │ │ ├── u_robinpoly.pd │ │ │ ├── u_robinpolymono-help.pd │ │ │ ├── u_robinpolymono.pd │ │ │ ├── u_samplebank-help.pd │ │ │ ├── u_samplebank.pd │ │ │ ├── u_samplebank2-help.pd │ │ │ ├── u_samplebank2.pd │ │ │ ├── u_samplekit-help.pd │ │ │ ├── u_samplekit.pd │ │ │ ├── u_samplekit2-help.pd │ │ │ ├── u_samplekit2.pd │ │ │ ├── u_show-help.pd │ │ │ ├── u_show.pd │ │ │ ├── u_sigm-help.pd │ │ │ ├── u_sigm.pd │ │ │ ├── u_spinner-help.pd │ │ │ ├── u_spinner.pd │ │ │ ├── u_splicetrans-help.pd │ │ │ ├── u_splicetrans.pd │ │ │ ├── u_sssad.pd │ │ │ ├── u_stereo-help.pd │ │ │ ├── u_stereo.pd │ │ │ ├── u_wrandom-help.pd │ │ │ ├── u_wrandom.pd │ │ │ └── z_blank-help.pd │ │ │ ├── s_chipwave_voice.pd │ │ │ ├── table_note_rd_lookup.pd │ │ │ ├── table_set_from_gui.pd │ │ │ └── tanh~.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── chipsequencer │ │ │ └── MainActivity.java │ └── web │ │ └── ic_launcher.png ├── demo-Chorder │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── Chorder_launcher_desktop.pd │ ├── assets │ │ └── Chorder │ │ │ ├── Chorder-controls.pd │ │ │ ├── Chorder-core.pd │ │ │ ├── Chorder-gui.pd │ │ │ ├── Chorder-playBoard.pd │ │ │ ├── c_adsr.pd │ │ │ ├── c_armnote.pd │ │ │ ├── c_passnote.pd │ │ │ ├── c_xfade-help.pd │ │ │ ├── c_xfade.pd │ │ │ ├── chords-assembler.pd │ │ │ ├── musical-structure.pd │ │ │ ├── presets_chords │ │ │ └── minor-walk.cbs │ │ │ ├── presets_synth │ │ │ └── echo-rhode.cbs │ │ │ ├── s_rhodey-help.pd │ │ │ ├── s_rhodey.pd │ │ │ ├── tanh~.pd │ │ │ ├── u_dispatch-help.pd │ │ │ └── u_dispatch.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── net │ │ └── mgsx │ │ └── ppp │ │ └── samples │ │ └── chorder │ │ └── MainActivity.java ├── demo-Glitcher │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ │ └── Glitcher │ │ │ ├── Glitcher.pd │ │ │ ├── cos_panner.pd │ │ │ ├── env_adj.pd │ │ │ ├── euclidean-help.pd │ │ │ ├── euclidean.pd │ │ │ ├── fx_bodyresonnance.pd │ │ │ ├── random_glitch.pd │ │ │ └── tanh~.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── glitcher │ │ │ └── MainActivity.java │ └── web │ │ └── ic_launcher.png ├── demo-VoiceSlicer │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ │ ├── Slicer │ │ │ ├── randrum.pd │ │ │ ├── rec.pd │ │ │ ├── slicer2.pd │ │ │ └── track~.pd │ │ └── savefiles │ │ │ └── .gitignore │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── slicer │ │ │ ├── MainActivity.java │ │ │ ├── PitchBend.java │ │ │ └── WavePreview.java │ └── web │ │ └── ic_launcher.png ├── demo-Wobbler │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ │ └── Wobbler │ │ │ ├── Bang-off.svg │ │ │ ├── Bang-on.svg │ │ │ ├── Number-back.svg │ │ │ ├── Radio-background.svg │ │ │ ├── Radio-button.svg │ │ │ ├── Toggle-off.svg │ │ │ ├── Toggle-on.svg │ │ │ ├── background.svg │ │ │ ├── fx_bodyresonnance.pd │ │ │ ├── rj │ │ │ ├── LICENSE.txt │ │ │ ├── OVERVIEW.pd │ │ │ ├── _markovanal.pd │ │ │ ├── a.txt │ │ │ ├── a_breath.pd │ │ │ ├── a_onset-help.pd │ │ │ ├── a_onset.pd │ │ │ ├── c.txt │ │ │ ├── c_adsr-help.pd │ │ │ ├── c_adsr.pd │ │ │ ├── c_adsrj-help.pd │ │ │ ├── c_adsrj.pd │ │ │ ├── c_bangx-help.pd │ │ │ ├── c_bangx.pd │ │ │ ├── c_bus-help.pd │ │ │ ├── c_bus.pd │ │ │ ├── c_cpfade-help.pd │ │ │ ├── c_cpfade.pd │ │ │ ├── c_drunk-help.pd │ │ │ ├── c_drunk.pd │ │ │ ├── c_ead-help.pd │ │ │ ├── c_ead.pd │ │ │ ├── c_frand-help.pd │ │ │ ├── c_frand.pd │ │ │ ├── c_frombus-help.pd │ │ │ ├── c_frombus.pd │ │ │ ├── c_lfo-help.pd │ │ │ ├── c_lfo.pd │ │ │ ├── c_madsr-help.pd │ │ │ ├── c_madsr.pd │ │ │ ├── c_madsrj-help.pd │ │ │ ├── c_madsrj.pd │ │ │ ├── c_markov-help.pd │ │ │ ├── c_markov.pd │ │ │ ├── c_mfade3-help.pd │ │ │ ├── c_mfade3.pd │ │ │ ├── c_mphasor-help.pd │ │ │ ├── c_mphasor.pd │ │ │ ├── c_multimetro-help.pd │ │ │ ├── c_multimetro.pd │ │ │ ├── c_multipass-help.pd │ │ │ ├── c_multipass.pd │ │ │ ├── c_pass-help.pd │ │ │ ├── c_pass.pd │ │ │ ├── c_patternchange-help.pd │ │ │ ├── c_patternchange.pd │ │ │ ├── c_seqplay-help.pd │ │ │ ├── c_seqplay.pd │ │ │ ├── c_taptap-help.pd │ │ │ ├── c_taptap.pd │ │ │ ├── c_tobus-help.pd │ │ │ ├── c_tobus.pd │ │ │ ├── c_urn-help.pd │ │ │ ├── c_urn.pd │ │ │ ├── c_xfade-help.pd │ │ │ ├── c_xfade.pd │ │ │ ├── e.txt │ │ │ ├── e_agc-help.pd │ │ │ ├── e_agc.pd │ │ │ ├── e_alias-help.pd │ │ │ ├── e_alias.pd │ │ │ ├── e_apdist-help.pd │ │ │ ├── e_apdist.pd │ │ │ ├── e_beequad-help.pd │ │ │ ├── e_beequad.pd │ │ │ ├── e_bitcrusher-help.pd │ │ │ ├── e_bitcrusher.pd │ │ │ ├── e_chorus-help.pd │ │ │ ├── e_chorus.pd │ │ │ ├── e_chorusr-help.pd │ │ │ ├── e_chorusr.pd │ │ │ ├── e_circlepan-help.pd │ │ │ ├── e_circlepan.pd │ │ │ ├── e_dubdel-help.pd │ │ │ ├── e_dubdel.pd │ │ │ ├── e_dynproc-help.pd │ │ │ ├── e_dynproc.pd │ │ │ ├── e_fbdelay-help.pd │ │ │ ├── e_fbdelay.pd │ │ │ ├── e_fbdelay2.pd │ │ │ ├── e_forcepitch-help.pd │ │ │ ├── e_forcepitch.pd │ │ │ ├── e_freqshift-help.pd │ │ │ ├── e_freqshift.pd │ │ │ ├── e_graindelread-help.pd │ │ │ ├── e_graindelread.pd │ │ │ ├── e_lop2-help.pd │ │ │ ├── e_lop2.pd │ │ │ ├── e_lop4-help.pd │ │ │ ├── e_lop4.pd │ │ │ ├── e_pan-help.pd │ │ │ ├── e_pan.pd │ │ │ ├── e_phaser-help.pd │ │ │ ├── e_phaser.pd │ │ │ ├── e_pingpong-help.pd │ │ │ ├── e_pingpong.pd │ │ │ ├── e_pitchshift-help.pd │ │ │ ├── e_pitchshift.pd │ │ │ ├── e_platereverb-help.pd │ │ │ ├── e_platereverb.pd │ │ │ ├── e_repeater-help.pd │ │ │ ├── e_repeater.pd │ │ │ ├── e_reslop-help.pd │ │ │ ├── e_reslop.pd │ │ │ ├── e_resonzq-help.pd │ │ │ ├── e_resonzq.pd │ │ │ ├── e_reverb-help.pd │ │ │ ├── e_reverb.pd │ │ │ ├── e_scompress-help.pd │ │ │ ├── e_scompress.pd │ │ │ ├── e_sdelay-help.pd │ │ │ ├── e_sdelay.pd │ │ │ ├── e_softclip-help.pd │ │ │ ├── e_softclip.pd │ │ │ ├── e_stereowidener-help.pd │ │ │ ├── e_stereowidener.pd │ │ │ ├── e_tremolo-help.pd │ │ │ ├── e_tremolo.pd │ │ │ ├── e_vocoder-help.pd │ │ │ ├── e_vocoder.pd │ │ │ ├── g.txt │ │ │ ├── g_channelstrip-help.pd │ │ │ ├── g_channelstrip.pd │ │ │ ├── g_hradio-help.pd │ │ │ ├── g_hradio.pd │ │ │ ├── g_hsl-help.pd │ │ │ ├── g_hsl.pd │ │ │ ├── g_hsl4-help.pd │ │ │ ├── g_hsl4.pd │ │ │ ├── g_nbx-help.pd │ │ │ ├── g_nbx.pd │ │ │ ├── g_nhsl-help.pd │ │ │ ├── g_nhsl.pd │ │ │ ├── g_pattern32-help.pd │ │ │ ├── g_pattern32.pd │ │ │ ├── g_showimage-help.pd │ │ │ ├── g_showimage.pd │ │ │ ├── g_showtext-help.pd │ │ │ ├── g_showtext.pd │ │ │ ├── g_symbol-help.pd │ │ │ ├── g_symbol.pd │ │ │ ├── g_synsl-help.pd │ │ │ ├── g_synsl.pd │ │ │ ├── g_synthcontrol-help.pd │ │ │ ├── g_synthcontrol.pd │ │ │ ├── g_tgl-help.pd │ │ │ ├── g_tgl.pd │ │ │ ├── g_vol-help.pd │ │ │ ├── g_vol.pd │ │ │ ├── g_vol2-help.pd │ │ │ ├── g_vol2.pd │ │ │ ├── m.txt │ │ │ ├── m_accel_magnitude-help.pd │ │ │ ├── m_accel_magnitude.pd │ │ │ ├── m_accel_pitch-help.pd │ │ │ ├── m_accel_pitch.pd │ │ │ ├── m_accel_roll-help.pd │ │ │ ├── m_accel_roll.pd │ │ │ ├── m_accel_status-help.pd │ │ │ ├── m_accel_status.pd │ │ │ ├── m_autoscale-help.pd │ │ │ ├── m_autoscale.pd │ │ │ ├── m_beat2ms-help.pd │ │ │ ├── m_beat2ms.pd │ │ │ ├── m_bpm2ms-help.pd │ │ │ ├── m_bpm2ms.pd │ │ │ ├── m_chorddict-help.pd │ │ │ ├── m_chorddict.pd │ │ │ ├── m_intv2ratio-help.pd │ │ │ ├── m_intv2ratio.pd │ │ │ ├── m_keyfollow-help.pd │ │ │ ├── m_keyfollow.pd │ │ │ ├── m_majorscale-help.pd │ │ │ ├── m_majorscale.pd │ │ │ ├── m_markovanal-help.pd │ │ │ ├── m_markovanal.pd │ │ │ ├── m_minorscale-help.pd │ │ │ ├── m_minorscale.pd │ │ │ ├── m_ms2beat-help.pd │ │ │ ├── m_ms2beat.pd │ │ │ ├── m_ms2sm-help.pd │ │ │ ├── m_ms2sm.pd │ │ │ ├── m_ratio2intv-help.pd │ │ │ ├── m_ratio2intv.pd │ │ │ ├── m_scale-help.pd │ │ │ ├── m_scale.pd │ │ │ ├── m_sm2ms-help.pd │ │ │ ├── m_sm2ms.pd │ │ │ ├── m_speedlimit-help.pd │ │ │ ├── m_speedlimit.pd │ │ │ ├── m_symbolarray-help.pd │ │ │ ├── m_symbolarray.pd │ │ │ ├── m_thresholds-help.pd │ │ │ ├── m_thresholds.pd │ │ │ ├── m_touch2grid-help.pd │ │ │ ├── m_touch2grid.pd │ │ │ ├── rj-meta.pd │ │ │ ├── rj.txt │ │ │ ├── rj_image-help.pd │ │ │ ├── rj_image.pd │ │ │ ├── s.txt │ │ │ ├── s_blsaw-help.pd │ │ │ ├── s_blsaw.pd │ │ │ ├── s_blsquare-help.pd │ │ │ ├── s_blsquare.pd │ │ │ ├── s_buzz-help.pd │ │ │ ├── s_buzz.pd │ │ │ ├── s_chip-help.pd │ │ │ ├── s_chip.pd │ │ │ ├── s_cwc-help.pd │ │ │ ├── s_cwc.pd │ │ │ ├── s_czz-help.pd │ │ │ ├── s_czz.pd │ │ │ ├── s_drumelectro-help.pd │ │ │ ├── s_drumelectro.pd │ │ │ ├── s_ejun-help.pd │ │ │ ├── s_ejun.pd │ │ │ ├── s_fm4-help.pd │ │ │ ├── s_fm4.pd │ │ │ ├── s_fmoscil-help.pd │ │ │ ├── s_fmoscil.pd │ │ │ ├── s_fplaytable-help.pd │ │ │ ├── s_fplaytable.pd │ │ │ ├── s_fplaytable2.pd │ │ │ ├── s_guitar-help.pd │ │ │ ├── s_guitar.pd │ │ │ ├── s_hstr-help.pd │ │ │ ├── s_hstr.pd │ │ │ ├── s_looper-help.pd │ │ │ ├── s_looper.pd │ │ │ ├── s_loopsmooth-help.pd │ │ │ ├── s_loopsmooth.pd │ │ │ ├── s_noish-help.pd │ │ │ ├── s_noish.pd │ │ │ ├── s_noiz-help.pd │ │ │ ├── s_noiz.pd │ │ │ ├── s_osc-help.pd │ │ │ ├── s_osc.pd │ │ │ ├── s_pinknoise-help.pd │ │ │ ├── s_pinknoise.pd │ │ │ ├── s_playolap-help.pd │ │ │ ├── s_playolap.pd │ │ │ ├── s_playtable-help.pd │ │ │ ├── s_playtable.pd │ │ │ ├── s_playtable2-help.pd │ │ │ ├── s_playtable2.pd │ │ │ ├── s_rhodey-help.pd │ │ │ ├── s_rhodey.pd │ │ │ ├── s_spad-help.pd │ │ │ ├── s_spad.pd │ │ │ ├── s_vphasor-help.pd │ │ │ ├── s_vphasor.pd │ │ │ ├── s_wsb-help.pd │ │ │ ├── s_wsb.pd │ │ │ ├── u.txt │ │ │ ├── u_bandpass1-help.pd │ │ │ ├── u_bandpass1.pd │ │ │ ├── u_bandpass1q-help.pd │ │ │ ├── u_bandpass1q.pd │ │ │ ├── u_bandpass2-help.pd │ │ │ ├── u_bandpass2.pd │ │ │ ├── u_bandpass2q-help.pd │ │ │ ├── u_bandpass2q.pd │ │ │ ├── u_channelstrip-help.pd │ │ │ ├── u_channelstrip.pd │ │ │ ├── u_cocollect-help.pd │ │ │ ├── u_cocollect.pd │ │ │ ├── u_collect-help.pd │ │ │ ├── u_collect.pd │ │ │ ├── u_dispatch-help.pd │ │ │ ├── u_dispatch.pd │ │ │ ├── u_dumpfile-help.pd │ │ │ ├── u_dumpfile.pd │ │ │ ├── u_fade-help.pd │ │ │ ├── u_fade.pd │ │ │ ├── u_follower.pd │ │ │ ├── u_highpass-help.pd │ │ │ ├── u_highpass.pd │ │ │ ├── u_highpassq-help.pd │ │ │ ├── u_highpassq.pd │ │ │ ├── u_listdrip-help.pd │ │ │ ├── u_listdrip.pd │ │ │ ├── u_listequal-help.pd │ │ │ ├── u_listequal.pd │ │ │ ├── u_listfilter-help.pd │ │ │ ├── u_listfilter.pd │ │ │ ├── u_listloop-help.pd │ │ │ ├── u_listloop.pd │ │ │ ├── u_listmap-help.pd │ │ │ ├── u_listmap.pd │ │ │ ├── u_listnth-help.pd │ │ │ ├── u_listnth.pd │ │ │ ├── u_listrandom-help.pd │ │ │ ├── u_listrandom.pd │ │ │ ├── u_listreduce-help.pd │ │ │ ├── u_listreduce.pd │ │ │ ├── u_listser-help.pd │ │ │ ├── u_listser.pd │ │ │ ├── u_loader-help.pd │ │ │ ├── u_loader.pd │ │ │ ├── u_loadmeter-help.pd │ │ │ ├── u_loadmeter.pd │ │ │ ├── u_lowpass-help.pd │ │ │ ├── u_lowpass.pd │ │ │ ├── u_lowpassq-help.pd │ │ │ ├── u_lowpassq.pd │ │ │ ├── u_makepoly-help.pd │ │ │ ├── u_makepoly.pd │ │ │ ├── u_messagesaver-help.pd │ │ │ ├── u_messagesaver.pd │ │ │ ├── u_multisamplebank-help.pd │ │ │ ├── u_multisamplebank.pd │ │ │ ├── u_multisamplebank2-help.pd │ │ │ ├── u_multisamplebank2.pd │ │ │ ├── u_record-help.pd │ │ │ ├── u_record.pd │ │ │ ├── u_robinpoly-help.pd │ │ │ ├── u_robinpoly.pd │ │ │ ├── u_robinpolymono-help.pd │ │ │ ├── u_robinpolymono.pd │ │ │ ├── u_samplebank-help.pd │ │ │ ├── u_samplebank.pd │ │ │ ├── u_samplebank2-help.pd │ │ │ ├── u_samplebank2.pd │ │ │ ├── u_samplekit-help.pd │ │ │ ├── u_samplekit.pd │ │ │ ├── u_samplekit2-help.pd │ │ │ ├── u_samplekit2.pd │ │ │ ├── u_show-help.pd │ │ │ ├── u_show.pd │ │ │ ├── u_sigm-help.pd │ │ │ ├── u_sigm.pd │ │ │ ├── u_spinner-help.pd │ │ │ ├── u_spinner.pd │ │ │ ├── u_splicetrans-help.pd │ │ │ ├── u_splicetrans.pd │ │ │ ├── u_sssad.pd │ │ │ ├── u_stereo-help.pd │ │ │ ├── u_stereo.pd │ │ │ ├── u_wrandom-help.pd │ │ │ └── u_wrandom.pd │ │ │ ├── savefiles │ │ │ └── default.cbs │ │ │ ├── tanh~.pd │ │ │ └── wobbler.pd │ ├── build.gradle │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-tvdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── src │ │ └── net │ │ │ └── mgsx │ │ │ └── ppp │ │ │ └── samples │ │ │ └── wobble │ │ │ ├── MainActivity.java │ │ │ ├── TrackLed.java │ │ │ ├── WobbleSelector.java │ │ │ ├── WobbleSelectorGroup.java │ │ │ └── WobblerFactory.java │ └── web │ │ └── ic_launcher.png └── example-default │ ├── AndroidManifest.xml │ ├── assets │ └── example │ │ └── example.pd │ ├── build.gradle │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-tvdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── src │ └── net │ │ └── mgsx │ │ └── ppp │ │ └── example │ │ └── Example.java │ └── web │ └── ic_launcher.png ├── settings.gradle ├── svg-android ├── .gitignore ├── AndroidManifest.xml ├── NOTICE ├── proguard.cfg ├── project.properties ├── readme.txt ├── res │ └── .gitignore └── src │ └── com │ └── larvalabs │ └── svgandroid │ ├── Gradient.java │ ├── NumberParse.java │ ├── ParserHelper.java │ ├── Properties.java │ ├── SVG.java │ ├── SVGHandler.java │ ├── SVGParseException.java │ ├── SVGParser.java │ ├── StyleSet.java │ └── package-info.java ├── tests ├── abstractions │ ├── ClockTestDesktop.pd │ └── persist │ │ ├── PersistTestDesktop.pd │ │ ├── README.md │ │ ├── data │ │ └── .gitignore │ │ ├── relative.pd │ │ └── run.sh ├── pd-party-test │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── README.md │ ├── assets │ │ ├── GUITest │ │ │ ├── gui-abs-test.pd │ │ │ ├── gui-high.pd │ │ │ ├── gui-sliders.pd │ │ │ ├── gui-test.pd │ │ │ ├── gui-ultra-high.pd │ │ │ ├── gui-ultra-wide.pd │ │ │ ├── gui-wide.pd │ │ │ └── myGuiAbs.pd │ │ ├── GUITestTaplist │ │ │ └── GUITestTaplist.pd │ │ ├── MultiPatch │ │ │ ├── control.pd │ │ │ ├── core.pd │ │ │ ├── main.pd │ │ │ └── presets │ │ │ │ └── .gitignore │ │ ├── OriginalVsCustom-Factory │ │ │ └── custom.pd │ │ ├── PersistTest │ │ │ ├── PersistTestAndroid.pd │ │ │ └── presets │ │ │ │ ├── test.cbs │ │ │ │ └── test.cbs-array1 │ │ ├── SVGTheme-BTF │ │ │ ├── Array-background.svg │ │ │ ├── Bang-off.svg │ │ │ ├── Bang-on.svg │ │ │ ├── Number-back.svg │ │ │ ├── Radio-background.svg │ │ │ ├── Radio-button.svg │ │ │ ├── Slider-vertical-foreground.svg │ │ │ ├── Slider-vertical.svg │ │ │ ├── Slider-widget-vertical.svg │ │ │ ├── Toggle-off.svg │ │ │ ├── Toggle-on.svg │ │ │ ├── VUMeter-background.svg │ │ │ ├── background.svg │ │ │ └── gui-svg-test.pd │ │ ├── SVGTheme │ │ │ ├── Array-background.svg │ │ │ ├── Bang-off.svg │ │ │ ├── Bang-on.svg │ │ │ ├── Number-back.svg │ │ │ ├── Radio-background.svg │ │ │ ├── Radio-button.svg │ │ │ ├── Slider-vertical-foreground.svg │ │ │ ├── Slider-vertical.svg │ │ │ ├── Slider-widget-vertical.svg │ │ │ ├── Toggle-off.svg │ │ │ ├── Toggle-on.svg │ │ │ ├── VUMeter-background.svg │ │ │ ├── background.svg │ │ │ └── gui-svg-test.pd │ │ ├── StandardExternal │ │ │ └── StandardExternal.pd │ │ ├── abs-abs-Test │ │ │ ├── abs-abs.pd │ │ │ └── myAbs.pd │ │ ├── arrayTest │ │ │ └── libPdTest.pd │ │ ├── clockTest │ │ │ └── clockTest.pd │ │ ├── custom │ │ │ └── custom.pd │ │ └── inputTest │ │ │ └── main.pd │ ├── build.gradle │ ├── lint.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── net │ │ └── mgsx │ │ └── ppp │ │ └── test │ │ ├── ClockTest.java │ │ ├── GUIArrayActivity.java │ │ ├── GUISlidersActivity.java │ │ ├── GUITestTaplist.java │ │ ├── GUIThemeActivity.java │ │ ├── GUIThemeBTFActivity.java │ │ ├── GUIThemeMonoDarkActivity.java │ │ ├── GUIThemeMonoLightActivity.java │ │ ├── GUIWidgetAbstractActivity.java │ │ ├── GUIWidgetActivity.java │ │ ├── GuiOriginalVsCustom.java │ │ ├── InputTestActivity.java │ │ ├── MainActivity.java │ │ ├── MultiPatchActivity.java │ │ ├── PersistAbsTest.java │ │ ├── PersistTestActivity.java │ │ ├── StandardExternalTestActivity.java │ │ └── custom │ │ ├── CustomActivity.java │ │ ├── CustomArray.java │ │ ├── CustomComment.java │ │ ├── CustomRadio.java │ │ ├── CustomSlider.java │ │ ├── CustomSubpatch.java │ │ ├── HiddenSubpatch.java │ │ └── HiddenWidget.java └── svg-android-test │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ └── test.svg │ ├── build.gradle │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── example │ └── svgtest │ └── MainActivity.java └── tools ├── android-screen-ratios ├── README.md └── android-screen-ratios.pd ├── banner ├── banner.xcf ├── ppp-banner.svg └── readme.md ├── icon ├── populate_samples_with_icons.sh ├── populate_with_icons.sh ├── ppp-icon.svg └── readme.md └── patch-scanner ├── README.md ├── find.rb └── scan.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/README.md -------------------------------------------------------------------------------- /eclipse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/eclipse.sh -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/src/net/mgsx/ppp/midi/BiClockScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/lib/src/net/mgsx/ppp/midi/BiClockScheduler.java -------------------------------------------------------------------------------- /lib/src/net/mgsx/ppp/midi/ClockScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/lib/src/net/mgsx/ppp/midi/ClockScheduler.java -------------------------------------------------------------------------------- /lib/test/net/mgsx/ppp/midi/ClockSchedulerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/lib/test/net/mgsx/ppp/midi/ClockSchedulerTest.java -------------------------------------------------------------------------------- /pd-for-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-for-android/.gitignore -------------------------------------------------------------------------------- /pd-for-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-for-android/build.gradle -------------------------------------------------------------------------------- /pd-party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/.gitignore -------------------------------------------------------------------------------- /pd-party/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/AndroidManifest.xml -------------------------------------------------------------------------------- /pd-party/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/LICENSE.txt -------------------------------------------------------------------------------- /pd-party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/README.md -------------------------------------------------------------------------------- /pd-party/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/TODO.txt -------------------------------------------------------------------------------- /pd-party/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/build.gradle -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/clock-gui.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/clock-gui.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/clock-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/clock-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/clock.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/clock.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/loadsave-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/loadsave-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/loadsave.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/loadsave.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/midiclockout-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/midiclockout-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/midiclockout.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/midiclockout.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-load-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-load-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-load.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-load.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-map-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-map-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-map.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-map.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-save-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-save-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-save.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-save.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-table-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-table-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/persist-table.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/persist-table.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/taplist-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/taplist-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/taplist.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/taplist.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/touch-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/touch-help.pd -------------------------------------------------------------------------------- /pd-party/droidparty-abstractions/touch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/droidparty-abstractions/touch.pd -------------------------------------------------------------------------------- /pd-party/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/project.properties -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_cast.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_download.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_io.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_network_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_network_wifi.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_pause.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_play.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_replay.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_soundoff.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_soundon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_soundon.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_time.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_upload.png -------------------------------------------------------------------------------- /pd-party/res/drawable-hdpi/ic_action_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-hdpi/ic_action_usb.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_cast.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_download.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_io.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_network_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_network_wifi.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_pause.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_play.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_replay.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_soundoff.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_soundon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_soundon.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_time.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_upload.png -------------------------------------------------------------------------------- /pd-party/res/drawable-mdpi/ic_action_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-mdpi/ic_action_usb.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_cast.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_download.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_io.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_network_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_network_wifi.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_pause.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_play.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_replay.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_soundoff.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_soundon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_soundon.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_time.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_upload.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xhdpi/ic_action_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xhdpi/ic_action_usb.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_cast.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_download.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_io.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_network_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_network_wifi.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_pause.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_play.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_replay.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_soundoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_soundoff.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_soundon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_soundon.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_time.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_upload.png -------------------------------------------------------------------------------- /pd-party/res/drawable-xxhdpi/ic_action_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable-xxhdpi/ic_action_usb.png -------------------------------------------------------------------------------- /pd-party/res/drawable/radio_button_toggle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable/radio_button_toggle.xml -------------------------------------------------------------------------------- /pd-party/res/drawable/radio_button_toggle_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable/radio_button_toggle_off.xml -------------------------------------------------------------------------------- /pd-party/res/drawable/radio_button_toggle_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable/radio_button_toggle_on.xml -------------------------------------------------------------------------------- /pd-party/res/drawable/textback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/drawable/textback.xml -------------------------------------------------------------------------------- /pd-party/res/layout/load_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/load_dialog.xml -------------------------------------------------------------------------------- /pd-party/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/main.xml -------------------------------------------------------------------------------- /pd-party/res/layout/numberbox_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/numberbox_dialog.xml -------------------------------------------------------------------------------- /pd-party/res/layout/save_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/save_dialog.xml -------------------------------------------------------------------------------- /pd-party/res/layout/symbol_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/symbol_dialog.xml -------------------------------------------------------------------------------- /pd-party/res/layout/tempo_scale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/layout/tempo_scale.xml -------------------------------------------------------------------------------- /pd-party/res/raw/dejavu_sans_mono_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/raw/dejavu_sans_mono_bold.ttf -------------------------------------------------------------------------------- /pd-party/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/values/ids.xml -------------------------------------------------------------------------------- /pd-party/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/res/values/strings.xml -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/LoadDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/LoadDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/NumberboxDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/NumberboxDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/PdDroidParty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/PdDroidParty.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/PdDroidPartyConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/PdDroidPartyConfig.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/PdDroidPartyLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/PdDroidPartyLauncher.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/SaveDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/SaveDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/SymbolDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/SymbolDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiClock.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiCode.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiDevice.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiInput.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiListener.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiManager.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiManagerHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiManagerHandler.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiOutput.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/MidiPort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/MidiPort.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/UsbMidiHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/UsbMidiHandler.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/UsbMidiManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/UsbMidiManager.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/ip/IPMidiDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/ip/IPMidiDevice.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/ip/IPMidiInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/ip/IPMidiInput.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/ip/IPMidiOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/ip/IPMidiOutput.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/pd/PdMidiDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/pd/PdMidiDevice.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/midi/pd/PdMidiOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/midi/pd/PdMidiOutput.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/net/NetworkHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/net/NetworkHelper.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/DroidPartyReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/DroidPartyReceiver.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/PdClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/PdClock.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/PdGUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/PdGUI.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/PdHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/PdHelper.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/PdParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/PdParser.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/pd/PdPatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/pd/PdPatch.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/svg/SVGInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/svg/SVGInfo.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/svg/SVGRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/svg/SVGRenderer.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/theme/Theme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/theme/Theme.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/theme/mono/MonochromeTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/theme/mono/MonochromeTheme.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/theme/pd/PdTheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/theme/pd/PdTheme.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/util/FileHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/util/FileHelper.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/ClockSettingsDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/ClockSettingsDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/MidiConfigDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/MidiConfigDialog.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/MidiPortAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/MidiPortAdapter.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/NumberSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/NumberSelector.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/PdDroidPatchView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/PdDroidPatchView.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/view/PdPartyClockControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/view/PdPartyClockControl.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/OrientedWidget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/OrientedWidget.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/Widget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/Widget.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/WidgetFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/WidgetFactory.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/abs/LoadSave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/abs/LoadSave.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/abs/Taplist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/abs/Taplist.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/abs/Touch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/abs/Touch.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Bang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Bang.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Canvasrect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Canvasrect.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Comment.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Numberbox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Numberbox.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Numberbox2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Numberbox2.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Radio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Radio.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Slider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Slider.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Subpatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Subpatch.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Symbol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Symbol.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/Toggle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/Toggle.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/core/VUMeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/core/VUMeter.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/FilledToggle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/FilledToggle.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/PopupTaplist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/PopupTaplist.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/RibbonSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/RibbonSlider.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/SimpleBang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/SimpleBang.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/SimpleRadio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/SimpleRadio.java -------------------------------------------------------------------------------- /pd-party/src/net/mgsx/ppp/widget/custom/SwitchToggle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/pd-party/src/net/mgsx/ppp/widget/custom/SwitchToggle.java -------------------------------------------------------------------------------- /samples/demo-AcidBass/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/.gitignore -------------------------------------------------------------------------------- /samples/demo-AcidBass/AcidBass_launcher_desktop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/AcidBass_launcher_desktop.pd -------------------------------------------------------------------------------- /samples/demo-AcidBass/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/assets/Acid_Bass/AcidBass_core.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/assets/Acid_Bass/AcidBass_core.pd -------------------------------------------------------------------------------- /samples/demo-AcidBass/assets/Acid_Bass/onestep2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/assets/Acid_Bass/onestep2.pd -------------------------------------------------------------------------------- /samples/demo-AcidBass/assets/Acid_Bass/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/assets/Acid_Bass/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-AcidBass/assets/Acid_Bass/voice.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/assets/Acid_Bass/voice.pd -------------------------------------------------------------------------------- /samples/demo-AcidBass/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/build.gradle -------------------------------------------------------------------------------- /samples/demo-AcidBass/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-AcidBass/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/project.properties -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidBass/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidBass/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/.gitignore -------------------------------------------------------------------------------- /samples/demo-AcidDrums/AcidDrums_launcher_desktop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/AcidDrums_launcher_desktop.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/perk-bassdrum.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/perk-bassdrum.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/perk-clap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/perk-clap.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/perk-cowbell.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/perk-cowbell.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/perk-hihat.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/perk-hihat.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/perk-snare.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/perk-snare.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/step.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/step.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/assets/Acid_Drums/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/assets/Acid_Drums/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-AcidDrums/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/build.gradle -------------------------------------------------------------------------------- /samples/demo-AcidDrums/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-AcidDrums/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/project.properties -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-AcidDrums/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-AcidDrums/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/.gitignore -------------------------------------------------------------------------------- /samples/demo-Arpeggio/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/assets/Arpeggio/arpeggio.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/assets/Arpeggio/arpeggio.pd -------------------------------------------------------------------------------- /samples/demo-Arpeggio/assets/Arpeggio/presets/initial.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/assets/Arpeggio/presets/initial.cbs -------------------------------------------------------------------------------- /samples/demo-Arpeggio/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/build.gradle -------------------------------------------------------------------------------- /samples/demo-Arpeggio/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-Arpeggio/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/project.properties -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-Arpeggio/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Arpeggio/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/.gitignore -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/a.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/c.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/e.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/g.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/m.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/rj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/rj.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/s.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/rj/u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/rj/u.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/assets/Chip_sequencer/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/assets/Chip_sequencer/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/build.gradle -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/project.properties -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-ChipSequencer/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-ChipSequencer/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/.gitignore -------------------------------------------------------------------------------- /samples/demo-Chorder/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-Chorder/Chorder_launcher_desktop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/Chorder_launcher_desktop.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/Chorder-controls.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/Chorder-controls.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/Chorder-core.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/Chorder-core.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/Chorder-gui.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/Chorder-gui.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/Chorder-playBoard.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/Chorder-playBoard.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/c_adsr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/c_adsr.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/c_armnote.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/c_armnote.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/c_passnote.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/c_passnote.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/c_xfade-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/c_xfade-help.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/c_xfade.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/c_xfade.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/chords-assembler.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/chords-assembler.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/musical-structure.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/musical-structure.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/s_rhodey-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/s_rhodey-help.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/s_rhodey.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/s_rhodey.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/u_dispatch-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/u_dispatch-help.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/assets/Chorder/u_dispatch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/assets/Chorder/u_dispatch.pd -------------------------------------------------------------------------------- /samples/demo-Chorder/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/build.gradle -------------------------------------------------------------------------------- /samples/demo-Chorder/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-Chorder/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/project.properties -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Chorder/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-Chorder/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-Chorder/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-Chorder/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-Chorder/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Chorder/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/.gitignore -------------------------------------------------------------------------------- /samples/demo-Glitcher/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/Glitcher.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/Glitcher.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/cos_panner.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/cos_panner.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/env_adj.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/env_adj.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/euclidean-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/euclidean-help.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/euclidean.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/euclidean.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/fx_bodyresonnance.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/fx_bodyresonnance.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/random_glitch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/random_glitch.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/assets/Glitcher/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/assets/Glitcher/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-Glitcher/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/build.gradle -------------------------------------------------------------------------------- /samples/demo-Glitcher/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-Glitcher/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/project.properties -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-Glitcher/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Glitcher/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/.gitignore -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/assets/Slicer/randrum.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/assets/Slicer/randrum.pd -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/assets/Slicer/rec.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/assets/Slicer/rec.pd -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/assets/Slicer/slicer2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/assets/Slicer/slicer2.pd -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/assets/Slicer/track~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/assets/Slicer/track~.pd -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/assets/savefiles/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/build.gradle -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/project.properties -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-VoiceSlicer/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-VoiceSlicer/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/.gitignore -------------------------------------------------------------------------------- /samples/demo-Wobbler/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Bang-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Bang-off.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Bang-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Bang-on.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Number-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Number-back.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Radio-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Radio-background.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Radio-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Radio-button.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Toggle-off.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/Toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/Toggle-on.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/background.svg -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/fx_bodyresonnance.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/fx_bodyresonnance.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/LICENSE.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/OVERVIEW.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/OVERVIEW.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/_markovanal.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/_markovanal.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/a.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/a_breath.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/a_breath.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/a_onset-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/a_onset-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/a_onset.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/a_onset.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_adsr-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_adsr-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_adsr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_adsr.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_adsrj-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_adsrj-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_adsrj.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_adsrj.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_bangx-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_bangx-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_bangx.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_bangx.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_bus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_bus-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_bus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_bus.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_cpfade-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_cpfade-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_cpfade.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_cpfade.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_drunk-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_drunk-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_drunk.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_drunk.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_ead-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_ead-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_ead.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_ead.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_frand-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_frand-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_frand.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_frand.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_frombus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_frombus-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_frombus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_frombus.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_lfo-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_lfo-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_lfo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_lfo.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_madsr-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_madsr-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_madsr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_madsr.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_madsrj-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_madsrj-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_madsrj.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_madsrj.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_markov-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_markov-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_markov.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_markov.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_mfade3-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_mfade3-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_mfade3.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_mfade3.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_mphasor-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_mphasor-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_mphasor.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_mphasor.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_multimetro.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_multimetro.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_multipass-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_multipass-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_multipass.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_multipass.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_pass-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_pass-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_pass.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_pass.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_patternchange.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_patternchange.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_seqplay-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_seqplay-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_seqplay.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_seqplay.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_taptap-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_taptap-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_taptap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_taptap.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_tobus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_tobus-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_tobus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_tobus.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_urn-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_urn-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_urn.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_urn.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_xfade-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_xfade-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/c_xfade.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/c_xfade.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_agc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_agc-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_agc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_agc.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_alias-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_alias-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_alias.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_alias.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_apdist-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_apdist-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_apdist.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_apdist.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_beequad-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_beequad-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_beequad.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_beequad.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_bitcrusher.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_bitcrusher.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_chorus-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_chorus-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_chorus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_chorus.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_chorusr-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_chorusr-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_chorusr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_chorusr.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_circlepan-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_circlepan-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_circlepan.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_circlepan.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_dubdel-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_dubdel-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_dubdel.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_dubdel.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_dynproc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_dynproc-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_dynproc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_dynproc.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_fbdelay2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_forcepitch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_forcepitch.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_freqshift-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_freqshift-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_freqshift.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_freqshift.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_graindelread.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_graindelread.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_lop2-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_lop2-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_lop2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_lop2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_lop4-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_lop4-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_lop4.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_lop4.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_pan-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_pan-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_pan.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_pan.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_phaser-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_phaser-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_phaser.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_phaser.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_pingpong-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_pingpong-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_pingpong.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_pingpong.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_pitchshift.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_pitchshift.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_platereverb.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_platereverb.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_repeater-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_repeater-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_repeater.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_repeater.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_reslop-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_reslop-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_reslop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_reslop.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_resonzq-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_resonzq-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_resonzq.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_resonzq.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_reverb-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_reverb-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_reverb.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_reverb.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_scompress-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_scompress-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_scompress.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_scompress.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_sdelay-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_sdelay-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_sdelay.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_sdelay.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_softclip-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_softclip-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_softclip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_softclip.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_stereowidener.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_stereowidener.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_tremolo-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_tremolo-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_tremolo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_tremolo.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_vocoder-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_vocoder-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/e_vocoder.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/e_vocoder.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_channelstrip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_channelstrip.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hradio-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hradio-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hradio.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hradio.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hsl-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hsl-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hsl.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hsl.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hsl4-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hsl4-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_hsl4.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_hsl4.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_nbx-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_nbx-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_nbx.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_nbx.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_nhsl-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_nhsl-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_nhsl.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_nhsl.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_pattern32.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_pattern32.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_showimage.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_showimage.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_showtext.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_showtext.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_symbol-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_symbol-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_symbol.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_symbol.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_synsl-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_synsl-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_synsl.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_synsl.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_synthcontrol.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_synthcontrol.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_tgl-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_tgl-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_tgl.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_tgl.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_vol-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_vol-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_vol.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_vol.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_vol2-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_vol2-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/g_vol2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/g_vol2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_accel_pitch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_accel_pitch.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_accel_roll.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_accel_roll.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_accel_status.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_accel_status.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_autoscale.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_autoscale.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_beat2ms-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_beat2ms-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_beat2ms.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_beat2ms.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_bpm2ms-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_bpm2ms-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_bpm2ms.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_bpm2ms.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_chorddict.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_chorddict.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_intv2ratio.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_intv2ratio.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_keyfollow.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_keyfollow.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_majorscale.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_majorscale.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_markovanal.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_markovanal.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_minorscale.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_minorscale.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_ms2beat-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_ms2beat-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_ms2beat.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_ms2beat.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_ms2sm-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_ms2sm-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_ms2sm.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_ms2sm.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_ratio2intv.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_ratio2intv.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_scale-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_scale-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_scale.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_scale.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_sm2ms-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_sm2ms-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_sm2ms.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_sm2ms.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_speedlimit.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_speedlimit.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_symbolarray.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_symbolarray.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_thresholds.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_thresholds.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/m_touch2grid.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/m_touch2grid.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/rj-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/rj-meta.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/rj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/rj.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/rj_image-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/rj_image-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/rj_image.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/rj_image.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_blsaw-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_blsaw-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_blsaw.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_blsaw.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_blsquare.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_blsquare.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_buzz-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_buzz-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_buzz.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_buzz.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_chip-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_chip-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_chip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_chip.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_cwc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_cwc-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_cwc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_cwc.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_czz-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_czz-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_czz.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_czz.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_drumelectro.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_drumelectro.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_ejun-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_ejun-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_ejun.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_ejun.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fm4-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fm4-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fm4.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fm4.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fmoscil-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fmoscil-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fmoscil.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fmoscil.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fplaytable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fplaytable.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_fplaytable2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_fplaytable2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_guitar-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_guitar-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_guitar.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_guitar.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_hstr-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_hstr-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_hstr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_hstr.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_looper-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_looper-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_looper.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_looper.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_loopsmooth.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_loopsmooth.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_noish-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_noish-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_noish.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_noish.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_noiz-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_noiz-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_noiz.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_noiz.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_osc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_osc-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_osc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_osc.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_pinknoise.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_pinknoise.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_playolap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_playolap.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_playtable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_playtable.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_playtable2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_playtable2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_rhodey-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_rhodey-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_rhodey.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_rhodey.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_spad-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_spad-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_spad.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_spad.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_vphasor-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_vphasor-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_vphasor.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_vphasor.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_wsb-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_wsb-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/s_wsb.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/s_wsb.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass1.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass1.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass1q.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass1q.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass2q.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_bandpass2q.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_channelstrip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_channelstrip.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_cocollect.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_cocollect.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_collect-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_collect-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_collect.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_collect.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_dispatch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_dispatch.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_dumpfile.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_dumpfile.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_fade-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_fade-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_fade.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_fade.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_follower.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_follower.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_highpass.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_highpass.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_highpassq.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_highpassq.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listdrip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listdrip.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listequal.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listequal.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listfilter.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listfilter.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listloop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listloop.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listmap-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listmap-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listmap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listmap.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listnth-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listnth-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listnth.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listnth.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listrandom.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listrandom.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listreduce.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listreduce.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listser-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listser-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_listser.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_listser.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_loader-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_loader-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_loader.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_loader.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_loadmeter.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_loadmeter.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_lowpass-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_lowpass-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_lowpass.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_lowpass.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_lowpassq.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_lowpassq.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_makepoly.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_makepoly.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_messagesaver.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_messagesaver.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_record-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_record-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_record.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_record.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_robinpoly.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_robinpoly.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_samplebank.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_samplebank.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_samplebank2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_samplebank2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_samplekit.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_samplekit.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_samplekit2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_samplekit2.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_show-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_show-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_show.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_show.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_sigm-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_sigm-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_sigm.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_sigm.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_spinner-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_spinner-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_spinner.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_spinner.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_splicetrans.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_splicetrans.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_sssad.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_sssad.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_stereo-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_stereo-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_stereo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_stereo.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_wrandom-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_wrandom-help.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/rj/u_wrandom.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/rj/u_wrandom.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/tanh~.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/tanh~.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/assets/Wobbler/wobbler.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/assets/Wobbler/wobbler.pd -------------------------------------------------------------------------------- /samples/demo-Wobbler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/build.gradle -------------------------------------------------------------------------------- /samples/demo-Wobbler/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/proguard-project.txt -------------------------------------------------------------------------------- /samples/demo-Wobbler/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/project.properties -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-tvdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-tvdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/values/strings.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/res/values/styles.xml -------------------------------------------------------------------------------- /samples/demo-Wobbler/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/demo-Wobbler/web/ic_launcher.png -------------------------------------------------------------------------------- /samples/example-default/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/example-default/assets/example/example.pd: -------------------------------------------------------------------------------- 1 | #N canvas 353 262 520 284 10; 2 | #X text 146 123 This patch will blow your mind !!; 3 | -------------------------------------------------------------------------------- /samples/example-default/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/build.gradle -------------------------------------------------------------------------------- /samples/example-default/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/project.properties -------------------------------------------------------------------------------- /samples/example-default/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/layout/activity_main.xml -------------------------------------------------------------------------------- /samples/example-default/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/values-v11/styles.xml -------------------------------------------------------------------------------- /samples/example-default/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/values-v14/styles.xml -------------------------------------------------------------------------------- /samples/example-default/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/values/dimens.xml -------------------------------------------------------------------------------- /samples/example-default/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/values/strings.xml -------------------------------------------------------------------------------- /samples/example-default/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/res/values/styles.xml -------------------------------------------------------------------------------- /samples/example-default/web/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/samples/example-default/web/ic_launcher.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/settings.gradle -------------------------------------------------------------------------------- /svg-android/.gitignore: -------------------------------------------------------------------------------- 1 | /.classpath 2 | /.project 3 | /.settings 4 | /bin 5 | /gen -------------------------------------------------------------------------------- /svg-android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/AndroidManifest.xml -------------------------------------------------------------------------------- /svg-android/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/NOTICE -------------------------------------------------------------------------------- /svg-android/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/proguard.cfg -------------------------------------------------------------------------------- /svg-android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/project.properties -------------------------------------------------------------------------------- /svg-android/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/readme.txt -------------------------------------------------------------------------------- /svg-android/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/Gradient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/Gradient.java -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/Properties.java -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/SVG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/SVG.java -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/SVGHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/SVGHandler.java -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/SVGParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/SVGParser.java -------------------------------------------------------------------------------- /svg-android/src/com/larvalabs/svgandroid/StyleSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/svg-android/src/com/larvalabs/svgandroid/StyleSet.java -------------------------------------------------------------------------------- /tests/abstractions/ClockTestDesktop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/ClockTestDesktop.pd -------------------------------------------------------------------------------- /tests/abstractions/persist/PersistTestDesktop.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/persist/PersistTestDesktop.pd -------------------------------------------------------------------------------- /tests/abstractions/persist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/persist/README.md -------------------------------------------------------------------------------- /tests/abstractions/persist/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/persist/data/.gitignore -------------------------------------------------------------------------------- /tests/abstractions/persist/relative.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/persist/relative.pd -------------------------------------------------------------------------------- /tests/abstractions/persist/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/abstractions/persist/run.sh -------------------------------------------------------------------------------- /tests/pd-party-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/.gitignore -------------------------------------------------------------------------------- /tests/pd-party-test/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/pd-party-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/README.md -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-abs-test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-abs-test.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-high.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-high.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-sliders.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-sliders.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-test.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-ultra-high.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-ultra-high.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-ultra-wide.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-ultra-wide.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/gui-wide.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/gui-wide.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/GUITest/myGuiAbs.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/GUITest/myGuiAbs.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/MultiPatch/control.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/MultiPatch/control.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/MultiPatch/core.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/MultiPatch/core.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/MultiPatch/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/MultiPatch/main.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/MultiPatch/presets/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pd-party-test/assets/PersistTest/presets/test.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/PersistTest/presets/test.cbs -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Bang-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Bang-off.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Bang-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Bang-on.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Number-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Number-back.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Radio-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Radio-button.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Toggle-off.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/Toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/Toggle-on.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/background.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme-BTF/gui-svg-test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme-BTF/gui-svg-test.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Array-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Array-background.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Bang-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Bang-off.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Bang-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Bang-on.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Number-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Number-back.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Radio-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Radio-background.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Radio-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Radio-button.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Slider-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Slider-vertical.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Toggle-off.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/Toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/Toggle-on.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/background.svg -------------------------------------------------------------------------------- /tests/pd-party-test/assets/SVGTheme/gui-svg-test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/SVGTheme/gui-svg-test.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/abs-abs-Test/abs-abs.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/abs-abs-Test/abs-abs.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/abs-abs-Test/myAbs.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/abs-abs-Test/myAbs.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/arrayTest/libPdTest.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/arrayTest/libPdTest.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/clockTest/clockTest.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/clockTest/clockTest.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/custom/custom.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/custom/custom.pd -------------------------------------------------------------------------------- /tests/pd-party-test/assets/inputTest/main.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/assets/inputTest/main.pd -------------------------------------------------------------------------------- /tests/pd-party-test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/build.gradle -------------------------------------------------------------------------------- /tests/pd-party-test/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/lint.xml -------------------------------------------------------------------------------- /tests/pd-party-test/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/proguard-project.txt -------------------------------------------------------------------------------- /tests/pd-party-test/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/project.properties -------------------------------------------------------------------------------- /tests/pd-party-test/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/pd-party-test/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/pd-party-test/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/pd-party-test/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/pd-party-test/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/layout/activity_main.xml -------------------------------------------------------------------------------- /tests/pd-party-test/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/values-v11/styles.xml -------------------------------------------------------------------------------- /tests/pd-party-test/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/values-v14/styles.xml -------------------------------------------------------------------------------- /tests/pd-party-test/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/values/dimens.xml -------------------------------------------------------------------------------- /tests/pd-party-test/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/values/strings.xml -------------------------------------------------------------------------------- /tests/pd-party-test/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/res/values/styles.xml -------------------------------------------------------------------------------- /tests/pd-party-test/src/net/mgsx/ppp/test/ClockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/pd-party-test/src/net/mgsx/ppp/test/ClockTest.java -------------------------------------------------------------------------------- /tests/svg-android-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/.gitignore -------------------------------------------------------------------------------- /tests/svg-android-test/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/svg-android-test/assets/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/assets/test.svg -------------------------------------------------------------------------------- /tests/svg-android-test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/build.gradle -------------------------------------------------------------------------------- /tests/svg-android-test/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/ic_launcher-web.png -------------------------------------------------------------------------------- /tests/svg-android-test/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/proguard-project.txt -------------------------------------------------------------------------------- /tests/svg-android-test/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/project.properties -------------------------------------------------------------------------------- /tests/svg-android-test/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/svg-android-test/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tests/svg-android-test/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/layout/activity_main.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/menu/main.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values-v11/styles.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values-v14/styles.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values/dimens.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values/strings.xml -------------------------------------------------------------------------------- /tests/svg-android-test/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tests/svg-android-test/res/values/styles.xml -------------------------------------------------------------------------------- /tools/android-screen-ratios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/android-screen-ratios/README.md -------------------------------------------------------------------------------- /tools/android-screen-ratios/android-screen-ratios.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/android-screen-ratios/android-screen-ratios.pd -------------------------------------------------------------------------------- /tools/banner/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/banner/banner.xcf -------------------------------------------------------------------------------- /tools/banner/ppp-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/banner/ppp-banner.svg -------------------------------------------------------------------------------- /tools/banner/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/banner/readme.md -------------------------------------------------------------------------------- /tools/icon/populate_samples_with_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/icon/populate_samples_with_icons.sh -------------------------------------------------------------------------------- /tools/icon/populate_with_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/icon/populate_with_icons.sh -------------------------------------------------------------------------------- /tools/icon/ppp-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/icon/ppp-icon.svg -------------------------------------------------------------------------------- /tools/icon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/icon/readme.md -------------------------------------------------------------------------------- /tools/patch-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/patch-scanner/README.md -------------------------------------------------------------------------------- /tools/patch-scanner/find.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/patch-scanner/find.rb -------------------------------------------------------------------------------- /tools/patch-scanner/scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b2renger/PdDroidPublisher/HEAD/tools/patch-scanner/scan.rb --------------------------------------------------------------------------------