Internal version number to 8.01 for imminent release
authorArt Cancro <ajc@uncensored.citadel.org>
Wed, 12 Oct 2011 20:52:55 +0000 (16:52 -0400)
committerWilfried Goesgens <dothebart@citadel.org>
Tue, 18 Oct 2011 19:00:48 +0000 (21:00 +0200)
citadel/citadel.h
citadel/configure.ac
libcitadel/README.txt
libcitadel/configure.in
libcitadel/lib/libcitadel.h
webcit/webcit.h

index 5e9d6fc8f1942ca35984517ab0224244b5526f94..f3ef0ceb0c0426a59fed397846b0209eb8ffd21e 100644 (file)
@@ -51,10 +51,10 @@ extern "C" {
  * usually more strict because you're not really supposed to dump/load and
  * upgrade at the same time.
  */
-#define REV_LEVEL      800             /* This version */
+#define REV_LEVEL      801             /* This version */
 #define REV_MIN                591             /* Oldest compatible database */
 #define EXPORT_REV_MIN 760             /* Oldest compatible export files */
-#define LIBCITADEL_MIN 800             /* Minimum required version of libcitadel */
+#define LIBCITADEL_MIN 801             /* Minimum required version of libcitadel */
 
 #define SERVER_TYPE 0                  /* zero for stock Citadel; other developers please
                                           obtain SERVER_TYPE codes for your implementations */
index 11a65042e5a23f1ace604d6e291cd9f341f67bcf..dbe59677ed1dc840567f862ab8c392bd2bcb3bf4 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
-AC_INIT([Citadel], [8.00], [http://www.citadel.org/])
+AC_INIT([Citadel], [8.01], [http://www.citadel.org/])
 AC_REVISION([$Revision: 5108 $])
 AC_CONFIG_SRCDIR([citserver.c])
 AC_CONFIG_HEADER(sysdep.h)
index 68421977a306f4d7f33749c7d8bd3821ea0fb350..167df4b762f3b8907bc2cf502e7348b66acee19d 100644 (file)
@@ -4,7 +4,7 @@ WebCit.  It is not intended to be a general-purpose library for widespread
 use, although there are parts of it that may be useful for that purpose,
 such as the MIME parser and the vCard data type.
 
-Copyright (c) 1987-2010 by the citadel.org development team.
+Copyright (c) 1987-2011 by the citadel.org development team.
 This program is distributed under the terms of the GNU General Public
 License, version 3.
 
index d61a071c30f964bb94d233e542b727e83c9beb64..bc5e49f42966f4410ac7928f54c0f0b5176a4ce1 100755 (executable)
@@ -5,7 +5,7 @@ dnl
 dnl Ensure that libcitadel is configured with autoconf 2.52 or newer
 AC_PREREQ(2.52)
 
-AC_INIT(libcitadel, 8.00, http://uncensored.citadel.org)
+AC_INIT(libcitadel, 8.01, http://uncensored.citadel.org)
 
 AC_CONFIG_SRCDIR(Makefile.in)
 AC_CONFIG_AUX_DIR(conftools)
index 7ed8df24006b06910a73aec627de558779a5cc61..4afcbde893b4ba8bfb889f523054d744fbc65e45 100644 (file)
@@ -16,7 +16,7 @@
 #include <stdarg.h>
 #include <arpa/inet.h>
 
-#define LIBCITADEL_VERSION_NUMBER      800
+#define LIBCITADEL_VERSION_NUMBER      801
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
index 432bdf516eabe5b3aa950a0c17e0e91a46d5b4f1..ad5aafc110a7f8fa32b93c557903364b9dad926f 100644 (file)
@@ -144,9 +144,9 @@ extern char *ssl_cipher_list;
 #define PORT_NUM               2000            /* port number to listen on */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         800             /* This version of WebCit */
-#define MINIMUM_CIT_VERSION    800             /* min required Citadel ver */
-#define        LIBCITADEL_MIN          800             /* min required libcitadel ver */
+#define CLIENT_VERSION         801             /* This version of WebCit */
+#define MINIMUM_CIT_VERSION    801             /* min required Citadel ver */
+#define        LIBCITADEL_MIN          801             /* min required libcitadel ver */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"
 #define TARGET                 "webcit01"      /* Target for inline URL's */
@@ -199,14 +199,14 @@ extern char *ssl_cipher_list;
 /*
  * user/room access
  */
-#define UA_KNOWN       2
-#define UA_GOTOALLOWED 4
-#define UA_HASNEWMSGS  8
-#define UA_ZAPPED      16
+#define UA_KNOWN               2
+#define UA_GOTOALLOWED         4
+#define UA_HASNEWMSGS          8
+#define UA_ZAPPED              16
 #define UA_POSTALLOWED          32
 #define UA_ADMINALLOWED         64
 #define UA_DELETEALLOWED        128
-#define UA_ISTRASH              256 /* Only available in room view... */
+#define UA_ISTRASH              256    /* Only available in room view... */
 
 
 /*