10-21-2004 15:04
More old release notes, posted here for prosperity.

Second Life 1.5.4 Sept 22, 2004
====================================

- The autoreturn setting of a land parcel will be disabled when the parcel is
sold, deeded to group, subdivided, or joined.

- The sale price of a land parcel can be changed before it is marked for sale.

- Email replies to in-world instant messages properly show up in the instant
message panel.

- Attachments more reliably saved should the client crash.

- Several fixes to LSL:

* initialized lists as arguments to functions compiles: f([1, 2, 3]);

* subtracting vector literals compiles: v = <1,2,3> - <4,5,6>;

* order of declaration of functions with parameters is no longer an issue.
That is, the following compiles:
f(integer n) {g(n);}
g(integer n) {}

* jumping over and around return statements works correctly.
That is, the following compiles:
jump error;
return;
@error;
// do stuff
return;

* llParseString2List() now returns null strings.
That is, llParseString2List("test||is|working",["|"],[]) returns
["test","","is","working"] instead of ["test", "is", "working"].

* multiple llListen()'s to non-null keys now work (used to be that
only the first llListen() would be registered). Note that for
each chat event a listen() callback will be triggered for each
llListen() filter that the chat satisfies.

* added llSetLocalRot() -- Sets the rotation of a child prim
relative to the root prim.

- Residents can no longer start votes for groups for which they are
not members.

- Starting a recall in a group does not automatically reduce the officer
to a member, however officers cannot eject members while the recall
is pending.

- Fixed a client crash due to corrupt image.

- Fixed a resource leak in simulators executing LSL calls that query for
resident online status.

- We correctly detect default OpenGL configuration for Macs with nVidia
cards again.

- Estate owners can put their sun in motion again.

- Banning a user from your estate will automatically send them home at
the same time.