diff --git a/trunk/LSLEditor.RES b/trunk/LSLEditor.RES index 34647d4..6af5849 100644 Binary files a/trunk/LSLEditor.RES and b/trunk/LSLEditor.RES differ diff --git a/trunk/Properties/AssemblyInfo.cs b/trunk/Properties/AssemblyInfo.cs index 105a890..0674a78 100644 --- a/trunk/Properties/AssemblyInfo.cs +++ b/trunk/Properties/AssemblyInfo.cs @@ -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.45.1.*")] +[assembly: AssemblyVersion("2.46.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.45.1.0")] +[assembly: AssemblyFileVersionAttribute("2.46.0.0")] diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index 02e7fcf..5195f74 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -708,8 +708,13 @@ string llGetAgentLanguage( key avatar ); - Returns a string that is the language code of the preferred - interface language of the user avatar. + Returns a string that is the language code of the preferred interface language of the user avatar. + + + + list llGetAgentList( integer Scope, list Options ); + + Returns a list of agents from the specified scope (parcel, owner's parcel, region). @@ -4662,6 +4667,10 @@ Constants that do not fit into any of the previously defined categories. + + + + @@ -4959,6 +4968,7 @@ + diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index d447676..e78e6ca 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -8,12 +8,28 @@
-

<2012-04-00 - Release 2.46.0

+

<2012-04-23 - Release 2.46.0

+ * Added constants/function currently on the Magnum RC. +
+ * Constants: +
    +
  • AGENT_LIST_PARCEL
  • +
  • AGENT_LIST_PARCEL_OWNER
  • +
  • AGENT_LIST_REGION
  • +
  • PRIM_SLICE
  • +
+
+
+ * Functions: +
    +
  • llGetAgentList
  • +
+
* Fixed:
  • SF ID: 3072580 - HTTP Request response returned gzip compressed string. (Thanks to Akkarin Dryke).
  • -
  • Also fixed HTTP Request response returning UTF-8 (instead of ASCII).
  • +
  • Also fixed HTTP Request response to return UTF-8 (instead of ASCII).
diff --git a/trunk/SecondLife/SecondLifeMain.cs b/trunk/SecondLife/SecondLifeMain.cs index 2506f50..b7f8e88 100644 --- a/trunk/SecondLife/SecondLifeMain.cs +++ b/trunk/SecondLife/SecondLifeMain.cs @@ -230,6 +230,10 @@ namespace LSLEditor public static readonly integer AGENT_BY_LEGACY_NAME = 0x1; public static readonly integer AGENT_BY_USERNAME = 0x10; + public static readonly integer AGENT_LIST_PARCEL = 0x01; + public static readonly integer AGENT_LIST_PARCEL_OWNER = 0x02; + public static readonly integer AGENT_LIST_REGION = 0x04; + public static readonly integer ATTACH_CHEST = 1; public static readonly integer ATTACH_HEAD = 2; public static readonly integer ATTACH_LSHOULDER = 3; @@ -602,6 +606,7 @@ namespace LSLEditor public static readonly integer PRIM_SHINY_MEDIUM = 2; public static readonly integer PRIM_SHINY_NONE = 0; public static readonly integer PRIM_SIZE = 7; + public static readonly integer PRIM_SLICE = 35; public static readonly integer PRIM_TEMP_ON_REZ = 4; public static readonly integer PRIM_TEXGEN = 22; public static readonly integer PRIM_TEXGEN_DEFAULT = 0; @@ -1761,6 +1766,12 @@ namespace LSLEditor return strLan; } + public list llGetAgentList(integer Scope, list Options) + { + Verbose("llGetAgentList({0}, [{1}])", Scope, Options); + return new list(); + } + public vector llGetAgentSize(key id) { Verbose("GetAgentSize(" + id + ")"); diff --git a/trunk/lsleditor.csproj b/trunk/lsleditor.csproj index 4fefa0d..dfa082e 100644 --- a/trunk/lsleditor.csproj +++ b/trunk/lsleditor.csproj @@ -12,7 +12,7 @@ LSLEditor - testing.pfx + lsl-editor.pfx JScript Grid IE50 @@ -94,6 +94,12 @@ prompt AllRules.ruleset + + true + + + 5CBB20152EC70EC13542B336790AF2E7AB2E1DEB + System @@ -228,6 +234,8 @@ + + @@ -717,6 +725,8 @@ + +