Releasing 2.51.0

This commit is contained in:
Ima Mechanique 2013-05-16 15:12:12 +01:00
parent a4ccd96bb9
commit c8a37b66bc
4 changed files with 86 additions and 9 deletions

View file

@ -70,7 +70,7 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.50.0.1")]
[assembly: AssemblyVersion("2.51.0.0")]
//
// In order to sign your assembly you must specify a key to use. Refer to the
@ -100,4 +100,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyName("")]
[assembly: ComVisibleAttribute(false)]
[assembly: AssemblyFileVersionAttribute("2.50.0.1")]
[assembly: AssemblyFileVersionAttribute("2.51.0.0")]

View file

@ -764,6 +764,12 @@
Returns a list of keys of all playing animations for avatar id.
</Word>
<Word name="llGetAnimationOverride">
string llGetAnimationOverride(string AnimationState);
Returns the name of the animation used for specified animation state.
</Word>
<Word name="llGetAttached">
integer llGetAttached(void);
@ -2309,6 +2315,12 @@
• key id avatar UUID
</Word>
<Word name="llResetAnimationOverride">
void llResetAnimationOverride(string AnimationState);
Resets the animation override of the specified animation state to the corresponding default value.
</Word>
<Word name="llResetLandBanList">
llResetLandBanList(void)
@ -2533,6 +2545,12 @@
<Argument name="iLocal">If TRUE, the vForce is treated as a local directional vector instead of a regional directional vector.</Argument>
</Word>
<Word name="llSetAnimationOverride">
void llSetAnimationOverride(string AnimationState, string Animation);
Set the animation that will play for the given animation state.
</Word>
<Word name="llSetBuoyancy">
llSetBuoyancy(float buoyancy);
@ -2578,7 +2596,7 @@
<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.
Set the Internet media type of an LSL HTTP server response. ContentType accepts the constants CONTENT_TYPE_ATOM, CONTENT_TYPE_FORM, CONTENT_TYPE_HTML, CONTENT_TYPE_JSON, CONTENT_TYPE_LLSD, CONTENT_TYPE_RSS, CONTENT_TYPE_TEXT, CONTENT_TYPE_XHTML, and CONTENT_TYPE_XML.
</Word>
<Word name="llSetDamage">
@ -3759,6 +3777,7 @@
<Word name="PERMISSION_CHANGE_PERMISSIONS" value="">
(not yet implemented)
</Word>
<Word name="PERMISSION_OVERRIDE_ANIMATIONS" value="0x8000" />
<Word name="PERMISSION_RELEASE_OWNERSHIP" value="">
(not yet implemented)
</Word>
@ -4772,7 +4791,16 @@
When the prim is touched, touch events are triggered"
</Word>
<Word name="CONTENT_TYPE_ATOM">"application/atom+xml"</Word>
<Word name="CONTENT_TYPE_FORM">"application/x-www-form-urlencoded"</Word>
<Word name="CONTENT_TYPE_HTML">"text/html", only valid for embedded browsers on content owned by the person viewing. Falls back to "text/plain" otherwise.</Word>
<Word name="CONTENT_TYPE_JSON">"application/json"</Word>
<Word name="CONTENT_TYPE_LLSD">"application/llsd+xml"</Word>
<Word name="CONTENT_TYPE_RSS">"application/rss+xml"</Word>
<Word name="CONTENT_TYPE_TEXT">"text/plain"</Word>
<Word name="CONTENT_TYPE_XHTML">"application/xhtml+xml"</Word>
<Word name="CONTENT_TYPE_XML">"application/xml"</Word>
<Word name="DEBUG_CHANNEL">
DEBUG_CHANNEL is an integer constant that, when passed to
llSay, llWhisper, or llShout as a channel parameter,

View file

@ -1,12 +1,34 @@
<html>
<head>
<title>Release Notes</title>
<style>
.date { text-decoration: underline; }
</style>
<style>.date { text-decoration: underline; }</style>
</head>
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
<div>
<div>
<h3><span class="date">2013-05-16</span> - Release 2.51.0</h3>
<div>
* Constants Added:
<ul>
<li>CONTENT_TYPE_ATOM</li>
<li>CONTENT_TYPE_FORM</li>
<li>CONTENT_TYPE_JSON</li>
<li>CONTENT_TYPE_LLSD</li>
<li>CONTENT_TYPE_RSS</li>
<li>CONTENT_TYPE_XHTML</li>
<li>CONTENT_TYPE_XML</li>
<li>PERMISSION_OVERRIDE_ANIMATIONS</li>
</ul>
</div>
<div>
* Functions added:
<ul>
<li>llGetAnimationOverride()</li>
<li>llResetAnimationOverride()</li>
<li>llSetAnimationOverride()</li>
</ul>
</div>
</div>
<div>
<h3><span class="date">2013-03-04</span> - Release 2.50.0</h3>
<div>

View file

@ -336,7 +336,17 @@ namespace LSLEditor
public static readonly integer CLICK_ACTION_OPEN = 4;
public static readonly integer CLICK_ACTION_PLAY = 5;
public static readonly integer CLICK_ACTION_OPEN_MEDIA = 6;
public static readonly string CONTENT_TYPE_ATOM = "application/atom+xml";
public static readonly string CONTENT_TYPE_FORM = "application/x-www-form-urlencoded";
public static readonly string CONTENT_TYPE_HTML = "text/html";
public static readonly string CONTENT_TYPE_JSON = "application/json";
public static readonly string CONTENT_TYPE_LLSD = "application/llsd+xml";
public static readonly string CONTENT_TYPE_RSS = "application/rss+xml";
public static readonly string CONTENT_TYPE_TEXT = "text/plain";
public static readonly string CONTENT_TYPE_XHTML = "application/xhtml+xml";
public static readonly string CONTENT_TYPE_XML = "application/xml";
public static readonly integer CONTROL_FWD = 1;
public static readonly integer CONTROL_BACK = 2;
public static readonly integer CONTROL_LEFT = 4;
@ -543,8 +553,9 @@ namespace LSLEditor
public static readonly integer PERMISSION_CHANGE_LINKS = 128;
public static readonly integer PERMISSION_CHANGE_JOINTS = 256;
public static readonly integer PERMISSION_CHANGE_PERMISSIONS = 512;
public static readonly integer PERMISSION_TRACK_CAMERA = 1024;
public static readonly integer PERMISSION_CONTROL_CAMERA = 2048;
public static readonly integer PERMISSION_OVERRIDE_ANIMATIONS = 0x8000;
public static readonly integer PERMISSION_TRACK_CAMERA = 1024;
public static readonly integer PRIM_BUMP_BARK = 4;
public static readonly integer PRIM_BUMP_BLOBS = 12;
@ -1848,6 +1859,12 @@ namespace LSLEditor
return new list();
}
public String llGetAnimationOverride(String sAnimationState)
{
Verbose("GetAnimationOverride(" + sAnimationState + ")");
return "";
}
public integer llGetAttached()
{
Verbose("GetAttached()");
@ -3557,6 +3574,11 @@ namespace LSLEditor
return kID;
}
public void llResetAnimationOverride(String sAnimationState)
{
Verbose("llResetAnimationOverride({0})", sAnimationState);
}
public void llResetLandBanList()
{
m_LandBanList = new Hashtable();
@ -3761,6 +3783,11 @@ namespace LSLEditor
Verbose("llSetAngularVelocity(" + vForce + "," + iLocal + ")");
}
public void llSetAnimationOverride(String sAnimationState, String sAnimation)
{
Verbose("llSetAnimationOverride({0}, {1})", sAnimationState, sAnimation);
}
public void llSetBuoyancy(Float buoyancy)
{
Verbose("SetBuoyancy(" + buoyancy + ")");