Skip to content

Commit fd80497

Browse files
committed
minor edits, version #
1 parent 1225f0a commit fd80497

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

clients.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## pd2jack OSC Clients
22

3-
A running instance of pd2jack can act as an OSC server, with a networked client acting as a GUI. Examples can be found in the **client** folder.
3+
A running instance of *pd2jack* can act as an OSC server, with a networked client acting as a GUI. Examples can be found in the **client** folder.
44

55
## Swap
66

@@ -35,13 +35,15 @@ Start the MobMuPlat app, then load "swap.mmp" from the documents prompt (upper l
3535
or if pd2jack isn't globally installed:
3636
./pd2jack -v 1 -i -o -O 224.0.0.1 -p pd/phase_vo.pd
3737

38-
This will start pd2jack in verbose interactive mode, with OSC enabled and a multicast group for outgoing OSC. The URL of 224.0.0.1 is standard for home routers, but could be different on commercial or education networks. This also holds for the MobMuPlat broadcast IP address.
38+
This will start *pd2jack* in verbose interactive mode, with OSC enabled and a multicast group for outgoing OSC. The URL of 224.0.0.1 is standard for home routers, but could be different on commercial or education networks. This also holds for the MobMuPlat broadcast IP address.
39+
40+
(The patch paths (in "swap.pd") are set for the subdir "pd", so the demo won't function unless the patches are in that folder. Edit "swap.pd" if other behavior is preferred.)
3941

4042
### Using the Swap client
4143

42-
- Changing a widgets will alter the values in the patch.
44+
- Changing a widget will alter the values in the patch.
4345

44-
- Select "Load Patch" and choose one of the two patches to load. The widget labels will change to correspond with the patch.
46+
- Select "Load Patch" and choose one of the two patches to load. **pd2jack** will clear the previous patch, and load the new one. The widget labels will change to correspond with the new patch.
4547

4648
Instructions for installing MobMuPlat can be found on the website: [MobMuPlat home.](https://danieliglesia.com/mobmuplat/)
4749

pd/apass.pd

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#N canvas 769 511 702 383 10;
2+
#X obj 129 103 dac~;
3+
#X obj 129 75 adc~;
4+
#X text 120 135 Audio 2 chan pass-through;
5+
#X connect 1 0 0 0;
6+
#X connect 1 1 0 1;

src/pd2jack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ using namespace std;
2121

2222
const int MAX_AUDIO_PORTS = 16;
2323
const int MAX_MIDI_PORTS = 16;
24-
const string versionString = "0.3.9";
24+
const string versionString = "0.4.0";
2525

2626
enum midiGlobalTypes {
2727
// MIDI consts

0 commit comments

Comments
 (0)