Changeset 1030
- Timestamp:
- 07/08/07 20:32:23 (1 year ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.182 (modified) (2 diffs)
- 1.8.3/branches/devel/game/txt/hlp/pennv182.hlp (modified) (3 diffs)
- 1.8.3/branches/devel/utils/mkvershlp.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.182
r1017 r1030 21 21 22 22 Minor changes: 23 * Removed the gmalloc malloc option. [SW] 23 24 * KEEPALIVE flag makes the server send a telnet NOP after 24 25 a short period of inactivity; helps prevent timeouts from … … 27 28 Fixes: 28 29 * Fixed assorted small memory leaks. [SW] 30 * Fix to fraction() when dealing with numbers that can't 31 be fractioned. Discovered by Ashen-Shugar. [GM] 29 32 * Fixed handling of telnet NOPs sent by clients. [SW] 30 33 * The OpenSSL random number pool wasn't getting adequately 31 34 initialized on systems without /dev/urandom [SW] 32 35 * Infinite loop in math code. Reported by Ashen-Sugar. [GM] 36 * mkvershlp.pl skips over emacs backup files. 33 37 34 38 Version 1.8.2 patchlevel 5 June 13, 2007 35 39 36 40 Minor changes: 37 * Removed the gmalloc malloc option. [SW]38 41 * Assorted gcc warning fixes. [SW] 39 42 1.8.3/branches/devel/game/txt/hlp/pennv182.hlp
r1025 r1030 7 7 8 8 Minor changes: 9 * Removed the gmalloc malloc option. [SW] 9 10 * KEEPALIVE flag makes the server send a telnet NOP after 10 11 a short period of inactivity; helps prevent timeouts from … … 13 14 Fixes: 14 15 * Fixed assorted small memory leaks. [SW] 16 * Fix to fraction() when dealing with numbers that can't 17 be fractioned. Discovered by Ashen-Shugar. [GM] 15 18 * Fixed handling of telnet NOPs sent by clients. [SW] 16 19 * The OpenSSL random number pool wasn't getting adequately 17 20 initialized on systems without /dev/urandom [SW] 18 21 * Infinite loop in math code. Reported by Ashen-Sugar. [GM] 22 * mkvershlp.pl skips over emacs backup files. 19 23 20 24 & 1.8.2p5 … … 22 26 23 27 Minor changes: 24 * Removed the gmalloc malloc option. [SW]25 28 * Assorted gcc warning fixes. [SW] 26 29 1.8.3/branches/devel/utils/mkvershlp.pl
r681 r1030 1 #!/usr/bin/ perl1 #!/usr/bin/env perl 2 2 # 3 3 # Generate game/txt/hlp/ files from the CHANGES file(s). … … 22 22 my $really_started = 0; 23 23 foreach my $file (@sources) { 24 next if $file =~ /~$/o; 24 25 warn "Can't open $file!\n", next unless open(IN,"<$file"); 25 26 my $target = $file;
