Changeset 1095
- Timestamp:
- 08/25/07 10:11:31 (1 year ago)
- Files:
-
- 1.8.2/branches/devel/CHANGES.182 (modified) (2 diffs)
- 1.8.2/branches/devel/Patchlevel (modified) (1 diff)
- 1.8.2/branches/devel/game/txt/hlp/penncmd.hlp (modified) (1 diff)
- 1.8.2/branches/devel/game/txt/hlp/pennv182.hlp (modified) (3 diffs)
- 1.8.2/branches/devel/game/txt/hlp/pennvOLD.hlp (modified) (1 diff)
- 1.8.2/branches/devel/hdrs/version.h (modified) (1 diff)
- 1.8.2/branches/devel/options.h.dist (modified) (1 diff)
- 1.8.2/branches/devel/src/malias.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.2/branches/devel/CHANGES.182
r1086 r1095 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.2/branches/devel/Patchlevel
r993 r1095 1 1 Do not edit this file. It is maintained by the official PennMUSH patches. 2 This is PennMUSH 1.8.2p 62 This is PennMUSH 1.8.2p7 1.8.2/branches/devel/game/txt/hlp/penncmd.hlp
r936 r1095 921 921 See also: CLIENTS, ATTRIBUTES, WILDCARDS, MUSHCODE 922 922 & @describe 923 & @desc 923 924 @describe <object> [=<description>] 924 925 1.8.2/branches/devel/game/txt/hlp/pennv182.hlp
r1029 r1095 1 & 1.8.2p 61 & 1.8.2p7 2 2 & changes 3 3 This is a list of changes in this patchlevel which are probably of … … 12 12 be read in 'help patchlevels'. 13 13 14 Version 1.8.2 patchlevel 7 Aug 27, 2007 15 16 Minor changes: 17 * nwho() now takes an optional viewer argument like lwho(). 18 19 Fixes: 20 * Clarified the behavior of eval() and get_eval() in help. Suggested by 21 Talvo and Javelin. 22 * A failed db save no longer broadcasts a success message in addition to a 23 failure one. Reported by Cooee. 24 * The open database file wasn't getting closed on a failed save. 25 * Crash bug in sortkey(). Fix by Nathan Baum. 26 * 'help @desc' brings up @describe instead of @descformat. 27 Suggested by Nymeria. 28 * Removed mention of Win32 requiring a particular attribute 29 compression algorithm. Any will work, and always have. 30 Reported by Andrew Klein. 31 32 & 1.8.2p6 14 33 Version 1.8.2 patchlevel 6 July 9, 2007 15 34 … … 26 45 Fixes: 27 46 * Fixed assorted small memory leaks. [SW] 47 * Fix to fraction() when dealing with numbers that can't 48 be fractioned. Discovered by Ashen-Shugar. [GM] 28 49 * Fixed handling of telnet NOPs sent by clients. [SW] 29 50 * The OpenSSL random number pool wasn't getting adequately 1.8.2/branches/devel/game/txt/hlp/pennvOLD.hlp
r993 r1095 4418 4418 type 'help <version>p<patchlevel>'. For example, 'help 1.7.2p3' 4419 4419 4420 1.8.2: 0, 1, 2, 3, 4, 5, 6 4420 1.8.2: 0, 1, 2, 3, 4, 5, 6, 7 4421 4421 1.8.1: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 4422 4422 1.8.0: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 1.8.2/branches/devel/hdrs/version.h
r993 r1095 1 1 #define VERSION "1.8.2" 2 #define PATCHLEVEL " 6"3 #define PATCHDATE "[0 7/09/2007]"4 #define NUMVERSION 100800200 62 #define PATCHLEVEL "7" 3 #define PATCHDATE "[08/27/2007]" 4 #define NUMVERSION 1008002007 1.8.2/branches/devel/options.h.dist
r839 r1095 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.2/branches/devel/src/malias.c
r1010 r1095 140 140 } 141 141 if (!alias || !*alias || !tolist || !*tolist) { 142 notify(player, T("MAIL: What alias do you want to create? ."));142 notify(player, T("MAIL: What alias do you want to create?")); 143 143 return; 144 144 }
