diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-07-08 11:18:16 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-07-08 11:18:16 +0000 |
commit | 479f8331310a2e4aef98c32088a3298ec4dc3433 (patch) | |
tree | 479e70c65aa4a6dadf78c8764aae268ede0695fe | |
parent | 22e497a74cdd404cc1ff8b8414c087f0e4d2f851 (diff) |
added a version information (and immediately increased it to 0.2)
svn path=/trunk/externals/iem/aconnect/; revision=3305
-rw-r--r-- | aconnect.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -18,6 +18,7 @@ * license: GNU General Public License v.2 * ******************************************************/ +#define ACONNECT_VERSION "0.2" #include "m_pd.h" @@ -393,6 +394,7 @@ void aconnect_setup(void) post(" ported to pure-data by IOhannes m zmölnig 2005"); post(" institute of electronic music and acoustics (iem)"); post(" published under the GNU General Public License version 2"); + post(" version:"ACONNECT_VERSION"\tcompiled: "__DATE__""); aconnect_class = class_new(gensym("aconnect"), (t_newmethod)aconnect_new, 0, sizeof(t_aconnect), 0, 0); |