PennMUSH Community

Changeset 1097

Show
Ignore:
Timestamp:
08/25/07 23:20:43 (1 year ago)
Author:
shawnw
Message:

Prep for 1.8.3p5

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/CHANGES.182

    r1087 r1097  
    1414========================================================================== 
    1515 
    16 Version 1.8.2 patchlevel 7                       ????  ??, 2007 
     16Version 1.8.2 patchlevel 7                       Aug  27, 2007 
    1717 
    1818Minor changes: 
    1919  * nwho() now takes an optional viewer argument like lwho(). 
    20   * nmwho() is to mwho() as nwho() is to lwho(). Patch for these two by 
    21     Sketch. 
    2220 
    2321Fixes: 
     
    2826  * The open database file wasn't getting closed on a failed save. 
    2927  * Crash bug in sortkey(). Fix by Nathan Baum. 
     28  * 'help @desc' brings up @describe instead of @descformat. 
     29    Suggested by Nymeria. 
     30  * Removed mention of Win32 requiring a particular attribute 
     31    compression algorithm. Any will work, and always have. 
     32    Reported by Andrew Klein. 
    3033 
    3134Version 1.8.2 patchlevel 6                       July 9, 2007 
  • 1.8.3/branches/devel/CHANGES.183

    r1090 r1097  
    1515========================================================================== 
    1616 
    17 Version 1.8.3 patchlevel 5                      ???? ??, 2007 
     17Version 1.8.3 patchlevel 5                      August 27, 2007 
    1818 
    1919Major changes: 
     
    4949 * Compile failure in funstr.c on some systems. Fixed by Boris. 
    5050 * '@set =foo' failed silently. Reported by Talvo. 
     51 * Fixes from 1.8.2p7 
    5152 
    5253Version 1.8.3 patchlevel 4                      July 9, 2007 
  • 1.8.3/branches/devel/Patchlevel

    r1024 r1097  
    11Do not edit this file. It is maintained by the official PennMUSH patches. 
    2 This is PennMUSH 1.8.3p4 
     2This is PennMUSH 1.8.3p5 
  • 1.8.3/branches/devel/game/txt/hlp/penncmd.hlp

    r1090 r1097  
    926926 
    927927See also: CLIENTS, ATTRIBUTES, WILDCARDS, MUSHCODE 
     928& @describe 
    928929& @desc 
    929 & @describe 
    930930  @describe <object> [=<description>] 
    931931 
  • 1.8.3/branches/devel/hdrs/version.h

    r1024 r1097  
    11#define VERSION "1.8.3" 
    2 #define PATCHLEVEL "4
    3 #define PATCHDATE "[07/9/2007]" 
    4 #define NUMVERSION 1008003004 
     2#define PATCHLEVEL "5
     3#define PATCHDATE "[08/27/2007]" 
     4#define NUMVERSION 1008003005 
  • 1.8.3/branches/devel/options.h.dist

    r838 r1097  
    5959 *     (But you decompress a lot more often). Compression ratio 
    6060 *     is worse than Huffman for small dbs (<1.5Mb of text), but 
    61  *     better for larger dbs. Win32 systems must use this. 
     61 *     better for larger dbs.  
    6262 * 4 - Raevnos's almost 8-bit clean version of the word-based algorithm. 
    6363 *     Prefer 3 unless you need extended characters. This algorithm 
  • 1.8.3/branches/devel/src/cmds.c

    r1076 r1097  
    697697  attrib = args_right[2]; 
    698698 
    699   for (i = 0; (i+3) < numargs; i++) { 
     699  for (i = 0; (i + 3) < numargs; i++) { 
    700700    args[i] = args_right[i + 3]; 
    701701  } 
  • 1.8.3/branches/devel/src/funstr.c

    r1088 r1097  
    12521252 
    12531253  char sep; 
    1254   enum trim_style { TRIM_LEFT, TRIM_RIGHT, TRIM_BOTH} trim; 
     1254  enum trim_style { TRIM_LEFT, TRIM_RIGHT, TRIM_BOTH } trim; 
    12551255  int trim_style_arg, trim_char_arg; 
    12561256  ansi_string *as;