aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.txt
diff options
context:
space:
mode:
authorJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-18 16:32:27 +0000
committerJuha Vehviläinen <jusu@users.sourceforge.net>2002-09-18 16:32:27 +0000
commit3bd43c9d18e565e193e555f9de0ce916f8faf807 (patch)
tree81b3938b9863edf96efa6e0b1adf33081da5f440 /CHANGELOG.txt
parentabe3e28bb8c11236f42046e1c1fd6f809b00a823 (diff)
*** empty log message ***
svn path=/trunk/Framestein/; revision=132
Diffstat (limited to 'CHANGELOG.txt')
-rw-r--r--CHANGELOG.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 1721b35..cc32c73 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,19 @@
+0.32
+- fs.frame: |title this is the main window(
+- fs.copy: transcolor <r> <g> <b> to set the transparent color
+- better gol algo (Plugins\gol.c)
+- added 1d cell automata where each iteration will add a new row: Plugins\rowca
+- added arguments-class in pixels.h to ease parsing arguments to plugins.
+ example:
+
+ void perform_effect(_frame f, _args a)
+ {
+ arguments ar(a.s);
+
+ // ar.count() return the number of arguments
+ // ar[i] return i'th argument
+ ...
+
0.31
- added plugins by Olaf Matthes: PeRColate and PixelPack. Thanks, Olaf!
- the console is back. It's good for printf():ing from plugins..