mirror of
https://github.com/anope/anope.git
synced 2026-06-29 21:06:37 +02:00
BUILD : 1.7.14 (1038) BUGS : 500 NOTES : Updated register script; it now accepts YES, yes, and Yes as valid values and tells about ./Config instead of ./configure
git-svn-id: svn://svn.anope.org/anope/trunk@1038 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@762 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
f77340e9eb
commit
295d457c44
@@ -9,6 +9,8 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
05/13 F Fixed memleak in moduleGetConfigDirective(). [#504]
|
||||
05/16 F Suspended nicks and chans won't expire from now on. [ #00]
|
||||
05/25 F NICKIP/NICKv2 support on unreal32. [#507]
|
||||
05/25 F src/bin/register being too case sensitive on YES. [#500]
|
||||
05/25 F src/bin/register still said ./configured instead of ./Config . [ #00]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
05/19 A Plexus 3 support. [ #00]
|
||||
|
||||
+4
-4
@@ -14,7 +14,7 @@ REGCACHE="register.cache"
|
||||
SENDMAIL="/usr/sbin/sendmail"
|
||||
|
||||
# SCRIPT VERSION NUMBER (DO NOT ALTER)
|
||||
REGISTERVERSION="1.2"
|
||||
REGISTERVERSION="1.3"
|
||||
|
||||
# DO NOT CHANGE IF YOU WANT TO REGISTER WITH ANOPE
|
||||
REGISTRYADDRESS="register@anope.org"
|
||||
@@ -30,7 +30,7 @@ if [ $0 != "./register" ] ; then
|
||||
fi
|
||||
|
||||
if [ ! -f $CACHEFILE ] ; then
|
||||
echo "Warning: Configuration cache file missing. Run ./configure"
|
||||
echo "Warning: Configuration cache file missing. Run ./Config first"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
@@ -54,7 +54,7 @@ fi
|
||||
echo "an idea of how many networks use Anope and what options"
|
||||
echo "they compile with so we can spend more time developing"
|
||||
echo "options that are more widely used. Note: The options"
|
||||
echo "you selected in ./configure will be sent."
|
||||
echo "you selected in ./Config will be sent."
|
||||
echo "You will be asked a series of questions, if you wish"
|
||||
echo "to be listed in the public network database all the"
|
||||
echo "information will be required."
|
||||
@@ -63,7 +63,7 @@ fi
|
||||
echo "Would you like to register? [Type YES to continue]"
|
||||
read answer
|
||||
|
||||
if [ $answer = "YES" ] ; then
|
||||
if [ $answer = "YES" ] || [ $answer = "yes" ] || [ $answer = "Yes" ] ; then
|
||||
|
||||
echo "Beginning registration..."
|
||||
echo "1. What is your network name? (e.g. Anope IRC Network)"
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1037"
|
||||
VERSION_BUILD="1038"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1038)
|
||||
# BUGS : 500
|
||||
# NOTES : Updated register script; it now accepts YES, yes, and Yes as valid values and tells about ./Config instead of ./configure
|
||||
#
|
||||
# BUILD : 1.7.14 (1037)
|
||||
# BUGS : 507
|
||||
# NOTES : Fixed NICKIP/NICKv2 support for unreal32
|
||||
|
||||
Reference in New Issue
Block a user