An open API service indexing awesome lists of open source software.

https://github.com/shamansir/rpd-puredata

PureData Toolkit for RPD Framework
https://github.com/shamansir/rpd-puredata

javascript pure-data reactive-streams rpd-engine

Last synced: about 1 year ago
JSON representation

PureData Toolkit for RPD Framework

Awesome Lists containing this project

README

          

# rpd-puredata

Puredata Toolkit for RPD-Framework

See http://github.com/shamansir/rpd for RPD Engine code, detailed information and docs.

This README will also be improved at some point, but for now this repo is just a
submodule for http://github.com/shamansir/rpd.

It can be used as an independent toolkit with compiled RPD engine, of course.

[ [Online playground with Puredata toolkit](http://shamansir.github.io/rpd/examples/pd.html) ].

### Releasing

When you commit some important changes here at last, and want to "release" them,
you should do that:

```
git commit ...
git push origin ...
git tag -af -m "Compatible with "
git push --force origin --tags
```

In the body of this repository copy, inside RPD engine repository, you should do:

```
git fetch origin
git merge origin/...
git fetch origin --tags
```

Then get back to the higher level of RPD (or even a root directory), and perform:

```
git submodule update --recursive
```

That should be it.