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
- Host: GitHub
- URL: https://github.com/shamansir/rpd-puredata
- Owner: shamansir
- Created: 2015-02-04T21:18:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-21T10:38:54.000Z (almost 11 years ago)
- Last Synced: 2025-03-28T16:43:25.747Z (about 1 year ago)
- Topics: javascript, pure-data, reactive-streams, rpd-engine
- Language: JavaScript
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.