diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index f0afa01..40ad9a1 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -4737,6 +4737,7 @@ U+FDD2 + U+FDD7 U+FDD0 U+FDD5 diff --git a/trunk/Resource/ReleaseNotes.htm b/trunk/Resource/ReleaseNotes.htm index 68aa8b0..38f2237 100644 --- a/trunk/Resource/ReleaseNotes.htm +++ b/trunk/Resource/ReleaseNotes.htm @@ -6,11 +6,17 @@
-

2013-07-00 - Release 2.xx.x

+

2013-10-18 - Release 2.55.0

+
+ * Constants Added: +
    +
  • JSON_DELETE
  • +
+
* Fixes
    -
  • Auto-complete should now be consistent for functions having no arguments. This was a configuration issue with older tool-tips entries.
  • +
  • Auto-complete should now be consistent for functions having no arguments. This was a configuration issue with older tool-tip entries.

2013-07-15 - Release 2.54.0

diff --git a/trunk/SecondLife/LSL_Constants.cs b/trunk/SecondLife/LSL_Constants.cs index 259d60a..b65f055 100644 --- a/trunk/SecondLife/LSL_Constants.cs +++ b/trunk/SecondLife/LSL_Constants.cs @@ -273,6 +273,7 @@ namespace LSLEditor public const int JSON_APPEND = -1; public const string JSON_ARRAY = "\uFDD2"; + public const string JSON_DELETE = "\uFDD8"; public const string JSON_FALSE = "\uFDD7"; public const string JSON_INVALID = "\uFDD0"; public const string JSON_NULL = "\uFDD5";