PennMUSH Community

root/1.8.3/trunk/game/txt/hlp/pennv183.hlp

Revision 1167, 11.4 kB (checked in by shawnw, 5 months ago)

Merge devel into trunk for p6 release

Line 
1 & 1.8.3p6
2 & changes
3 This is a list of changes in this patchlevel which are probably of
4 interest to players. More information about new commands and functions
5 can probably be gotten via 'help <name of whatever>'. 'help credits'
6 lists the [initials] of developers and porters that are used in the list
7 of changes.
8
9 Information about changes in prior releases can be found under
10 help topics named for each release (e.g. 'help 1.7.2p30').
11 A list of the patchlevels associated with each release can
12 be read in 'help patchlevels'.
13
14 Version 1.8.3 patchlevel 6                      Jan 01, 2008
15
16 Major changes:
17  * If configure finds a copy of the pcre library installed, that will
18    be used instead of the (old) version bundled with Penn. use
19    --with-pcre=/path/to/it if it's not in the usual places, or
20    --with-pcre=no to force use of the bundled version.
21
22 Minor changes:
23  * @sitelock when there are no rules will now say that instead of
24    having no output. By Talvo.
25  * Log files use locking to prevent the small chance of more than one
26    process writing to the same error log at the same time.
27  * info_slave's logging is more clear as to its source.
28  * Several places that used the select() system call now favor poll()
29    and/or socket timeouts instead. (The main event loop still uses
30    select() for now.)
31  * A wildcard help topic search (help foo*) that only matches one
32    entry will display that entry. Suggested by Cheetah.
33  * New switches for commands no longer have to be added to the
34    SWITCHES file; the internal list of switches is now built based on
35    what switches are given in the command table and cmdlocal.c
36    additions. Suggested by Talek.
37
38
39 Flags and powers:
40  * The announce power now also grants the ability to change the motd.
41    Suggested by Yuriko.
42  * New hook power grants rights to use @hook. Suggested by Paige.
43  * Windows compile fixes by Intrevis.
44
45 Commands:
46  * @motd gives better feedback when clearing a message.
47  * The @tport/@otport/@atport/etc. attributes that get evalulated on a
48    @teleport now get the dbref of the object doing the teleport in %0
49    and the teleported object's old location in %1. Suggested by Daniel
50    Cheng.
51
52 Functions:
53  * root() uses an improved algorithm to give a more precise
54    result.
55  * log(N,2) uses the C log2() function if available.
56  * log(N,e) takes the natural logarithm of N, like ln().
57  * lports() now takes an optional viewer argument, a la lwho(). By
58    Talvo.
59
60 Fixes:
61  * Typo in info_slave preventing simultaneous hostname lookups fixed.
62  * Compiliation fix with some compilers. Reported by Kimiko.
63  * ident lookups of new connections was broken for several
64    patchlevels.  Works again. Sometimes.
65  * Cleaned up some warnings generated by gcc 4.2
66  * Fixed some minor bugs detected by running under valgrind.
67  * OpenBSD configuration fixes.
68
69 & 1.8.3p5
70 Version 1.8.3 patchlevel 5                      October 6, 2007
71
72 Major changes:
73  * Significant rewrite of ansi parsing and better ansi support
74    for many string-handling functions. Patch by Sketch.
75  * Rewrite of the softcode regression testing framework, and
76    addition of more tests. [SW]
77
78 Minor changes:
79  * Store a pointer to the start of a player's mailbox in objdata
80    instead of the connection struct.
81  * Experimental rewrite of hash tables to use the cuckoo hashing
82    algorithm, with constant-time lookups even in the worst case.
83    (And appears to have generally faster lookup even in normal usage.)
84  * Regular expression @sitelocks save the compiled regexp instead of
85    recompiling every time the rule is tested.
86  * Added %4 to @pageformat, which is the default page message.
87
88 Commands:
89  * Added @message, which makes it easy to use @chatformat or
90    @pageformat via @hooks, or to create your own *format.
91
92 Functions:
93  * Added message(), the function version of @message.
94
95 Fixes:
96  * decode64() does better validation of its input. [SW]
97  * Various compile fixes reported by Interevis and Kimiko.
98    Win32 patched by Intrevis.
99  * @sitelock does better error reporting. [SW]
100  * Crash bug related to regeditall fixed.
101  * @decompile didn't handle attribute trees correctly.
102  * Compile failure in funstr.c on some systems. Fixed by Boris.
103  * '@set =foo' failed silently. Reported by Talvo.
104  * Fixes from 1.8.2p7
105
106 & 1.8.3p4
107 Version 1.8.3 patchlevel 4                      July 9, 2007
108
109 Major changes:
110   * Parts of the build process that used a shell script to regenerate
111     certain headers now use perl scripts instead, making them much
112     faster. [SW]
113
114 Minor changes:
115   * The hash tables used by lmath() and html functions now
116     use perfect hashing to speed up lookups. [SW]
117   * The various slab allocators used by attributes and locks
118     and other areas have been replaced with a generic
119     slab allocator. Also, many more allocations are handled
120     by the new code.
121   * Use the writev() system call to send data to unencrypted
122     connections in bigger chunks instead of using multiple send()s of
123     smaller chunks.
124   * New lock types can be added via src/local.c instead of having to
125     alter the table in src/locks.c. Based on patch by Talvo.
126   * Builtin lock names and default flags are stored in a hash table
127     instead of a list. [SW]
128
129 Attributes:
130   * @chatformat allows you to customize Channel chat messages
131     that you see. [GM]
132
133 Commands:
134   * '@list allocations' displays allocation information.
135   * @stats/tables no longer dumps mem_check information.
136   * @search (and by relation search()) now has an 'elock'
137     search class, permitting boolean expression searches. [GM]
138   * @channel/recall extended to support recalling by time. Example:
139     '@chan/recall Foo=1h' will recall lines only from the past
140     hour. Patch by Talvo.
141  
142 Functions:
143   * cond() works like an if, else if, else if ... ncond(),
144     condall(), ncondall() also added. [GM]
145   * speak() accepts a 1st argument beginning with '&' to use
146     an arbitrary speaker name. [GM]
147   * New speakpenn() function handles : <pose> in Penn style.
148     Suggested by Sketch, patch by Javeln.
149   * lmath() accepts dist2d and dist3d. Suggested by Jess.
150   * functions(local) returns just local @functions. [SW]
151   * New encode64() and decode64() functions convert between
152     normal text and base64 encoded text on games that have
153     SSL support compiled in. [SW]
154   * encrypt() and decrypt() now take an optional 3rd argument
155     to control using base 64 encoding. Suggested by Noltar.
156  
157 Fixes:
158   * Compile fixes for some linux (And other?) systems that expect
159     all libraries to be after source files on the command line
160     when linking. Reported by Balerion.
161   * Compile fix for some Postgresql installations. Reported by
162     Nymeria.
163   * Fix to fraction() when dealing with numbers that can't
164     be fractioned. Discovered by Ashen-Shugar.
165   * Fixes to align() and coalescing by Javelin. Bugs reported by
166     Sketch and tramp.
167   * Fixes to speak() to bring it closer to Tiny's behavior in
168     common cases by Sketch and Javelin.
169   * Fixes to ANSI output where extra ^[[m were being sent.
170   * Default flags weren't getting set on some attributes in certain
171     cases. Report by Talvo.
172   * Fixes from 1.8.2p6
173
174 & 1.8.3p3
175 Version 1.8.3 patchlevel 3                      June 13, 2007
176
177 Minor changes:
178   * The sockets used to talk to info_slave changed from streams
179     to datagrams, simplifying code. [SW]
180   * info_slave deals better with simultaneous connections. [SW]
181   * info_slave requires the presence of the socketpair(2) function.
182     It was already using it anyways.
183   * Use of some system calls with portability issues encapsulated in
184     wrapper functions. [SW]
185   * sql() returns error codes directly instead of notifying %!. [SW]
186
187 Functions:
188   * lattr() and lattrp() take an optional delimiter argument. Suggested
189     by Nathan Baum. [SW]
190   * New csecs() and msecs() functions, like ctime() and mtime() but
191     returning the time in seconds instead of a formatted string. Based on
192     a patch by Talvo.
193   * ctime() and mtime() take an optional second argument to control which
194     time zone the time is displayed for: UTC or the server's. [SW]
195   * fn() by Javelin
196   * letq(). Suggested by Nathan Baum. [SW]
197  
198 Fixes:
199   * Assorted compiler warning fixes. [SW]
200   * Compile fix on OS X 10.3. Reported by Viila. [SW]
201   * @sql wasn't enabled if Sqlite3 was the only database turned on.
202     Reported by qa'toq.
203   * Problems with sql() using Sqlite3. Reported by qa'toq. [SW]
204   * Problems with null queries using MySQL. Reported by duckwa. [SW]
205   * Start fixing code that assumes that int and long are the same
206     size. [SW]
207   * Linting of code that uses strcpy, strncpy() and sprintf() to
208     rule out remote possibilities of buffer overflows. [SW]
209   * align() off-by-one error in left coalescing fixed. Reported by
210     Sketch. [Javelin]
211   * User locks were broken in the last patch. Reported by Michael Brazaitis.
212     [SW]
213   * ./configure --without-ssl works. Reported by Starr. [SW]
214   * objid matcher didn't work properly. [SW]
215   * Many functions that used parse_dbref updated to use parse_objid,
216     to see more objid compliance. [GM]
217   * Fixes from 1.8.2p5
218
219 & 1.8.3p2
220 Version 1.8.3 patchlevel 2                      May 16, 2007
221
222 Major changes:
223   * configuration is now done by autoconf. ./Configure is
224     now ./configure and its options have changed. See
225     INSTALL and ./configure --help [SW]
226   * Support for the postgresql SQL server. Javelin.
227   * Support for sqlite3 SQL databases. [SW]
228
229 Minor changes:
230   * You can no longer run a mush as root. [SW]
231   * cemit_noisy config option.  Suggested by Kimiko. [SW]
232   * @function sorts the list of user-defined functions
233     by object and then name. Suggested by Trinsec. [SW]
234   * Better logging of the register login screen command
235     for systems without a sendmail program. [SW]
236   * Assorted refactoring of source code. [SW]
237  
238 Functions:
239   * isobjid(). By Balerion.
240   * player() returns the dbref of the player connected to a given
241     port.  By  Nathan Baum.
242   * root(X,3) uses the C cbrt() function if available. [SW]
243   * New formats for align() that allow flowing text. Javelin.
244   * isdbref() understands objids. By Balerion.
245
246 Fixes:
247   * regmatch() broken with %q-registers. Javelin.
248   * Better checking of dbref config options to make sure they're
249     valid objects. Suggested by Talvo. [SW]
250   * Fixed assorted cases of accidently modifying const objects.
251     Thanks to Jake. [SW]
252   * Fixed a crash bug in strmatch(). [GM]
253   * wrap() of Pueblo tags didn't work very well. Fixed by
254     Sketch.
255   * @wipe's count is accurate when attribute trees are being
256     deleted. Reported by Talvo.
257  
258 & 1.8.3p1
259 Version 1.8.3 patchlevel 1                      March 11, 2007
260
261 Minor changes:
262   * page command now processes page output through PAGEFORMAT
263     attribute, allowing user-set page messages. [GM]
264   * sql_host configuration option now permits alternate tcp port.
265     Suggested by Mercutio. Patch by Javelin.
266   * Refactoring of fun_stringsecs to help function etime_to_secs.
267     Patch by Javelin.
268   * %1 in @aconnect works like in @adisconnect. Patch by Javelin.
269
270 Fixes:
271   * restart script once again includes DATEMSK export for
272     extended convtime support. Reported by KimikoMuffin.
273   * Memory leak in 1.8.3p0 regedit fixed.
274   * Fixes included from 1.8.2p3.
275   * Document change in @chan/title behavior with commas.
276
277 & 1.8.3p0
278 Version 1.8.3 patchlevel 0                      January 27, 2007
279
280 Major changes:
281   * Rewrite of color handling. [GM]
282
283 Minor changes:
284   * Cleaned up the internals of @wipe. [SW]
285   * strmatch() now takes a third argument, to store wildcard captures. [GM]
286   * Termination of OS/2 support. [SW]
287
288 Fixes:
289   * Fixes included from versions up to 1.8.2p2.
Note: See TracBrowser for help on using the browser.