r782 - in trunk: . archivers extras extras/physfs_rb/physfs

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jan 1 07:33:20 EST 2006


Author: icculus
Date: 2006-01-01 07:33:19 -0500 (Sun, 01 Jan 2006)
New Revision: 782

Modified:
   trunk/CHANGELOG
   trunk/CREDITS
   trunk/INSTALL
   trunk/LICENSE
   trunk/archivers/dir.c
   trunk/archivers/grp.c
   trunk/archivers/qpak.c
   trunk/archivers/zip.c
   trunk/extras/physfs_rb/physfs/physfsrwops.c
   trunk/extras/physfs_rb/physfs/physfsrwops.h
   trunk/extras/physfshttpd.c
   trunk/extras/physfsrwops.c
   trunk/extras/physfsrwops.h
   trunk/extras/selfextract.c
   trunk/makeos2.cmd
   trunk/physfs_internal.h
Log:
Changed my email address.


Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/CHANGELOG	2006-01-01 12:33:19 UTC (rev 782)
@@ -4,7 +4,8 @@
 
 01012006 - Cleaned up overflow checks in platform memory allocators (thanks to
            Nicolas Lebedenco for pointing out the original issue with
-           long long literals). Added physfs.rc (thanks, Dennis!).
+           long long literals). Added physfs.rc (thanks, Dennis!). Changed my
+           email address.
 11282005 - Corrected docs on PHYSFS_setWriteDir().
 10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!). Patched
            archivers/wad.c to compile.
@@ -496,7 +497,7 @@
 08012001 - Added a safety memset in error setting, fixed URLs and email addr.
 07282001 - Initial release.
 
---ryan. (icculus at clutteredmind.org)
+--ryan. (icculus at icculus.org)
 
 /* end of CHANGELOG ... */
 

Modified: trunk/CREDITS
===================================================================
--- trunk/CREDITS	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/CREDITS	2006-01-01 12:33:19 UTC (rev 782)
@@ -95,7 +95,7 @@
     Dennis Schridde
 
 Other stuff:
-    Your name here! Patches go to icculus at clutteredmind.org ...
+    Your name here! Patches go to icculus at icculus.org ...
 
 /* end of CREDITS ... */
 

Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/INSTALL	2006-01-01 12:33:19 UTC (rev 782)
@@ -31,7 +31,7 @@
 
 Primary Unix development is done with GNU/Linux, but PhysicsFS is known to
 work out of the box with several flavors of Unix. It it doesn't work, patches
-to get it running can be sent to icculus at clutteredmind.org.
+to get it running can be sent to icculus at icculus.org.
 
 
 BeOS:
@@ -76,7 +76,7 @@
 may not work. Patches are welcome.
 
 If someone is willing to maintain prebuilt PhysicsFS DLLs, I'd like to hear
-from you; send an email to icculus at clutteredmind.org.
+from you; send an email to icculus at icculus.org.
 
 MACOS 8/9:
 Double-click on "CWProjects.sit" in the root of the source tree. This will
@@ -91,7 +91,7 @@
 DLLs you built previously.
 
 If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
-the Mac, I'd like to hear from you; send an email to icculus at clutteredmind.org.
+the Mac, I'd like to hear from you; send an email to icculus at icculus.org.
 
 
 
@@ -103,7 +103,7 @@
 Follow the Unix directions, above (configure, make, make install).
 
 If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
-MacOS X, I'd like to hear from you; send an email to icculus at clutteredmind.org.
+MacOS X, I'd like to hear from you; send an email to icculus at icculus.org.
 
 
 OS/2:
@@ -117,7 +117,7 @@
 more picky about recompiling, I'll accept the patch.
 
 If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
-OS/2, I'd like to hear from you; send an email to icculus at clutteredmind.org.
+OS/2, I'd like to hear from you; send an email to icculus at icculus.org.
 
 
 OTHER PLATFORMS:
@@ -129,5 +129,5 @@
 heavily-commented physfs_internal.h and look in the platform/ and archiver/
 directories for examples.
 
---ryan. (icculus at clutteredmind.org)
+--ryan. (icculus at icculus.org)
 

Modified: trunk/LICENSE
===================================================================
--- trunk/LICENSE	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/LICENSE	2006-01-01 12:33:19 UTC (rev 782)
@@ -19,7 +19,7 @@
 
    3. This notice may not be removed or altered from any source distribution.
 
-       Ryan C. Gordon <icculus at clutteredmind.org>
+       Ryan C. Gordon <icculus at icculus.org>
 
 
 (Please note that versions of PhysicsFS prior to 0.1.9 are licensed under

Modified: trunk/archivers/dir.c
===================================================================
--- trunk/archivers/dir.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/archivers/dir.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -252,7 +252,7 @@
 {
     "",
     DIR_ARCHIVE_DESCRIPTION,
-    "Ryan C. Gordon <icculus at clutteredmind.org>",
+    "Ryan C. Gordon <icculus at icculus.org>",
     "http://icculus.org/physfs/",
 };
 

Modified: trunk/archivers/grp.c
===================================================================
--- trunk/archivers/grp.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/archivers/grp.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -435,7 +435,7 @@
 {
     "GRP",
     GRP_ARCHIVE_DESCRIPTION,
-    "Ryan C. Gordon <icculus at clutteredmind.org>",
+    "Ryan C. Gordon <icculus at icculus.org>",
     "http://icculus.org/physfs/",
 };
 

Modified: trunk/archivers/qpak.c
===================================================================
--- trunk/archivers/qpak.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/archivers/qpak.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -589,7 +589,7 @@
 {
     "PAK",
     QPAK_ARCHIVE_DESCRIPTION,
-    "Ryan C. Gordon <icculus at clutteredmind.org>",
+    "Ryan C. Gordon <icculus at icculus.org>",
     "http://icculus.org/physfs/",
 };
 

Modified: trunk/archivers/zip.c
===================================================================
--- trunk/archivers/zip.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/archivers/zip.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -1408,7 +1408,7 @@
 {
     "ZIP",
     ZIP_ARCHIVE_DESCRIPTION,
-    "Ryan C. Gordon <icculus at clutteredmind.org>",
+    "Ryan C. Gordon <icculus at icculus.org>",
     "http://icculus.org/physfs/",
 };
 

Modified: trunk/extras/physfs_rb/physfs/physfsrwops.c
===================================================================
--- trunk/extras/physfs_rb/physfs/physfsrwops.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/physfs_rb/physfs/physfsrwops.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -16,7 +16,7 @@
  *
  * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 #include <stdio.h>  /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */

Modified: trunk/extras/physfs_rb/physfs/physfsrwops.h
===================================================================
--- trunk/extras/physfs_rb/physfs/physfsrwops.h	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/physfs_rb/physfs/physfsrwops.h	2006-01-01 12:33:19 UTC (rev 782)
@@ -16,7 +16,7 @@
  *
  * SDL falls under the LGPL, too. You can get SDL at http://www.libsdl.org/
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 #ifndef _INCLUDE_PHYSFSRWOPS_H_

Modified: trunk/extras/physfshttpd.c
===================================================================
--- trunk/extras/physfshttpd.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/physfshttpd.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -29,7 +29,7 @@
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
  *  Please see LICENSE in the root of the source tree.
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 #include <stdio.h>

Modified: trunk/extras/physfsrwops.c
===================================================================
--- trunk/extras/physfsrwops.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/physfsrwops.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -17,7 +17,7 @@
  *
  * SDL falls under the LGPL license. You can get SDL at http://www.libsdl.org/
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 #include <stdio.h>  /* used for SEEK_SET, SEEK_CUR, SEEK_END ... */

Modified: trunk/extras/physfsrwops.h
===================================================================
--- trunk/extras/physfsrwops.h	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/physfsrwops.h	2006-01-01 12:33:19 UTC (rev 782)
@@ -17,7 +17,7 @@
  *
  * SDL falls under the LGPL license. You can get SDL at http://www.libsdl.org/
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 #ifndef _INCLUDE_PHYSFSRWOPS_H_

Modified: trunk/extras/selfextract.c
===================================================================
--- trunk/extras/selfextract.c	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/extras/selfextract.c	2006-01-01 12:33:19 UTC (rev 782)
@@ -14,7 +14,7 @@
  * Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
  *  Please see LICENSE in the root of the source tree.
  *
- *  This file was written by Ryan C. Gordon. (icculus at clutteredmind.org).
+ *  This file was written by Ryan C. Gordon. (icculus at icculus.org).
  */
 
 /*

Modified: trunk/makeos2.cmd
===================================================================
--- trunk/makeos2.cmd	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/makeos2.cmd	2006-01-01 12:33:19 UTC (rev 782)
@@ -3,7 +3,7 @@
 rem  the EMX development tools installed for this to work.
 rem
 rem This script (and, indeed, our OS/2 support) could use some tweaking.
-rem  Patches go to icculus at clutteredmind.org ...
+rem  Patches go to icculus at icculus.org ...
 
 set PHYSFSLANG=PHYSFS_LANG_ENGLISH
 set DEBUGFLAGS=-D_NDEBUG -O2 -s

Modified: trunk/physfs_internal.h
===================================================================
--- trunk/physfs_internal.h	2006-01-01 12:31:34 UTC (rev 781)
+++ trunk/physfs_internal.h	2006-01-01 12:33:19 UTC (rev 782)
@@ -33,7 +33,7 @@
 
 
 /* The LANG section. */
-/*  please send questions/translations to Ryan: icculus at clutteredmind.org. */
+/*  please send questions/translations to Ryan: icculus at icculus.org. */
 
 #if (!defined PHYSFS_LANG)
 #  define PHYSFS_LANG PHYSFS_LANG_ENGLISH




More information about the physfs-commits mailing list