Commit Diff
Diff:
28bbd7e27a44ff3c03f86aa6f17a578ad15ee498
6d11fb149707194e986b0d64af3d44f21e158fcc
Commit:
6d11fb149707194e986b0d64af3d44f21e158fcc
Tree:
96f9ef97d5bcaceb76bd6a4bf9648063f9f5b69e
Author:
Alexander Barton <alex@barton.de>
Committer:
Alexander Barton <alex@barton.de>
Date:
Sun Jan 9 15:11:12 2011 UTC
Message:
Update copyright notices for 2010 :) And update the NEWS and ChangeLog file as well.
blob - e0e1d07c80f5260b1c0088fc433edf31d8916826
blob + 03a19dd342f638d0326372af7247a5e4a00b7107
--- AUTHORS
+++ AUTHORS
@@ -1,9 +1,8 @@
ngIRCd - Next Generation IRC Server
+ http://ngircd.barton.de/
- (c)2001-2009 Alexander Barton,
- alex@barton.de, http://www.barton.de/
-
+ (c)2001-2011 Alexander Barton and Contributors.
ngIRCd is free software and published under the
terms of the GNU General Public License.
blob - 93206efe05b00b7fa5c7f6253a0853b1cd6a63cd
blob + 03090b882a87d997fe88bf0c512ef489d0670906
--- ChangeLog
+++ ChangeLog
@@ -1,15 +1,27 @@
ngIRCd - Next Generation IRC Server
+ http://ngircd.barton.de/
- (c)2001-2010 Alexander Barton,
- alex@barton.de, http://www.barton.de/
-
+ (c)2001-2011 Alexander Barton and Contributors.
ngIRCd is free software and published under the
terms of the GNU General Public License.
-- ChangeLog --
+ngIRCd
+
+ - Make [No]ZeroConf configuration option work with Howl.
+ - Deprecate NoXX-Options in ngircd.conf: 'NoDNS=no' => 'DNS=yes',
+ 'NoIdent=no' => 'Ident=yes', 'NoPAM=no' => 'PAM=yes', and
+ 'NoZeroConf=no' => 'ZeroConf=yes' (and vice-versa).
+ The defaults are adjusted accordingly and the old variables are still
+ accepted, so there is no functional change.
+ - Fix confusing "adding to invite list" debug messages.
+ - Don't throttle services and servers beeing registered.
+ - Xcode: correctly sort files
+ - Don't assert() when serching a client for an invalid server token.
+
ngIRCd Release 17.1 (2010-12-19)
- --configtest: remember if MOTD is configured by file or phrase
blob - f7e51a164c36a8becb2d69d4dab2d853b897a26b
blob + ce43e35ac2e44c48fe1d387dfd7ae8cefc4ce84a
--- INSTALL
+++ INSTALL
@@ -1,9 +1,8 @@
ngIRCd - Next Generation IRC Server
+ http://ngircd.barton.de/
- (c)2001-2010 Alexander Barton,
- alex@barton.de, http://www.barton.de/
-
+ (c)2001-2011 Alexander Barton and Contributors.
ngIRCd is free software and published under the
terms of the GNU General Public License.
blob - 9524e8b25fa226db786dfd0e4ffd51f7c66c3648
blob + 0d6ef8a751eb11a95c4bbdbbea01cdb87346294b
--- NEWS
+++ NEWS
@@ -1,15 +1,23 @@
ngIRCd - Next Generation IRC Server
+ http://ngircd.barton.de/
- (c)2001-2010 Alexander Barton,
- alex@barton.de, http://www.barton.de/
-
+ (c)2001-2011 Alexander Barton and Contributors.
ngIRCd is free software and published under the
terms of the GNU General Public License.
-- NEWS --
+ngIRCd
+
+ - Deprecate NoXX-Options in ngircd.conf: 'NoDNS=no' => 'DNS=yes',
+ 'NoIdent=no' => 'Ident=yes', 'NoPAM=no' => 'PAM=yes', and
+ 'NoZeroConf=no' => 'ZeroConf=yes' (and vice-versa).
+ The defaults are adjusted accordingly and the old variables are still
+ accepted, so there is no functional change.
+ - Don't throttle services and servers beeing registered.
+
ngIRCd Release 17.1 (2010-12-19)
- Don't log critical (or worse) messages to stderr
blob - 1feedfe13be33ee5a9457fecf31ccee20c17101c
blob + 3c39cad1a19f18bffd1a6bae0496c781bc570337
--- README
+++ README
@@ -1,9 +1,8 @@
ngIRCd - Next Generation IRC Server
+ http://ngircd.barton.de/
- (c)2001-2007 Alexander Barton,
- alex@barton.de, http://www.barton.de/
-
+ (c)2001-2011 Alexander Barton and Contributors.
ngIRCd is free software and published under the
terms of the GNU General Public License.
blob - 6dfd206a3d5136d0afa1169d42e871a042e48854
blob + 63fc64bf2ef2ac6a34ff847bb9f59ad7d1b036d8
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
@@ -1,6 +1,6 @@
/*
* ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001-2010 Alexander Barton (alex@barton.de).
+ * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -432,7 +432,7 @@ static void
Show_Version( void )
{
puts( NGIRCd_Version );
- puts( "Copyright (c)2001-2010 Alexander Barton (<alex@barton.de>) and Contributors." );
+ puts( "Copyright (c)2001-2011 Alexander Barton (<alex@barton.de>) and Contributors." );
puts( "Homepage: <http://ngircd.barton.de/>\n" );
puts( "This is free software; see the source for copying conditions. There is NO" );
puts( "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." );
IRCNow