aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2003-06-18 13:57:18 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2003-06-18 13:57:18 +0000
commitb9b1e42d7438baf8316d87a46ce046ee08333186 (patch)
tree526777b4829724dd83be86906ee1d54972c7fea5 /src
parent24de4c622b68ceff0f8da103948f1e92eeff8fee (diff)
new splashscreen
svn path=/trunk/externals/zexy/; revision=711
Diffstat (limited to 'src')
-rw-r--r--src/zexy.c16
-rw-r--r--src/zexy.h10
2 files changed, 12 insertions, 14 deletions
diff --git a/src/zexy.c b/src/zexy.c
index 87a929b..99051e8 100644
--- a/src/zexy.c
+++ b/src/zexy.c
@@ -65,17 +65,16 @@ static void zexy_help(void)
"\nlist2int\t:: cast each float of a list to integer"
"\natoi\t\t:: convert ascii to integer"
"\nlist2symbol\t:: convert a list into a single symbol"
+ "\nsymbol2list\t:: split a symbol into a list"
"\nstrcmp\t\t:: compare 2 lists as if they where strings"
"\nrepack\t\t:: (re)packs atoms to packages of a given size"
"\npackel\t\t:: element of a package"
"\nlength\t\t:: length of a package"
"\nniagara\t\t:: divide a package into 2 sub-packages"
"\nglue\t\t:: append a list to another"
+ "\nrepeat\t\t:: repeat a message"
"\nsegregate\t:: sort inputs by type"
- "\nmatrix\t\t:: handle matrices"
"\n.\t\t:: scalar multiplication of vectors (lists of floats)"
- "\nmean\t\t:: get the arithmetic mean of a vector"
- "\nminmax\t\t:: get the minimum and the maximum of a vector"
"\n%c advanced message objects"
@@ -83,6 +82,8 @@ static void zexy_help(void)
"\ntabdump\t\t:: dump the table as a list"
"\ntabset\t\t:: set a table with a list"
"\nmavg\t\t:: a variable moving average filter"
+ "\nmean\t\t:: get the arithmetic mean of a vector"
+ "\nminmax\t\t:: get the minimum and the maximum of a vector"
"\nmakesymbol\t:: creates (formatted) symbols"
"\ndate\t\t:: get the current system date"
"\ntime\t\t:: get the current system time"
@@ -192,8 +193,6 @@ void z_sigmatrix_setup();
void z_strings_setup();
-void z_down_setup();
-
void z_prime_setup();
void z_random_setup();
void z_wrap_setup();
@@ -269,15 +268,14 @@ void zexy_setup(void)
#ifdef linux
z_lp_setup();
#endif
- z_down_setup();
/* ************************************** */
-
startpost("\n\t");
for (i=0; i<28; i++) startpost("%c", HEARTSYMBOL);
endpost();
- post("\t%c...the zexy external"VERSION"...%c", HEARTSYMBOL, HEARTSYMBOL);
- post("\t%c forum::für::umläute 2000 %c", HEARTSYMBOL, HEARTSYMBOL);
+ post("\t%c the zexy external "VERSION" %c", HEARTSYMBOL, HEARTSYMBOL);
+ post("\t%c (l) forum::für::umläute %c", HEARTSYMBOL, HEARTSYMBOL);
+ post("\t%c compiled: "__DATE__" %c", HEARTSYMBOL, HEARTSYMBOL);
post("\t%c send me a 'help' message %c", HEARTSYMBOL, HEARTSYMBOL);
startpost("\t");
for (i=0; i<28; i++) startpost("%c", HEARTSYMBOL);
diff --git a/src/zexy.h b/src/zexy.h
index 95d760d..bd41ed6 100644
--- a/src/zexy.h
+++ b/src/zexy.h
@@ -9,13 +9,13 @@
* (except if you want to use the code for other things)
* download "pure data" at
- http://iem.kug.ac.at/pd
- ftp://iem.kug.ac.at/pd
+ http://pd.iem.at
+ ftp://iem.at/pd
*
* if you are looking for the latest release of the ZEXY-external you should have another look at
- ftp://iem.kug.ac.at/pd/Externals/ZEXY
+ ftp://iem.at/pd/Externals/ZEXY
*
* ZEXY is published under the GNU GeneralPublicLicense, that must be shipped with ZEXY.
@@ -32,14 +32,14 @@
#include "m_pd.h"
-#define VERSION "1P2"
+#define VERSION "1.3"
#ifdef NT
/* yes, we have beautiful hearts under NT */
#define HEARTSYMBOL 3
#else
/* but none for linux; indeed the only drawback */
-#define HEARTSYMBOL 64
+#define HEARTSYMBOL 169
#endif
#endif