Merge branch 'master' into next
This commit is contained in:
commit
097df9a340
2 changed files with 460 additions and 489 deletions
|
@ -222,6 +222,12 @@
|
||||||
<Argument name="attachment" wild="ATTACH_.*" />
|
<Argument name="attachment" wild="ATTACH_.*" />
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="llAvatarOnLinkSitTarget">
|
||||||
|
key llAvatarOnLinkSitTarget(integer iLinkNumber);
|
||||||
|
|
||||||
|
Returns a key that is the UUID of the user seated on the specified link's prim.
|
||||||
|
</Word>
|
||||||
|
|
||||||
<Word name="llAvatarOnSitTarget">
|
<Word name="llAvatarOnSitTarget">
|
||||||
key llAvatarOnSitTarget(void);
|
key llAvatarOnSitTarget(void);
|
||||||
|
|
||||||
|
@ -1111,6 +1117,13 @@
|
||||||
integer llGetParcelMaxPrims(vector pos, integer sim_wide);
|
integer llGetParcelMaxPrims(vector pos, integer sim_wide);
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="llGetParcelMusicURL">
|
||||||
|
string llGetParcelMusicURL();
|
||||||
|
|
||||||
|
Returns a string containing the parcel streaming audio URL.
|
||||||
|
The object owner (avatar or group) must also be the land owner.
|
||||||
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetParcelPrimCount">
|
<Word name="llGetParcelPrimCount">
|
||||||
integer llGetParcelPrimCount(vector pos, integer category, integer sim_wide);
|
integer llGetParcelPrimCount(vector pos, integer category, integer sim_wide);
|
||||||
|
|
||||||
|
@ -2464,6 +2477,12 @@
|
||||||
Sets the color of face. If face is ALL_SIDES, set the color to all faces.
|
Sets the color of face. If face is ALL_SIDES, set the color to all faces.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="llSetContentType">
|
||||||
|
void llSetContentType(key kRequestID, integer iCcontentType);
|
||||||
|
|
||||||
|
Set the Internet media type of an LSL HTTP server response. ContentType accepts the constants CONTENT_TYPE_TEXT and CONTENT_TYPE_HTML.
|
||||||
|
</Word>
|
||||||
|
|
||||||
<Word name="llSetDamage">
|
<Word name="llSetDamage">
|
||||||
llSetDamage(float damage);
|
llSetDamage(float damage);
|
||||||
|
|
||||||
|
@ -2543,6 +2562,12 @@
|
||||||
to the transparency alpha.
|
to the transparency alpha.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="llSetLinkCamera">
|
||||||
|
void llSetLinkCamera(integer iLink, vector vEyeOffset, vector vLookOffset);
|
||||||
|
|
||||||
|
Sets the camera eye offset, and the offset that camera is looking at, for avatars that sit on the linked prim.
|
||||||
|
</Word>
|
||||||
|
|
||||||
<Word name="llSetLinkColor">
|
<Word name="llSetLinkColor">
|
||||||
llSetLinkColor(integer linknumber, vector color, integer face);
|
llSetLinkColor(integer linknumber, vector color, integer face);
|
||||||
|
|
||||||
|
@ -2681,6 +2706,13 @@
|
||||||
(Don't confuse prim parameters with function parameters.)
|
(Don't confuse prim parameters with function parameters.)
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="llSetRegionPos">
|
||||||
|
integer llSetRegionPos(vector vPosition)
|
||||||
|
|
||||||
|
Tries to moves the entire object so that the root prim is within 0.1m of vPosition.
|
||||||
|
Returns TRUE on success, otherwise FALSE.
|
||||||
|
</Word>
|
||||||
|
|
||||||
<Word name="llSetRemoteScriptAccessPin">
|
<Word name="llSetRemoteScriptAccessPin">
|
||||||
llSetRemoteScriptAccessPin(integer pin);
|
llSetRemoteScriptAccessPin(integer pin);
|
||||||
|
|
||||||
|
@ -3504,10 +3536,7 @@
|
||||||
<Word name="STATUS_MALFORMED_PARAMS" value="1000"> Function was called with malformed parameters.</Word>
|
<Word name="STATUS_MALFORMED_PARAMS" value="1000"> Function was called with malformed parameters.</Word>
|
||||||
<Word name="STATUS_NOT_FOUND" value="1003">.Object or other item was not found.</Word>
|
<Word name="STATUS_NOT_FOUND" value="1003">.Object or other item was not found.</Word>
|
||||||
<Word name="STATUS_NOT_SUPPORTED" value="1004">Feature not supported.</Word>
|
<Word name="STATUS_NOT_SUPPORTED" value="1004">Feature not supported.</Word>
|
||||||
<Word name="STATUS_OK" value="0">
|
<Word name="STATUS_OK" value="0">Result of function call was success.</Word>
|
||||||
|
|
||||||
Result of function call was success
|
|
||||||
</Word>
|
|
||||||
<Word name="STATUS_PHYSICS" value="">
|
<Word name="STATUS_PHYSICS" value="">
|
||||||
Controls whether the object moves physically.
|
Controls whether the object moves physically.
|
||||||
This controls the same flag that the ui checkbox for
|
This controls the same flag that the ui checkbox for
|
||||||
|
@ -3543,19 +3572,16 @@
|
||||||
</WordsSubsection>
|
</WordsSubsection>
|
||||||
|
|
||||||
<WordsSubsection name="C.3. Object Type Constants">
|
<WordsSubsection name="C.3. Object Type Constants">
|
||||||
These constants can be combined using the binary | operator
|
These constants can be combined using the binary | operator and are used in the llSensor and related calls.
|
||||||
and are used in the llSensor and related calls.
|
|
||||||
Object Type Constants
|
Object Type Constants
|
||||||
<Word name="ACTIVE">
|
<Word name="ACTIVE">
|
||||||
Objects in world that are running a script or
|
Objects in world that are running a script or
|
||||||
currently pysically moving.
|
currently pysically moving.
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="AGENT">
|
<Word name="AGENT">Objects in world that are agents.</Word>
|
||||||
Objects in world that are agents.
|
<Word name="AGENT_BY_LEGACY_NAME" value="0x1"></Word>
|
||||||
</Word>
|
<Word name="AGENT_BY_USERNAME" value="0x10"></Word>
|
||||||
<Word name="PASSIVE">
|
<Word name="PASSIVE">Static in-world objects.</Word>
|
||||||
Static in-world objects.
|
|
||||||
</Word>
|
|
||||||
<Word name="SCRIPTED">
|
<Word name="SCRIPTED">
|
||||||
Scripted in-world objects.
|
Scripted in-world objects.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -3824,33 +3850,18 @@
|
||||||
<WordsSubsection name="C.10. Change Constants">
|
<WordsSubsection name="C.10. Change Constants">
|
||||||
These constants are used in the changed event handler.
|
These constants are used in the changed event handler.
|
||||||
Change Constants
|
Change Constants
|
||||||
<Word name="CHANGED_ALLOWED_DROP">
|
<Word name="CHANGED_ALLOWED_DROP">The object inventory has changed because an item was added through the llAllowInventoryDrop interface.</Word>
|
||||||
The object inventory has changed because an item was
|
<Word name="CHANGED_COLOR">The object colour has changed.</Word>
|
||||||
added through the llAllowInventoryDrop interface.
|
<Word name="CHANGED_INVENTORY">The object inventory has changed.</Word>
|
||||||
</Word>
|
<Word name="CHANGED_LINK">The object has linked or its links were broken.</Word>
|
||||||
<Word name="CHANGED_COLOR">
|
<Word name="CHANGED_MEDIA" />
|
||||||
The object color has changed.
|
|
||||||
</Word>
|
|
||||||
<Word name="CHANGED_INVENTORY">
|
|
||||||
The object inventory has changed.
|
|
||||||
</Word>
|
|
||||||
<Word name="CHANGED_LINK">
|
|
||||||
The object has linked or its links were broken.
|
|
||||||
</Word>
|
|
||||||
<Word name="CHANGED_OWNER" />
|
<Word name="CHANGED_OWNER" />
|
||||||
<Word name="CHANGED_REGION" />
|
<Word name="CHANGED_REGION" />
|
||||||
<Word name="CHANGED_REGION_START" />
|
<Word name="CHANGED_REGION_START" />
|
||||||
<Word name="CHANGED_SCALE">
|
<Word name="CHANGED_SCALE">The object scale has changed.</Word>
|
||||||
The object scale has changed.
|
<Word name="CHANGED_SHAPE">The object shape has changed, e.g., a box to a cylinder.</Word>
|
||||||
</Word>
|
|
||||||
<Word name="CHANGED_SHAPE">
|
|
||||||
The object shape has changed, eg, a box to a cylinder
|
|
||||||
</Word>
|
|
||||||
<Word name="CHANGED_TELEPORT" />
|
<Word name="CHANGED_TELEPORT" />
|
||||||
<Word name="CHANGED_TEXTURE">
|
<Word name="CHANGED_TEXTURE">The texture offset, scale rotation, or simply the object texture has changed.</Word>
|
||||||
The texture offset, scale rotation, or simply the object
|
|
||||||
texture has changed.
|
|
||||||
</Word>
|
|
||||||
</WordsSubsection>
|
</WordsSubsection>
|
||||||
|
|
||||||
<WordsSubsection name="C.11. Type Constants">
|
<WordsSubsection name="C.11. Type Constants">
|
||||||
|
@ -3859,27 +3870,13 @@
|
||||||
llGetListEntryType can be used for comparison against
|
llGetListEntryType can be used for comparison against
|
||||||
these constants.
|
these constants.
|
||||||
Type Constants
|
Type Constants
|
||||||
<Word name="TYPE_INTEGER">
|
<Word name="TYPE_INTEGER">The list entry is an integer.</Word>
|
||||||
The list entry is an integer.
|
<Word name="TYPE_FLOAT">The list entry is a float.</Word>
|
||||||
</Word>
|
<Word name="TYPE_STRING">The list entry is a string.</Word>
|
||||||
<Word name="TYPE_FLOAT">
|
<Word name="TYPE_KEY">The list entry is a key.</Word>
|
||||||
The list entry is a float.
|
<Word name="TYPE_VECTOR">The list entry is a vector.</Word>
|
||||||
</Word>
|
<Word name="TYPE_ROTATION">The list entry is a rotation.</Word>
|
||||||
<Word name="TYPE_STRING">
|
<Word name="TYPE_INVALID">The list entry is invalid.</Word>
|
||||||
The list entry is a string.
|
|
||||||
</Word>
|
|
||||||
<Word name="TYPE_KEY">
|
|
||||||
The list entry is a key.
|
|
||||||
</Word>
|
|
||||||
<Word name="TYPE_VECTOR">
|
|
||||||
The list entry is a vector.
|
|
||||||
</Word>
|
|
||||||
<Word name="TYPE_ROTATION">
|
|
||||||
The list entry is a rotation.
|
|
||||||
</Word>
|
|
||||||
<Word name="TYPE_INVALID">
|
|
||||||
The list entry is invalid.
|
|
||||||
</Word>
|
|
||||||
</WordsSubsection>
|
</WordsSubsection>
|
||||||
|
|
||||||
<WordsSubsection name="C.12. Agent Info Constants">
|
<WordsSubsection name="C.12. Agent Info Constants">
|
||||||
|
@ -3889,22 +3886,17 @@
|
||||||
about an agent.
|
about an agent.
|
||||||
Agent Info Constants
|
Agent Info Constants
|
||||||
<Word name="AGENT_ALWAYS_RUN" value="" />
|
<Word name="AGENT_ALWAYS_RUN" value="" />
|
||||||
<Word name="AGENT_ATTACHMENTS" value="">
|
<Word name="AGENT_ATTACHMENTS" value="">The agent has attachments.</Word>
|
||||||
The agent has attachments.
|
<Word name="AGENT_AUTOPILOT" value="0x2000"></Word>
|
||||||
</Word>
|
|
||||||
<Word name="AGENT_AWAY" value="" />
|
<Word name="AGENT_AWAY" value="" />
|
||||||
<Word name="AGENT_BUSY" value="" />
|
<Word name="AGENT_BUSY" value="" />
|
||||||
<Word name="AGENT_CROUCHING" value="" />
|
<Word name="AGENT_CROUCHING" value="" />
|
||||||
<Word name="AGENT_FLYING" value="">
|
<Word name="AGENT_FLYING" value="">The agent is flying.</Word>
|
||||||
The agent is flying.
|
|
||||||
</Word>
|
|
||||||
<Word name="AGENT_IN_AIR" value="" />
|
<Word name="AGENT_IN_AIR" value="" />
|
||||||
<Word name="AGENT_MOUSELOOK" value="" />
|
<Word name="AGENT_MOUSELOOK" value="" />
|
||||||
<Word name="AGENT_ON_OBJECT" value="" />
|
<Word name="AGENT_ON_OBJECT" value="" />
|
||||||
<Word name="AGENT_SITTING" value="" />
|
<Word name="AGENT_SITTING" value="" />
|
||||||
<Word name="AGENT_SCRIPTED" value="">
|
<Word name="AGENT_SCRIPTED" value="">The agent has scripted attachments.</Word>
|
||||||
The agent has scripted attachments.
|
|
||||||
</Word>
|
|
||||||
<Word name="AGENT_TYPING" value="" />
|
<Word name="AGENT_TYPING" value="" />
|
||||||
<Word name="AGENT_WALKING" value="" />
|
<Word name="AGENT_WALKING" value="" />
|
||||||
</WordsSubsection>
|
</WordsSubsection>
|
||||||
|
@ -4669,28 +4661,26 @@
|
||||||
Gets the prims's group key.
|
Gets the prims's group key.
|
||||||
If id is an avatar, a NULL_KEY is returned.
|
If id is an avatar, a NULL_KEY is returned.
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="OBJECT_NAME" value="">
|
<Word name="OBJECT_NAME" value="">Gets the object's name.</Word>
|
||||||
Gets the object's name.
|
|
||||||
</Word>
|
|
||||||
<Word name="OBJECT_OWNER" value="">
|
<Word name="OBJECT_OWNER" value="">
|
||||||
Gets an object's owner's key.
|
Gets an object's owner's key.
|
||||||
If id is group owned, a NULL_KEY is returned.
|
If id is group owned, a NULL_KEY is returned.
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="OBJECT_POS" value="">
|
<Word name="OBJECT_POS" value="">Gets the object's position in region coordinates.</Word>
|
||||||
Gets the object's position in region coordinates.
|
<Word name="OBJECT_ROT" value="">Gets the object's rotation.</Word>
|
||||||
</Word>
|
<Word name="OBJECT_VELOCITY" value="">Gets the object's velocity.</Word>
|
||||||
<Word name="OBJECT_ROT" value="">
|
|
||||||
Gets the object's rotation.
|
|
||||||
</Word>
|
|
||||||
<Word name="OBJECT_VELOCITY" value="">
|
|
||||||
Gets the object's velocity.
|
|
||||||
</Word>
|
|
||||||
|
|
||||||
<Word name="OBJECT_STREAMING_COST" value="15"></Word>
|
<Word name="OBJECT_STREAMING_COST" value="15"></Word>
|
||||||
<Word name="OBJECT_PHYSICS_COST" value="16"></Word>
|
<Word name="OBJECT_PHYSICS_COST" value="16"></Word>
|
||||||
<Word name="OBJECT_SERVER_COST" value="14"></Word>
|
<Word name="OBJECT_SERVER_COST" value="14"></Word>
|
||||||
<Word name="OBJECT_PRIM_EQUIVALENCE" value="13"></Word>
|
<Word name="OBJECT_PRIM_EQUIVALENCE" value="13"></Word>
|
||||||
|
|
||||||
|
<Word name="OBJECT_RUNNING_SCRIPT_COUNT" value="9" />
|
||||||
|
<Word name="OBJECT_SCRIPT_MEMORY" value="11" />
|
||||||
|
<Word name="OBJECT_SCRIPT_TIME" value="12" />
|
||||||
|
<Word name="OBJECT_TOTAL_SCRIPT_COUNT" value="10" />
|
||||||
|
<Word name="OBJECT_UNKNOWN_DETAIL" value="-1" />
|
||||||
|
|
||||||
<Word name="MASK_BASE" />
|
<Word name="MASK_BASE" />
|
||||||
<Word name="MASK_EVERYONE" />
|
<Word name="MASK_EVERYONE" />
|
||||||
<Word name="MASK_GROUP" />
|
<Word name="MASK_GROUP" />
|
||||||
|
@ -4802,6 +4792,8 @@
|
||||||
<Word name="PRIM_HOLE_SQUARE" />
|
<Word name="PRIM_HOLE_SQUARE" />
|
||||||
<Word name="PRIM_HOLE_TRIANGLE" />
|
<Word name="PRIM_HOLE_TRIANGLE" />
|
||||||
|
|
||||||
|
<Word name="PRIM_LINK_TARGET" />
|
||||||
|
|
||||||
<Word name="PRIM_MATERIAL" />
|
<Word name="PRIM_MATERIAL" />
|
||||||
<Word name="PRIM_MATERIAL_FLESH" />
|
<Word name="PRIM_MATERIAL_FLESH" />
|
||||||
<Word name="PRIM_MATERIAL_GLASS" />
|
<Word name="PRIM_MATERIAL_GLASS" />
|
||||||
|
@ -4895,6 +4887,22 @@
|
||||||
will print text to the publicly heard chat channel. Has the value '0'.
|
will print text to the publicly heard chat channel. Has the value '0'.
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
<Word name="RC_DATA_FLAGS" value="2" />
|
||||||
|
<Word name="RC_DETECT_PHANTOM" value="1" />
|
||||||
|
<Word name="RC_GET_LINK_NUM" value="4" />
|
||||||
|
<Word name="RC_GET_NORMAL" value="1" />
|
||||||
|
<Word name="RC_GET_ROOT_KEY" value="2" />
|
||||||
|
<Word name="RC_MAX_HITS" value="3" />
|
||||||
|
<Word name="RC_REJECT_AGENTS" value="1" />
|
||||||
|
<Word name="RC_REJECT_LAND" value="8" />
|
||||||
|
<Word name="RC_REJECT_NONPHYSICAL" value="4" />
|
||||||
|
<Word name="RC_REJECT_PHYSICAL" value="2" />
|
||||||
|
<Word name="RC_REJECT_TYPES" value="2" />
|
||||||
|
|
||||||
|
<Word name="RCERR_CAST_TIME_EXCEEDED" value="-3" />
|
||||||
|
<Word name="RCERR_SIM_PERF_LOW" value="-2" />
|
||||||
|
<Word name="RCERR_UNKNOWN" value="-1" />
|
||||||
|
|
||||||
<Word name="REGION_FLAG_ALLOW_DAMAGE" />
|
<Word name="REGION_FLAG_ALLOW_DAMAGE" />
|
||||||
<Word name="REGION_FLAG_ALLOW_DIRECT_TELEPORT" />
|
<Word name="REGION_FLAG_ALLOW_DIRECT_TELEPORT" />
|
||||||
<Word name="REGION_FLAG_BLOCK_FLY" />
|
<Word name="REGION_FLAG_BLOCK_FLY" />
|
||||||
|
@ -4915,6 +4923,9 @@
|
||||||
<Word name="STRING_TRIM_HEAD" />
|
<Word name="STRING_TRIM_HEAD" />
|
||||||
<Word name="STRING_TRIM_TAIL" />
|
<Word name="STRING_TRIM_TAIL" />
|
||||||
|
|
||||||
|
<Word name="TOUCH_INVALID_FACE" />
|
||||||
|
<Word name="TOUCH_INVALID_VECTOR" />
|
||||||
|
|
||||||
<Word name="URL_REQUEST_DENIED" />
|
<Word name="URL_REQUEST_DENIED" />
|
||||||
<Word name="URL_REQUEST_GRANTED" />
|
<Word name="URL_REQUEST_GRANTED" />
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,52 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Release Notes</title>
|
<title>Release Notes</title>
|
||||||
<style>
|
<style>
|
||||||
.date { text-decoration: underline }
|
.date { text-decoration: underline; }
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
|
||||||
<h1>Release Notes</h1>
|
<div>
|
||||||
|
<div>
|
||||||
|
<h3><span class="date">2012-01-</span> - Release 2.44.1</h3>
|
||||||
|
- Added: constants:
|
||||||
|
<ul>
|
||||||
|
<li>AGENT_AUTOPILOT</li>
|
||||||
|
<li>AGENT_BY_LEGACY_NAME</li>
|
||||||
|
<li>AGENT_BY_USERNAME</li>
|
||||||
|
<li>CHANGED_MEDIA</li>
|
||||||
|
<li>OBJECT_RUNNING_SCRIPT_COUNT</li>
|
||||||
|
<li>OBJECT_SCRIPT_MEMORY</li>
|
||||||
|
<li>OBJECT_SCRIPT_TIME</li>
|
||||||
|
<li>OBJECT_TOTAL_SCRIPT_COUNT</li>
|
||||||
|
<li>OBJECT_UNKNOWN_DETAIL</li>
|
||||||
|
<li>PRIM_LINK_TARGET</li>
|
||||||
|
<li>PRIM_SCULPT_TYPE_MASK</li>
|
||||||
|
<li>RC_DATA_FLAGS</li>
|
||||||
|
<li>RC_DETECT_PHANTOM</li>
|
||||||
|
<li>RC_GET_LINK_NUM</li>
|
||||||
|
<li>RC_GET_NORMAL</li>
|
||||||
|
<li>RC_GET_ROOT_KEY</li>
|
||||||
|
<li>RC_MAX_HITS</li>
|
||||||
|
<li>RC_REJECT_AGENTS</li>
|
||||||
|
<li>RC_REJECT_LAND</li>
|
||||||
|
<li>RC_REJECT_NONPHYSICAL</li>
|
||||||
|
<li>RC_REJECT_PHYSICAL</li>
|
||||||
|
<li>RC_REJECT_TYPES</li>
|
||||||
|
<li>RCERR_CAST_TIME_EXCEEDED</li>
|
||||||
|
<li>RCERR_SIM_PERF_LOW</li>
|
||||||
|
<li>RCERR_UNKNOWN</li>
|
||||||
|
<li>TOUCH_INVALID_FACE</li>
|
||||||
|
<li>TOUCH_INVALID_VECTOR</li>
|
||||||
|
</ul>
|
||||||
|
- Added: functions:
|
||||||
|
<ul>
|
||||||
|
<li>llAvatarOnLinkSitTarget</li>
|
||||||
|
<li>llGetParcelMusicURL</li>
|
||||||
|
<li>llSetContentType</li>
|
||||||
|
<li>llSetLinkCamera</li>
|
||||||
|
<li>llSetRegionPos</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<h3><span class="date">2012-01-01</span> - Release 2.44.0</h3>
|
<h3><span class="date">2012-01-01</span> - Release 2.44.0</h3>
|
||||||
- Added
|
- Added
|
||||||
|
@ -18,6 +59,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li>Updated About.htm</li>
|
<li>Updated About.htm</li>
|
||||||
<li>Tools => Options => Text Editor => General - Changed labels to properly reflect the output file format.</li>
|
<li>Tools => Options => Text Editor => General - Changed labels to properly reflect the output file format.</li>
|
||||||
|
<li>UTF-8 output no longer prefixes the B.O.M. character.</li>
|
||||||
<li>UTF-8 is now the default file output format. ANSI is deprecated and will be removed at a later date.</li>
|
<li>UTF-8 is now the default file output format. ANSI is deprecated and will be removed at a later date.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -176,8 +218,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.40</h3>
|
<h3><span class="date">April 17 2010 14:51 (local time)</span> Release 2.40</h3>
|
||||||
<span class="date">April 17 2010 14:51 (local time)</span><br />
|
|
||||||
- Added: stub functions for:
|
- Added: stub functions for:
|
||||||
<ul>
|
<ul>
|
||||||
<li>llGetFreeURLs</li>
|
<li>llGetFreeURLs</li>
|
||||||
|
@ -191,8 +232,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.39</h3>
|
<h3><span class="date">October 28 2008 11:28 (local time)</span> Release 2.39</h3>
|
||||||
<span class="date">October 28 2008 11:28 (local time)</span><br />
|
|
||||||
- Added: stub functions for:
|
- Added: stub functions for:
|
||||||
<ul>
|
<ul>
|
||||||
<li>llTextBox</li>
|
<li>llTextBox</li>
|
||||||
|
@ -209,23 +249,17 @@
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.38</h3>
|
<h3><span class="date">July 28 2008 14:10 (local time)</span> Release 2.38</h3>
|
||||||
<span class="date">July 28 2008 14:10 (local time)</span>
|
- Changed: Key cache file changed, so did lsleditor (??? who made the xml file, it uses siblings, not parent-child relations????)
|
||||||
- Changed: Key cache file changed, so did lsleditor (??? who made the xml file, it uses siblings, not parent-child relations????)<br />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div>Summer break ;-)</div>
|
||||||
|
|
||||||
<div><p>Summer break ;-)</p></div>
|
<div><span class="date">May 18 2008 18:37 (local time)</span>
|
||||||
|
- Changed: Ctrl-Shft-A uses 4-spaces intdent when (auto)pasting in SL
|
||||||
|
|
||||||
<div>
|
|
||||||
<p><span class="date">May 18 2008 18:37 (local time)</span></p>
|
|
||||||
- Changed: Ctrl-Shft-A uses 4-spaces intdent when (auto)pasting in SL<br />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div><span class="date">May 13 2008 13:21 (local time)</span>
|
||||||
<div>
|
|
||||||
<span class="date">May 13 2008 13:21 (local time)</span>
|
|
||||||
- Changed: Adding duplicate items in solution explorer starts numbering at 1<br />
|
- Changed: Adding duplicate items in solution explorer starts numbering at 1<br />
|
||||||
- Fixed: focus when switching tabs<br />
|
- Fixed: focus when switching tabs<br />
|
||||||
- Fixed: Save All (Ctrl Shft S), does not save Solution<br />
|
- Fixed: Save All (Ctrl Shft S), does not save Solution<br />
|
||||||
|
@ -233,8 +267,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.37</h3>
|
<h3><span class="date">May 2 2008 19:00 (local time)</span>> Release 2.37</h3>
|
||||||
<span class="date">May 2 2008 19:00 (local time)</span>
|
|
||||||
- Added: PRIM_GLOW<br />
|
- Added: PRIM_GLOW<br />
|
||||||
- Added: llSetClickAction (and constants)<br />
|
- Added: llSetClickAction (and constants)<br />
|
||||||
- Fixed: & in dialogue box<br />
|
- Fixed: & in dialogue box<br />
|
||||||
|
@ -242,56 +275,52 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div><span class="date"></span>
|
||||||
<h3>Release 2.36</h3>
|
<h3>Apr 3 2008 12:47 (local time) Release 2.36</h3>
|
||||||
<p><span class="date">Apr 3 2008 12:47 (local time)</span>
|
|
||||||
- Fixed: llAbs throws error on large numbers<br />
|
- Fixed: llAbs throws error on large numbers<br />
|
||||||
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Mar 28 2008 12:47 (local time)</span>
|
<div><span class="date">Mar 28 2008 12:47 (local time)</span>
|
||||||
- Fixed: llListen should also listen when using "" keys<br />
|
- Fixed: llListen should also listen when using "" keys<br />
|
||||||
- Added: Basic authentication to llHTTPRequest, eg. http: //userid:password@domain.name/path<br />
|
- Added: Basic authentication to llHTTPRequest, eg. http: //userid:password@domain.name/path<br />
|
||||||
- Added: llEmail shows error responses from smtp server when in error<br />
|
- Added: llEmail shows error responses from smtp server when in error<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Mar 27 2008 13:33 (local time)</span>
|
<div><p><span class="date">Mar 27 2008 13:33 (local time)</span></p>
|
||||||
- Added (experimental): 'Ctrl Shift A' pastes active LSLEditor script to SecondLife (has to open script editor in SL first)<br />
|
- Added (experimental): 'Ctrl Shift A' pastes active LSLEditor script to SecondLife (has to open script editor in SL first)<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Mar 21 2008 12:12 (local time)</span>
|
<div><span class="date">Mar 21 2008 12:12 (local time)</span><br />
|
||||||
- Fixed: Shift Home crashes editor when nothing is selected<br />
|
- Fixed: Shift Home crashes editor when nothing is selected<br />
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.35</h3>
|
<h3><span class="date">Mar 16 2008 15:22 (local time)</span> Release 2.35</h3>
|
||||||
<p><span class="date">Mar 16 2008 15:22 (local time)</span>
|
|
||||||
- Added: llGetParcelDetails (see also menu - tools - options - debugging internal)<br />
|
- Added: llGetParcelDetails (see also menu - tools - options - debugging internal)<br />
|
||||||
- Added: Alt-Backspace alternative for Ctrl-Z<br />
|
- Added: Alt-Backspace alternative for Ctrl-Z<br />
|
||||||
- Fixed: Some focus issue on the find window<br />
|
- Fixed: Some focus issue on the find window<br />
|
||||||
- Added: PARCEL_MEDIA_COMMAND_TYPE, PARCEL_MEDIA_COMMAND_SIZE, PARCEL_MEDIA_COMMAND_DESC, PARCEL_MEDIA_COMMAND_LOOP_SET</br>
|
- Added: PARCEL_MEDIA_COMMAND_TYPE, PARCEL_MEDIA_COMMAND_SIZE, PARCEL_MEDIA_COMMAND_DESC, PARCEL_MEDIA_COMMAND_LOOP_SET</br>
|
||||||
- Added: Contact item on menu Help<br />
|
- Added: Contact item on menu Help<br />
|
||||||
- Removed: some compression code<br />
|
- Removed: some compression code<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Feb 29 2008 12:40 (local time)</span>
|
<div><p><span class="date">Feb 29 2008 12:40 (local time)</span></p>
|
||||||
- Fixed: NULL_KEY was no key<br />
|
- Fixed: NULL_KEY was no key<br />
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3>Release 2.34</h3>
|
<h3><span class="date">Feb 23 2008 19:45 (local time)</span> Release 2.34</h3>
|
||||||
<p><span class="date">Feb 23 2008 19:45 (local time)</span></p>
|
|
||||||
<p>
|
|
||||||
- Added: First generic plugin support<br />
|
- Added: First generic plugin support<br />
|
||||||
- Added: integer multiply operator for float operand<br />
|
- Added: integer multiply operator for float operand<br />
|
||||||
- Added: minus operator to rotation<br />
|
- Added: minus operator to rotation<br />
|
||||||
- Fixed: Internals to pass more language tests, e.g. bool on ZERO_ROTATION and NULL_KEY, adding items to list<br />
|
- Fixed: Internals to pass more language tests, e.g. bool on ZERO_ROTATION and NULL_KEY, adding items to list<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Feb 22 2008 23:38 (local time)</span></p>
|
<p><span class="date">Feb 22 2008 23:38 (local time)</span></p>
|
||||||
<p>- Fixed: Browser status hides bottom scrollbar<br />
|
<p>
|
||||||
|
- Fixed: Browser status hides bottom scrollbar<br />
|
||||||
- Fixed: Switching between Tabbed document and Windowed document, browser disappears<br />
|
- Fixed: Switching between Tabbed document and Windowed document, browser disappears<br />
|
||||||
- Fixed: (key)"" == False<br />
|
- Fixed: (key)"" == False<br />
|
||||||
- Added: state changes allowed in global functions (when set in Debugging - General menu)<br />
|
- Added: state changes allowed in global functions (when set in Debugging - General menu)<br />
|
||||||
|
@ -304,13 +333,13 @@
|
||||||
- Fixed: remove old files after Autoupdate<br />
|
- Fixed: remove old files after Autoupdate<br />
|
||||||
- Fixed: autoupdate menu was readonly<br />
|
- Fixed: autoupdate menu was readonly<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.33</h3>
|
<h3>Release 2.33</h3>
|
||||||
|
|
||||||
<p><span class="date">Feb 12 2008 08:12 (local time)</span></p>
|
<p><span class="date">Feb 12 2008 08:12 (local time)</span></p>
|
||||||
<p>- Fixed: llLog and llLog10</p>
|
<p>
|
||||||
|
- Fixed: llLog and llLog10<br />
|
||||||
|
</p>
|
||||||
|
|
||||||
<p><span class="date">Feb 04 2008 16:30 (local time)</span></p>
|
<p><span class="date">Feb 04 2008 16:30 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -323,11 +352,9 @@
|
||||||
- Changed: Information on llSensorRepeat()<br />
|
- Changed: Information on llSensorRepeat()<br />
|
||||||
- Added: llResetLandPassList()<br />
|
- Added: llResetLandPassList()<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.32</h3>
|
<h3>Release 2.32</h3>
|
||||||
|
|
||||||
<p><span class="date">Jan 27 2008 14:00 (local time)</span></p>
|
<p><span class="date">Jan 27 2008 14:00 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: open multiple files from menu 'File - Open - File...' or Ctrl-O<br />
|
- Added: open multiple files from menu 'File - Open - File...' or Ctrl-O<br />
|
||||||
|
@ -336,11 +363,9 @@
|
||||||
- Changed: 'Recent Projects' in 'Recent Solutions'<br />
|
- Changed: 'Recent Projects' in 'Recent Solutions'<br />
|
||||||
- Changed: 'Add new Project' changed into 'Add new Solution'<br />
|
- Changed: 'Add new Project' changed into 'Add new Solution'<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.31</h3>
|
<h3>Release 2.31</h3>
|
||||||
|
|
||||||
<p><span class="date">Jan 14 2008 16:28 (local time)</span></p>
|
<p><span class="date">Jan 14 2008 16:28 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: llUnescapeURL and llEscapeURL using UTF8 encoding<br />
|
- Changed: llUnescapeURL and llEscapeURL using UTF8 encoding<br />
|
||||||
|
@ -348,6 +373,7 @@
|
||||||
- Changed: improved label parsing<br />
|
- Changed: improved label parsing<br />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<p><span class="date">Jan 12 2008 10:43 (local time)</span></p>
|
<p><span class="date">Jan 12 2008 10:43 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: llDialog does not show OK button, using no buttons<br />
|
- Fixed: llDialog does not show OK button, using no buttons<br />
|
||||||
|
@ -370,11 +396,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Added: show status of capslock<br />
|
- Added: show status of capslock<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.30</h3>
|
<h3>Release 2.30</h3>
|
||||||
|
|
||||||
<p><span class="date">Dec 29 2007 12:27 (local time)</span></p>
|
<p><span class="date">Dec 29 2007 12:27 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: llParseString2List loops when using empty strings on spacers<br />
|
- Fixed: llParseString2List loops when using empty strings on spacers<br />
|
||||||
|
@ -390,11 +414,9 @@
|
||||||
- Fixed: line number issue on scrolling<br />
|
- Fixed: line number issue on scrolling<br />
|
||||||
- Fixed: cast error using llList2Vector for strings<br />
|
- Fixed: cast error using llList2Vector for strings<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.29</h3>
|
<h3>Release 2.29</h3>
|
||||||
|
|
||||||
<p><span class="date">Dec 18 2007 16:38 (local time)</span></p>
|
<p><span class="date">Dec 18 2007 16:38 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: when nothing is selected, Shift-Delete, copies entire line to clipboard and deletes it<br />
|
- Added: when nothing is selected, Shift-Delete, copies entire line to clipboard and deletes it<br />
|
||||||
|
@ -407,17 +429,16 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Unchecking Check-For-Updates, does check for updates, thats wrong<br />
|
- Fixed: Unchecking Check-For-Updates, does check for updates, thats wrong<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.28</h3>
|
<h3>Release 2.28</h3>
|
||||||
|
|
||||||
<p><span class="date">Dec 14 2007 00:40 (local time)</span></p>
|
<p><span class="date">Dec 14 2007 00:40 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: INS (insert) / OVR (override) on status bar, changes when hitting Insert key<br />
|
- Added: INS (insert) / OVR (override) on status bar, changes when hitting Insert key<br />
|
||||||
- Changed: Tab on notecards shows 'Text', where scripts shows 'Script'<br />
|
- Changed: Tab on notecards shows 'Text', where scripts shows 'Script'<br />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
<p><span class="date">Dec 13 2007 23:52 (local time)</span></p>
|
<p><span class="date">Dec 13 2007 23:52 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: When changing to a non existing state, show warning<br />
|
- Added: When changing to a non existing state, show warning<br />
|
||||||
|
@ -449,11 +470,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Version 2.24 an above were broken on simple Verbose messages!!<br />
|
- Fixed: Version 2.24 an above were broken on simple Verbose messages!!<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.27</h3>
|
<h3>Release 2.27</h3>
|
||||||
|
|
||||||
<p><span class="date">Dec 05 2007 17:35 (local time)</span></p>
|
<p><span class="date">Dec 05 2007 17:35 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: llModPow gives wrong answer using large numbers<br />
|
- Fixed: llModPow gives wrong answer using large numbers<br />
|
||||||
|
@ -462,11 +481,9 @@
|
||||||
- Fixed: Oops from llGetObjectDetails (only OBJECT_NAME and OBJECT_DESC implemented)<br />
|
- Fixed: Oops from llGetObjectDetails (only OBJECT_NAME and OBJECT_DESC implemented)<br />
|
||||||
- Fixed: comments having unballanced string quotes do not compile<br />
|
- Fixed: comments having unballanced string quotes do not compile<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.26</h3>
|
<h3>Release 2.26</h3>
|
||||||
|
|
||||||
<p><span class="date">Nov 28 2007 19:31 (local time)</span></p>
|
<p><span class="date">Nov 28 2007 19:31 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: llBase64ToInteger , needs testings<br />
|
- Changed: llBase64ToInteger , needs testings<br />
|
||||||
|
@ -485,11 +502,9 @@
|
||||||
- Fixed: llListenRemove does not work<br />
|
- Fixed: llListenRemove does not work<br />
|
||||||
- Fixed: llMessageLinked adds 1 extra event when compiling<br />
|
- Fixed: llMessageLinked adds 1 extra event when compiling<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.25</h3>
|
<h3>Release 2.25</h3>
|
||||||
|
|
||||||
<p><span class="date">Nov 22 2007 23:59 (local time)</span></p>
|
<p><span class="date">Nov 22 2007 23:59 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: true/false operators on vector and rotation<br />
|
- Added: true/false operators on vector and rotation<br />
|
||||||
|
@ -520,11 +535,10 @@
|
||||||
<p>
|
<p>
|
||||||
- Added: X-SecondLife-* headers in http request<br />
|
- Added: X-SecondLife-* headers in http request<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.24</h3>
|
<h3>Release 2.24</h3>
|
||||||
|
|
||||||
<p><span class="date">Nov 13 2007 01:33 (local time)</span></p>
|
<p><span class="date">Nov 13 2007 01:33 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: llResetLandBanList<br />
|
- Added: llResetLandBanList<br />
|
||||||
|
@ -544,10 +558,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: info on llDetachFromAvatar() shows argument<br />
|
- Fixed: info on llDetachFromAvatar() shows argument<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.23</h3>
|
<h3>Release 2.23</h3>
|
||||||
|
|
||||||
<p><span class="date">Nov 02 2007 15:53 (local time)</span></p>
|
<p><span class="date">Nov 02 2007 15:53 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: PRIM_SCULPT_TYPE_* constants<br />
|
- Added: PRIM_SCULPT_TYPE_* constants<br />
|
||||||
|
@ -576,10 +589,9 @@
|
||||||
- Changed: LSLEditor remembers workingdirectory<br />
|
- Changed: LSLEditor remembers workingdirectory<br />
|
||||||
- Changed: 'View Solutionexplorer' made persistent<br />
|
- Changed: 'View Solutionexplorer' made persistent<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.22</h3>
|
<h3>Release 2.22</h3>
|
||||||
|
|
||||||
<p><span class="date">Oct 23 2007 20:13 (local time)</span></p>
|
<p><span class="date">Oct 23 2007 20:13 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: When importing script, make form active.<br />
|
- Changed: When importing script, make form active.<br />
|
||||||
|
@ -595,12 +607,11 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p><span class="date">Oct 21 2007 20:18 (local time)</span></p>
|
<p><span class="date">Oct 21 2007 20:18 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Changed: Solution explorer, files are opened only once at a time<br />
|
- Changed: Solution explorer, files are opened only once at a time<br />
|
||||||
- Changed: Solution explorer, changed Prim entity to Object<br />
|
- Changed: Solution explorer, changed Prim entity to Object<br />
|
||||||
- Changed: Solution explorer, Objects can be added to Objects<br />
|
- Changed: Solution explorer, Objects can be added to Objects<br />
|
||||||
- Added: llMessageLinked can use linknum in solution explorer(needs testing)<br />
|
- Added: llMessageLinked can use linknum in solution explorer(needs testing)<br />
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>LINK_ROOT</li>
|
<li>LINK_ROOT</li>
|
||||||
<li>LINK_SET</li>
|
<li>LINK_SET</li>
|
||||||
|
@ -608,11 +619,10 @@
|
||||||
<li>LINK_ALL_CHILDREN</li>
|
<li>LINK_ALL_CHILDREN</li>
|
||||||
<li>LINK_THIS</li>
|
<li>LINK_THIS</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
Relationship is defined by place in solution explorer tree (no need to use llCreateLink)<br /><br />
|
Relationship is defined by place in solution explorer tree (no need to use llCreateLink)<br /><br />
|
||||||
- Fixed: the dialog is missing several buttons when using long text<br />
|
- Fixed: the dialog is missing several buttons when using long text<br />
|
||||||
- Changed: llDialog and llRequestPermissions removed topmost property<br />
|
- Changed: llDialog and llRequestPermissions removed topmost property<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Oct 20 2007 12:09 (local time)</span></p>
|
<p><span class="date">Oct 20 2007 12:09 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -635,10 +645,9 @@
|
||||||
- Fixed: Old bug on multiple changed scripts saving using Ctrl-S shortcut only saves first script<br />
|
- Fixed: Old bug on multiple changed scripts saving using Ctrl-S shortcut only saves first script<br />
|
||||||
- Fixed: Rename objects do not set object-name correctly<br />
|
- Fixed: Rename objects do not set object-name correctly<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.21</h3>
|
<h3>Release 2.21</h3>
|
||||||
|
|
||||||
<p><span class="date">Oct 16 2007 13:46 (local time)</span></p>
|
<p><span class="date">Oct 16 2007 13:46 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: Find/Replace window hides when pressing Escape<br />
|
- Changed: Find/Replace window hides when pressing Escape<br />
|
||||||
|
@ -646,29 +655,26 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p><span class="date">Oct 15 2007 23:10 (local time)</span></p>
|
<p><span class="date">Oct 15 2007 23:10 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Changed: Tools menu, starts at top node<br />
|
- Changed: Tools menu, starts at top node<br />
|
||||||
- Added: LSLEditor goes unicode<br />
|
- Added: LSLEditor goes unicode<br />
|
||||||
menu - tools - options - text editor - general - output format
|
menu - tools - options - text editor - general - output format
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>ANSI (default)</li>
|
<li>ANSI (default)</li>
|
||||||
<li>Unicode</li>
|
<li>Unicode</li>
|
||||||
<li>Unicode big endian</li>
|
<li>Unicode big endian</li>
|
||||||
<li>UTF-8</li>
|
<li>UTF-8</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
- Fixed: Save on new.lsl file crashes LSLEditor<br />
|
- Fixed: Save on new.lsl file crashes LSLEditor<br />
|
||||||
- Changed: bugreport, Highlight entry in left pane (also when lost focus)<br />
|
- Changed: bugreport, Highlight entry in left pane (also when lost focus)<br />
|
||||||
- Fixed: bugreport, 'check all / uncheck all' button has wrong initial state<br />
|
- Fixed: bugreport, 'check all / uncheck all' button has wrong initial state<br />
|
||||||
- Changed: autocompletion on ll-functions having zero arguments (or single void argument) completes with ')' char<br />
|
- Changed: autocompletion on ll-functions having zero arguments (or single void argument) completes with ')' char<br />
|
||||||
- Added: double-clicking on an error message after compile, line in edit window is highlighted<br />
|
- Added: double-clicking on an error message after compile, line in edit window is highlighted<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Oct 10 2007 10:59 (local time)</span></p>
|
<p><span class="date">Oct 10 2007 10:59 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Changed: In respect to solution explorer
|
- Changed: In respect to solution explorer
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>llGetObjectDesc</li>
|
<li>llGetObjectDesc</li>
|
||||||
<li>llSetObjectDesc</li>
|
<li>llSetObjectDesc</li>
|
||||||
|
@ -677,9 +683,8 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.20</h3>
|
<h3>Release 2.20</h3>
|
||||||
|
|
||||||
<p><span class="date">Oct 09 2007 16:12 (local time)</span></p>
|
<p><span class="date">Oct 09 2007 16:12 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: Plugin support<br />
|
- Added: Plugin support<br />
|
||||||
|
@ -712,11 +717,9 @@
|
||||||
- Changed: Wildcard autocompletion on argument, changed to show only pulldown menu (example llGetInventoryName)<br />
|
- Changed: Wildcard autocompletion on argument, changed to show only pulldown menu (example llGetInventoryName)<br />
|
||||||
- Added: llRot2Fwd / llRot2Up / llRot2Left<br />
|
- Added: llRot2Fwd / llRot2Up / llRot2Left<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.19</h3>
|
<h3>Release 2.19</h3>
|
||||||
|
|
||||||
<p><span class="date">Oct 01 2007 16:30 (local time)</span></p>
|
<p><span class="date">Oct 01 2007 16:30 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: Make text bold on active tab<br />
|
- Changed: Make text bold on active tab<br />
|
||||||
|
@ -745,11 +748,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Selection from last line does not work<br />
|
- Fixed: Selection from last line does not work<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.18</h3>
|
<h3>Release 2.18</h3>
|
||||||
|
|
||||||
<p><span class="date">Sep 21 2007 19:09 (local time)</span></p>
|
<p><span class="date">Sep 21 2007 19:09 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: SaveAs was broken<br />
|
- Fixed: SaveAs was broken<br />
|
||||||
|
@ -768,11 +769,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Added: http 'ContentLength' on llHTTPRequest POST requests<br />
|
- Added: http 'ContentLength' on llHTTPRequest POST requests<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.17</h3>
|
<h3>Release 2.17</h3>
|
||||||
|
|
||||||
<p><span class="date">Sep 19 2007 12:47 (local time)</span></p>
|
<p><span class="date">Sep 19 2007 12:47 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Closing LSLEditor saves (all) changed files using its own name, example files (new.lsl) shows dialog<br />
|
- Fixed: Closing LSLEditor saves (all) changed files using its own name, example files (new.lsl) shows dialog<br />
|
||||||
|
@ -817,11 +816,9 @@
|
||||||
- Added: Date/time on printed output<br />
|
- Added: Date/time on printed output<br />
|
||||||
- Changed: Case insensitive on ECC<br />
|
- Changed: Case insensitive on ECC<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.16</h3>
|
<h3>Release 2.16</h3>
|
||||||
|
|
||||||
<p><span class="date">Sep 13 2007 12:10 (local time)</span></p>
|
<p><span class="date">Sep 13 2007 12:10 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: Experimental Code Completion (ECC) on user defined variable names, menu - tools - options - Text Editor - Code Completion<br />
|
- Added: Experimental Code Completion (ECC) on user defined variable names, menu - tools - options - Text Editor - Code Completion<br />
|
||||||
|
@ -846,11 +843,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: First users see only a small window<br />
|
- Fixed: First users see only a small window<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.15</h3>
|
<h3>Release 2.15</h3>
|
||||||
|
|
||||||
<p><span class="date">Sep 03 2007 17:00 (local time)</span></p>
|
<p><span class="date">Sep 03 2007 17:00 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Renaming of non scripts and non notecards<br />
|
- Fixed: Renaming of non scripts and non notecards<br />
|
||||||
|
@ -867,11 +862,9 @@
|
||||||
- Fixed: Recent projects menu blocks when dirty script has to be saved<br />
|
- Fixed: Recent projects menu blocks when dirty script has to be saved<br />
|
||||||
- Added: Menu - Tools - Options - Environment - General - delete old files after update<br />
|
- Added: Menu - Tools - Options - Environment - General - delete old files after update<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.14</h3>
|
<h3>Release 2.14</h3>
|
||||||
|
|
||||||
<p><span class="date">Aug 27 2007 12:07 (local time)</span></p>
|
<p><span class="date">Aug 27 2007 12:07 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Crash in Renaming files containing illegal chars in Solutionexplorer<br />
|
- Fixed: Crash in Renaming files containing illegal chars in Solutionexplorer<br />
|
||||||
|
@ -903,11 +896,9 @@
|
||||||
- Added: llGetInventoryType (when using solution explorer)<br />
|
- Added: llGetInventoryType (when using solution explorer)<br />
|
||||||
- Changed: Blockcommenting Ctrl-K and Ctrl-L (also on non selected line)<br />
|
- Changed: Blockcommenting Ctrl-K and Ctrl-L (also on non selected line)<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.13</h3>
|
<h3>Release 2.13</h3>
|
||||||
|
|
||||||
<p><span class="date">Aug 22 2007 17:57 (local time)</span></p>
|
<p><span class="date">Aug 22 2007 17:57 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Crash on making default state<br />
|
- Fixed: Crash on making default state<br />
|
||||||
|
@ -967,11 +958,9 @@
|
||||||
- Changed: Sending bugreports can be canceled<br />
|
- Changed: Sending bugreports can be canceled<br />
|
||||||
- Changed: implicit float to integer operator to explicit<br />
|
- Changed: implicit float to integer operator to explicit<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.12</h3>
|
<h3>Release 2.12</h3>
|
||||||
|
|
||||||
<p><span class="date">Aug 10 2007 13:13 (local time)</span></p>
|
<p><span class="date">Aug 10 2007 13:13 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: LSLEditorHelp offline wiki (Tools - Editor properties)<br />
|
- Added: LSLEditorHelp offline wiki (Tools - Editor properties)<br />
|
||||||
|
@ -998,11 +987,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Added: Smtp Authentication for llEmail (Tools, Runtime Properties, External, Email)<br />
|
- Added: Smtp Authentication for llEmail (Tools, Runtime Properties, External, Email)<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.11</h3>
|
<h3>Release 2.11</h3>
|
||||||
|
|
||||||
<p><span class="date">Jul 30 2007 16:19 (local time)</span></p>
|
<p><span class="date">Jul 30 2007 16:19 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: Home key works also on white-space lines<br />
|
- Added: Home key works also on white-space lines<br />
|
||||||
|
@ -1022,15 +1009,12 @@
|
||||||
- Fixed: Editor crash when closing project having browser window open<br />
|
- Fixed: Editor crash when closing project having browser window open<br />
|
||||||
- Added: llGetLocalPos()<br />
|
- Added: llGetLocalPos()<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.10</h3>
|
<h3>Release 2.10</h3>
|
||||||
|
|
||||||
<p><span class="date">Jul 25 2007 14:30 (local time)</span></p>
|
<p><span class="date">Jul 25 2007 14:30 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Added: Solution Explorer (first look)<br />
|
- Added: Solution Explorer (first look)<br />
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>llGetObjectName</li>
|
<li>llGetObjectName</li>
|
||||||
<li>llGetScriptName</li>
|
<li>llGetScriptName</li>
|
||||||
|
@ -1041,10 +1025,9 @@
|
||||||
<li>llGetNumberOfNotecardLines</li>
|
<li>llGetNumberOfNotecardLines</li>
|
||||||
<li>llGetNotecardLine</li>
|
<li>llGetNotecardLine</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
- Added: Reset option on Editor properties<br />
|
- Added: Reset option on Editor properties<br />
|
||||||
- Added: mod operator (%) on integer<br />
|
- Added: mod operator (%) on integer<br />
|
||||||
</p>
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Jul 24 2007 11:55 (local time)</span></p>
|
<p><span class="date">Jul 24 2007 11:55 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -1067,11 +1050,9 @@
|
||||||
- Added: Bugtracker to Menu Help , Bugreport<br />
|
- Added: Bugtracker to Menu Help , Bugreport<br />
|
||||||
- Changed: Home button toggles between start of line, and first non whitespace<br />
|
- Changed: Home button toggles between start of line, and first non whitespace<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.9</h3>
|
<h3>Release 2.9</h3>
|
||||||
|
|
||||||
<p><span class="date">Jul 16 2007 11:25 (local time)</span></p>
|
<p><span class="date">Jul 16 2007 11:25 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Changed: Autocompletion images scale on changing fonts<br />
|
- Changed: Autocompletion images scale on changing fonts<br />
|
||||||
|
@ -1098,11 +1079,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Tooltip shows bold on some High-Resolution machines (David IOU1)<br />
|
- Fixed: Tooltip shows bold on some High-Resolution machines (David IOU1)<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.8</h3>
|
<h3>Release 2.8</h3>
|
||||||
|
|
||||||
<p><span class="date">Jul 10 2007 08:41 (local time)</span></p>
|
<p><span class="date">Jul 10 2007 08:41 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Runtime properties, incorrect key from cache (xor)<br />
|
- Fixed: Runtime properties, incorrect key from cache (xor)<br />
|
||||||
|
@ -1126,11 +1105,9 @@
|
||||||
- Added: Boundary checks on list functions<br />
|
- Added: Boundary checks on list functions<br />
|
||||||
- Fixed: jump statement gives error (_goto)<br/>
|
- Fixed: jump statement gives error (_goto)<br/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.7</h3>
|
<h3>Release 2.7</h3>
|
||||||
|
|
||||||
<p><span class="date">Jul 4 2007 12:12 (local time)</span></p>
|
<p><span class="date">Jul 4 2007 12:12 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: Bitwise Xor operator on integer (^)<br/>
|
- Added: Bitwise Xor operator on integer (^)<br/>
|
||||||
|
@ -1152,17 +1129,15 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p><span class="date">Jul 1 2007 23:55 (local time)</span></p>
|
<p><span class="date">Jul 1 2007 23:55 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Added: Smart indenting on closing parenthesis (experimental)<br />
|
- Added: Smart indenting on closing parenthesis (experimental)<br />
|
||||||
- Revised: (Needs testing!!)
|
- Revised: (Needs testing!!)
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>llGetSubString</li>
|
<li>llGetSubString</li>
|
||||||
<li>llDeleteSubString</li>
|
<li>llDeleteSubString</li>
|
||||||
<li>llList2List</li>
|
<li>llList2List</li>
|
||||||
<li>llDeleteSubList</li>
|
<li>llDeleteSubList</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
- Added:
|
- Added:
|
||||||
<ul>
|
<ul>
|
||||||
<li>llIntegerToBase64</li>
|
<li>llIntegerToBase64</li>
|
||||||
|
@ -1171,6 +1146,7 @@
|
||||||
<li>llBase64ToString</li>
|
<li>llBase64ToString</li>
|
||||||
<li>llXorBase64StringsCorrect</li>
|
<li>llXorBase64StringsCorrect</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p><span class="date">Jun 30 2007 11:41 (local time)</span></p>
|
<p><span class="date">Jun 30 2007 11:41 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -1194,11 +1170,9 @@
|
||||||
- Changed: Tab / Shift Tab , toggles indent block of text<br />
|
- Changed: Tab / Shift Tab , toggles indent block of text<br />
|
||||||
- Changed: Home button sets cursor to beginning of line, after whitespace<br />
|
- Changed: Home button sets cursor to beginning of line, after whitespace<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.6</h3>
|
<h3>Release 2.6</h3>
|
||||||
|
|
||||||
<p><span class="date">Jun 27 2007 18:20 (local time)</span></p>
|
<p><span class="date">Jun 27 2007 18:20 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Editor crashes on error in dataserver script<br />
|
- Fixed: Editor crashes on error in dataserver script<br />
|
||||||
|
@ -1211,10 +1185,9 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p><span class="date">Jun 25 2007 21:08 (local time)</span></p>
|
<p><span class="date">Jun 25 2007 21:08 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Fixed: Indent adds tab on lines ending in comment or whitespace<br />
|
- Fixed: Indent adds tab on lines ending in comment or whitespace<br />
|
||||||
- Added: XML-RPC listening base port 50888<br />
|
- Added: XML-RPC listening base port 50888<br />
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li> remote_data (event)</li>
|
<li> remote_data (event)</li>
|
||||||
<li> llOpenRemoteDataChannel</li>
|
<li> llOpenRemoteDataChannel</li>
|
||||||
|
@ -1222,13 +1195,12 @@
|
||||||
<li> llRemoteDataReply</li>
|
<li> llRemoteDataReply</li>
|
||||||
<li> llSendRemoteData (untested)</li>
|
<li> llSendRemoteData (untested)</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
|
||||||
- Fixed: Tooltips shows 'lt;' and 'gt;'<br />
|
- Fixed: Tooltips shows 'lt;' and 'gt;'<br />
|
||||||
- Added: Bugreport to Menu Help<br />
|
- Added: Bugreport to Menu Help<br />
|
||||||
- Added: llLoadURL<br />
|
- Added: llLoadURL<br />
|
||||||
- Added: listen callbacks are removed on state change<br />
|
- Added: listen callbacks are removed on state change<br />
|
||||||
- Added: llListenControl<br />
|
- Added: llListenControl<br />
|
||||||
</p>
|
</div>
|
||||||
<p><span class="date">Jun 24 2007 13:11 (local time)</span></p>
|
<p><span class="date">Jun 24 2007 13:11 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Added: Print preview<br />
|
- Added: Print preview<br />
|
||||||
|
@ -1249,11 +1221,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Compiles empty documents and/or absent default state<br />
|
- Fixed: Compiles empty documents and/or absent default state<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.5</h3>
|
<h3>Release 2.5</h3>
|
||||||
|
|
||||||
<p><span class="date">Jun 20 2007 22:41 (local time)</span></p>
|
<p><span class="date">Jun 20 2007 22:41 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Menu Tools does not work<br />
|
- Fixed: Menu Tools does not work<br />
|
||||||
|
@ -1281,11 +1251,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Fixed: key problem (breaks listen and more)<br />
|
- Fixed: key problem (breaks listen and more)<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.4</h3>
|
<h3>Release 2.4</h3>
|
||||||
|
|
||||||
<p><span class="date">Jun 13 2007 12:12 (local time)</span></p>
|
<p><span class="date">Jun 13 2007 12:12 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Release 2.4<br />
|
- Release 2.4<br />
|
||||||
|
@ -1311,15 +1279,15 @@
|
||||||
- Fixed: Undo slow on large documents<br />
|
- Fixed: Undo slow on large documents<br />
|
||||||
</p>
|
</p>
|
||||||
<p><span class="date">Jun 09 2007 11:44 (local time)</span></p>
|
<p><span class="date">Jun 09 2007 11:44 (local time)</span></p>
|
||||||
<p>
|
<div>
|
||||||
- Added: brackets matching<br />
|
- Added: brackets matching<br />
|
||||||
</p>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>parentheses or round brackets: ( )</li>
|
<li>parentheses or round brackets: ( )</li>
|
||||||
<li>box brackets or square brackets: [ ]</li>
|
<li>box brackets or square brackets: [ ]</li>
|
||||||
<li>curly brackets or braces: { }</li>
|
<li>curly brackets or braces: { }</li>
|
||||||
<li>angle brackets or chevrons: < ></li>
|
<li>angle brackets or chevrons: < ></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</div>
|
||||||
<p><span class="date">Jun 08 2007 19:35 (local time)</span></p>
|
<p><span class="date">Jun 08 2007 19:35 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Undo after find / replace<br />
|
- Fixed: Undo after find / replace<br />
|
||||||
|
@ -1334,11 +1302,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Added: Find and Replace<br />
|
- Added: Find and Replace<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.3</h3>
|
<h3>Release 2.3</h3>
|
||||||
|
|
||||||
<p><span class="date">Jun 06 2007 17:01 (local time)</span></p>
|
<p><span class="date">Jun 06 2007 17:01 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Fixed: Editor does not show on taskbar<br />
|
- Fixed: Editor does not show on taskbar<br />
|
||||||
|
@ -1432,11 +1398,9 @@
|
||||||
- added comparison operators for list,key,float,integer,vector and rotation<br />
|
- added comparison operators for list,key,float,integer,vector and rotation<br />
|
||||||
- when opening an existing document, the untouched 'new.lsl' example is destroyed<br />
|
- when opening an existing document, the untouched 'new.lsl' example is destroyed<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.2</h3>
|
<h3>Release 2.2</h3>
|
||||||
|
|
||||||
<p><span class="date">May 26 2007 18:00 (local time)</span></p>
|
<p><span class="date">May 26 2007 18:00 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- Tooltipping / Codecompletion hitting the boundaries of parent window<br />
|
- Tooltipping / Codecompletion hitting the boundaries of parent window<br />
|
||||||
|
@ -1479,11 +1443,9 @@
|
||||||
<p>
|
<p>
|
||||||
- Simulator docks at bottom<br />
|
- Simulator docks at bottom<br />
|
||||||
</p>
|
</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.1</h3>
|
<h3>Release 2.1</h3>
|
||||||
|
|
||||||
<p><span class="date">May 14 2007 22:47 (local time)</span></p>
|
<p><span class="date">May 14 2007 22:47 (local time)</span></p>
|
||||||
<p>
|
<p>
|
||||||
- <b>Release 2.1 (Multiple document interface)</b><br />
|
- <b>Release 2.1 (Multiple document interface)</b><br />
|
||||||
|
@ -1556,11 +1518,9 @@
|
||||||
|
|
||||||
<p><span class="date">Apr 29 2007 15:29 (local time)</span></p>
|
<p><span class="date">Apr 29 2007 15:29 (local time)</span></p>
|
||||||
<p>First implementation of linenumbers</p>
|
<p>First implementation of linenumbers</p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 2.0</h3>
|
<h3>Release 2.0</h3>
|
||||||
|
|
||||||
<p><span class="date">Apr 28 2007 14:01 (local time)</span></p>
|
<p><span class="date">Apr 28 2007 14:01 (local time)</span></p>
|
||||||
<p>Changed project to .NET 2.0</p>
|
<p>Changed project to .NET 2.0</p>
|
||||||
|
|
||||||
|
@ -1625,13 +1585,13 @@
|
||||||
- Compile, the hello world example should work on state_entry event<br>
|
- Compile, the hello world example should work on state_entry event<br>
|
||||||
- Open/Save and edit lsl script files</p>
|
- Open/Save and edit lsl script files</p>
|
||||||
<p><span class="date">Oct 2, 2006 (local time)</span></p>
|
<p><span class="date">Oct 2, 2006 (local time)</span></p>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<h3>Release 1.0</h3>
|
<h3>Release 1.0</h3>
|
||||||
|
|
||||||
<p>First idea and prototype</p>
|
<p>First idea and prototype</p>
|
||||||
|
|
||||||
<p><span class="date">Oct 1, 2006 (local time)</span></p>
|
<p><span class="date">Oct 1, 2006 (local time)</span></p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue