Internal version number to 8.01 for imminent release v8.01
authorArt Cancro <ajc@uncensored.citadel.org>
Wed, 12 Oct 2011 20:52:55 +0000 (16:52 -0400)
committerArt Cancro <ajc@uncensored.citadel.org>
Wed, 12 Oct 2011 20:52:55 +0000 (16:52 -0400)
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 7480f35ffb1950d301f519a97d116805ec27b076..1cecac52bb239350bf100cb74599e0c63e5c20c6 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 eb3f4c0ed76de977763dd699cfcaa1dd2339f7c0..287d9122a598bbcbcb86a32b12401b716d91110d 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 ff87152b2fddba66ae7fc70aff72631cf215e748..3f1e59785c2050b9ea40f39a8600d2a80067d5f9 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... */
 
 
 /*