Ver código fonte

* Update docs

Bryan Drewery 17 anos atrás
pai
commit
449f55d294
5 arquivos alterados com 30 adições e 6 exclusões
  1. 2 0
      LICENSE
  2. 18 1
      README
  3. 5 2
      doc/CREDITS
  4. 0 1
      pack/pack.cfg.sample
  5. 5 2
      src/cmds.c

+ 2 - 0
LICENSE

@@ -9,6 +9,8 @@ OFFICIAL WRAITH URL (http://wraith.botpack.net)
 ****************************************************************
 ****************************************************************
 
+Some old releases are missing the GPL headers and this file, however they are still
+bound by these terms and the GPL.
 
 This package includes a mix of licenses:
   * Public domain

+ 18 - 1
README

@@ -20,6 +20,23 @@ Official Git repositories:
 git://git.shatow.net/wraith.git
 git://github.com/bdrewery/wraith.git
 
+For a list of Contributors see: git log master|git shortlog -sen
+To Contribute see: http://wraith.botpack.net/wiki/Contributing
+Bugs can be reported at: http://wraith.botpack.net/newticket
+Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24
+Please support wraith by signing up for a shell at http://www.xzibition.com (coupon 'wraith' for 30% off)
+
+The botpack ghost inspired the early versions of wraith and a few cmds.
+* einride
+* ievil
+
+The following botpacks gave inspiration, ideas, and some code:
+* awptic by lordoptic
+* optikz by ryguy and lordoptic
+* celdrop by excelsior
+* genocide by Crazi, Dor, psychoid, and Ace24
+* tfbot by warknite and loslinux
+
+
 NEVER upload your pack.cfg to an untrusted shell.
--Bryan
 #wraith @ EFnet

+ 5 - 2
doc/CREDITS

@@ -16,15 +16,18 @@ Credits and thanks to the following:
 * Mystikal for various bugs.
 * Many others.
 
+For a list of Contributors see: git log master|git shortlog -sen
+To Contribute see: http://wraith.botpack.net/wiki/Contributing
 Credit for suggestions/bugs can be found at: http://wraith.botpack.net/report/9
 Bugs can be reported at: http://wraith.botpack.net/newticket
-Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24/
+Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24
+Please support wraith by signing up for a shell at http://www.xzibition.com (coupon 'wraith' for 30% off)
 
 The botpack ghost inspired the early versions of wraith and a few cmds.
 * einride
 * ievil
 
-The following botpacks gave me inspiration and ideas (no code):
+The following botpacks gave inspiration, ideas, and some code:
 * awptic by lordoptic
 * optikz by ryguy and lordoptic
 * celdrop by excelsior

+ 0 - 1
pack/pack.cfg.sample

@@ -41,7 +41,6 @@ OWNEREMAIL <some@email.com>
  *
  * Your hub hosts should NOT be vhosts. They need to be changable dns.
  * Use a domain you OWN/CONTROL, or a friends.
- * I will *not* rush to remake binaries if asked because of hub host problems.
  */
 HUB <hub1 hub1.domain.tld 1234>
 HUB <hub2 hub2.domain.tld 1235>

+ 5 - 2
src/cmds.c

@@ -406,16 +406,19 @@ static void cmd_about(int idx, char *par)
   dprintf(idx, STR(" * $bMystikal$b for various bugs.\n"));
   dprintf(idx, STR(" * $bMany$b others.\n"));
   dprintf(idx, " \n");
+  dprintf(idx, STR("For a list of Contributors see: git log master|git shortlog -sen\n"));
+  dprintf(idx, STR("To Contribute see: http://wraith.botpack.net/wiki/Contributing\n"));
   dprintf(idx, STR("Credit for suggestions/bugs can be found at: http://wraith.botpack.net/report/9\n"));
   dprintf(idx, STR("Bugs can be reported at: http://wraith.botpack.net/newticket\n"));
-  dprintf(idx, STR("Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24/\n"));
+  dprintf(idx, STR("Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24\n"));
+  dprintf(idx, STR("Please support wraith by signing up for a shell at http://www.xzibition.com (coupon 'wraith' for 30% off)\n"));
   dprintf(idx, " \n");
 
   dprintf(idx, STR("The botpack ghost inspired the early versions of wraith and a few cmds.\n"));
   dprintf(idx, STR("* $beinride$b\n"));
   dprintf(idx, STR("* $bievil$b\n"));
   dprintf(idx, "\n");
-  dprintf(idx, STR("The following botpacks gave me inspiration and ideas (no code):\n"));
+  dprintf(idx, STR("The following botpacks gave inspiration, ideas, and some code:\n"));
   dprintf(idx, STR(" * $uawptic$u by $blordoptic$b\n"));
   dprintf(idx, STR(" * $uoptikz$u by $bryguy$b and $blordoptic$b\n"));
   dprintf(idx, STR(" * $uceldrop$u by $bexcelsior$b\n"));