bumped to version 2.8 final !

git-svn-id: https://flam3.googlecode.com/svn/trunk@21 77852712-ef1d-11de-8684-7d64432d61a3
This commit is contained in:
Erik Reckase 2010-10-04 11:04:45 +00:00 committed by Scott Draves
parent f75030e290
commit 1f04d47e55
3 changed files with 17 additions and 12 deletions

View File

@ -13,7 +13,7 @@ instead of a command like
env dtime=5 prefix=foo. in=test.flame flam3-animate env dtime=5 prefix=foo. in=test.flame flam3-animate
say use the following set of commands:
set dtime=5 set dtime=5
set prefix=foo. set prefix=foo.
@ -285,6 +285,7 @@ The complete list of variations:
94. csch 94. csch
95. coth 95. coth
96. auger 96. auger
97. flux
see http://flam3.com/flame.pdf for descriptions & formulas for each of see http://flam3.com/flame.pdf for descriptions & formulas for each of
these. note that, by default, if a random flame is requested and neither these. note that, by default, if a random flame is requested and neither
@ -305,6 +306,9 @@ todo: eliminate all static storage.
changelog: changelog:
10/04/10 Small tweaks. Fuse iterations default to 15 but increase to
100 when using earlyclip. flux variation added. Release as 2.8 final.
12/20/09 Highlight power now interpolates smoothly from old behavior 12/20/09 Highlight power now interpolates smoothly from old behavior
(-1) to new behavior. flam3-genome 'split' mode was broken, fixed (-1) to new behavior. flam3-genome 'split' mode was broken, fixed
(thanks Exper.) Die gracefully instead of segfault when very small (thanks Exper.) Die gracefully instead of segfault when very small
@ -358,7 +362,8 @@ changelog:
- symmetry has been broken out into color_speed and animate tags - symmetry has been broken out into color_speed and animate tags
with the same sense (which is confusing and will be fixed in a with the same sense (which is confusing and will be fixed in a
future release). future release).
- set the flam27 parameter to output backwards compatible genomes. - set the flam27 env var to output backwards compatible genomes
(when possible.)
- passes the consistency test where rendering an image at double - passes the consistency test where rendering an image at double
size and filtering it down produces the same results as the size and filtering it down produces the same results as the
original (modulo quality). original (modulo quality).

View File

@ -5,7 +5,7 @@ AC_INIT(flam3-animate.c)
AM_CONFIG_HEADER(config.h) AM_CONFIG_HEADER(config.h)
AC_ARG_ENABLE(pthread, [ --enable-pthread compile FLAM3 with threads enabled (default=yes)]) AC_ARG_ENABLE(pthread, [ --enable-pthread compile FLAM3 with threads enabled (default=yes)])
AC_ARG_ENABLE(atomic_ops, [ --enable-atomic-ops compile FLAM3 with atom ops enabled (default=yes, independently checks for 32 and 64 bit sizes)]) AC_ARG_ENABLE(atomic_ops, [ --enable-atomic-ops compile FLAM3 with atom ops enabled (default=yes, independently checks for 32 and 64 bit sizes)])
AM_INIT_AUTOMAKE(flam3,"2.8b11") AM_INIT_AUTOMAKE(flam3,"2.8")
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])

View File

@ -41,7 +41,7 @@ static char *the_docstring1 =
"\n" "\n"
" env dtime=5 prefix=foo. in=test.flame flam3-animate\n" " env dtime=5 prefix=foo. in=test.flame flam3-animate\n"
"\n" "\n"
"say\n" "use the following set of commands:\n"
"\n" "\n"
" set dtime=5\n" " set dtime=5\n"
" set prefix=foo.\n" " set prefix=foo.\n"