fwd: pd-list@iem.kug.ac.at, jmax@ircam.fr, ruby-talk@ruby-lang.org, 0xFF@music.columbia.edu
Here is a new release of GridFlow (a multi-dimensional dataflow processing library for Ruby, jMax and PureData, specialized in pictures and video)
http://artengine.ca/jmax/gridflow/
http://artengine.ca/jmax/gridflow/download/gridflow-0.6.3.tar.gz
If you have any questions and/or want to talk, there is the #dataflow chatroom on IRC.FreeNode.Net, where all MAX-like software is on-topic.
version 0.6.3 (2002.12.06):
former version 0.6.2 was released on 2002.09.17
Mathieu Bouchard http://artengine.ca/matju
On Fri, 6 Dec 2002, Mathieu Bouchard wrote:
version 0.6.3 (2002.12.06):
I found a bug in the file reader that causes it to always rewind after the first picture when there are several pictures in the same file. But since the bug is in scriptable code, then you can fix it yourself easily by putting this code in ~/.gridflow_startup :
require "gridflow/format/main"
GridFlow::GF_VERSION=="0.6.3" and
module GridFlow
class Format
def rewind_if_needed
thispos = (@stream.seek 0,IO::SEEK_CUR; @stream.tell)
lastpos = (@stream.seek 0,IO::SEEK_END; @stream.tell)
thispos = 0 if thispos == lastpos
@stream.seek thispos,IO::SEEK_SET
rescue Errno::ESPIPE # just ignore if seek is not possible
end
end
end
Mathieu Bouchard http://artengine.ca/matju
On Fri, 6 Dec 2002, Mathieu Bouchard wrote:
Here is a new release of GridFlow (a multi-dimensional dataflow processing library for Ruby, jMax and PureData, specialized in pictures and video)
if anyone has trouble installing GridFlow, please tell me.
in particular, i would like to know whether "make install" fails to overwrite the former version of gridflow.so; this results in "gridflow version 0.6.2" being shown in the jMax/PD log, and most of the problems of 0.6.2 showing up even though the real 0.6.3 is many times more stable.
if this is the case, tell me which version of Ruby you are using, and you may remove the old gridflow.so manually by doing this:
rm -i find /usr/lib/ruby -name gridflow.so
make install
(if ruby is not in /usr/lib/ruby then replace that name by the appropriate name, maybe /usr/local/lib/ruby)
I would get that problem fixed by next release.
Mathieu Bouchard http://artengine.ca/matju
On Fri, 20 Dec 2002, Mathieu Bouchard wrote:
in particular, i would like to know whether "make install" fails to overwrite the former version of gridflow.so; this results in "gridflow version 0.6.2" being shown in the jMax/PD log, and most of the problems of 0.6.2 showing up even though the real 0.6.3 is many times more stable.
[...]
I would get that problem fixed by next release.
Some notes about 0.6.3 :
I still have no evidence the aforementioned problem actually exists. I've had one report and assumed it was something else... however that "something else" only occurred when reinstalling from a shared filesystem when the clock is not synchronised, and that i was reinstalling too often... Ruby's installer will only install a newer file on top of an older file. I can circumvent that if people think it's a good idea to.
Now, another thing: I have gotten almost no feedback about this version of GridFlow. There's something I might not have advertised properly: 0.6.3 is _NOT_ crashy; it's possibly 1000 times less so than the previous version, which had a real problem with that.
So, for PureData users: this is the first version of GridFlow that actually works quite well with PureData. The main differences with the jMax side are now only:
Mathieu Bouchard http://artengine.ca/matju
fwd: pd-list@iem.kug.ac.at, jmax@ircam.fr, ruby-talk@ruby-lang.org, 0xFF@music.columbia.edu
Here is a new release of GridFlow (a multi-dimensional dataflow processing library for Ruby, jMax and PureData, specialized in pictures and video)
http://artengine.ca/jmax/gridflow/
http://artengine.ca/jmax/gridflow/download/gridflow-0.6.4.tar.gz
If you have any questions and/or want to talk, there is the #dataflow chatroom on IRC.FreeNode.Net, where all MAX-like software is on-topic.
If you have any trouble installing GridFlow, please send me an email about it or see me on IRC.
version 0.6.4 (2002.12.23):
(the previous version was released on 2002.12.06)
Mathieu Bouchard http://artengine.ca/matju