Changeset 1097
- Timestamp:
- 08/25/07 23:20:43 (1 year ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.182 (modified) (2 diffs)
- 1.8.3/branches/devel/CHANGES.183 (modified) (2 diffs)
- 1.8.3/branches/devel/Patchlevel (modified) (1 diff)
- 1.8.3/branches/devel/game/txt/hlp/penncmd.hlp (modified) (1 diff)
- 1.8.3/branches/devel/hdrs/version.h (modified) (1 diff)
- 1.8.3/branches/devel/options.h.dist (modified) (1 diff)
- 1.8.3/branches/devel/src/cmds.c (modified) (1 diff)
- 1.8.3/branches/devel/src/funstr.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.182
r1087 r1097 14 14 ========================================================================== 15 15 16 Version 1.8.2 patchlevel 7 ???? ??, 200716 Version 1.8.2 patchlevel 7 Aug 27, 2007 17 17 18 18 Minor changes: 19 19 * nwho() now takes an optional viewer argument like lwho(). 20 * nmwho() is to mwho() as nwho() is to lwho(). Patch for these two by21 Sketch.22 20 23 21 Fixes: … … 28 26 * The open database file wasn't getting closed on a failed save. 29 27 * 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. 30 33 31 34 Version 1.8.2 patchlevel 6 July 9, 2007 1.8.3/branches/devel/CHANGES.183
r1090 r1097 15 15 ========================================================================== 16 16 17 Version 1.8.3 patchlevel 5 ???? ??, 200717 Version 1.8.3 patchlevel 5 August 27, 2007 18 18 19 19 Major changes: … … 49 49 * Compile failure in funstr.c on some systems. Fixed by Boris. 50 50 * '@set =foo' failed silently. Reported by Talvo. 51 * Fixes from 1.8.2p7 51 52 52 53 Version 1.8.3 patchlevel 4 July 9, 2007 1.8.3/branches/devel/Patchlevel
r1024 r1097 1 1 Do not edit this file. It is maintained by the official PennMUSH patches. 2 This is PennMUSH 1.8.3p 42 This is PennMUSH 1.8.3p5 1.8.3/branches/devel/game/txt/hlp/penncmd.hlp
r1090 r1097 926 926 927 927 See also: CLIENTS, ATTRIBUTES, WILDCARDS, MUSHCODE 928 & @describe 928 929 & @desc 929 & @describe930 930 @describe <object> [=<description>] 931 931 1.8.3/branches/devel/hdrs/version.h
r1024 r1097 1 1 #define VERSION "1.8.3" 2 #define PATCHLEVEL " 4"3 #define PATCHDATE "[0 7/9/2007]"4 #define NUMVERSION 100800300 42 #define PATCHLEVEL "5" 3 #define PATCHDATE "[08/27/2007]" 4 #define NUMVERSION 1008003005 1.8.3/branches/devel/options.h.dist
r838 r1097 59 59 * (But you decompress a lot more often). Compression ratio 60 60 * 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. 62 62 * 4 - Raevnos's almost 8-bit clean version of the word-based algorithm. 63 63 * Prefer 3 unless you need extended characters. This algorithm 1.8.3/branches/devel/src/cmds.c
r1076 r1097 697 697 attrib = args_right[2]; 698 698 699 for (i = 0; (i +3) < numargs; i++) {699 for (i = 0; (i + 3) < numargs; i++) { 700 700 args[i] = args_right[i + 3]; 701 701 } 1.8.3/branches/devel/src/funstr.c
r1088 r1097 1252 1252 1253 1253 char sep; 1254 enum trim_style { TRIM_LEFT, TRIM_RIGHT, TRIM_BOTH } trim;1254 enum trim_style { TRIM_LEFT, TRIM_RIGHT, TRIM_BOTH } trim; 1255 1255 int trim_style_arg, trim_char_arg; 1256 1256 ansi_string *as;
