You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Changelog.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,20 @@ What was added:
139
139
* SerializableBase64Converter - for converting and parsing Base64 expressions (java.io.Serializable)!
140
140
* ArrayConverter - for converting and parsing primitive arrays!
141
141
##
142
-
*
143
-
142
+
* OperationGroups - for parsing expression groups such as (5 + 5) / 2
143
+
* ArithmeticOperators - for parsing arithmetic expression such as 2 + 5 * 4 ** 2
144
+
* LogicalOperators - for parsing logical expression such as true && false || true
145
+
* ComparisonOperators - for comparing objects, for instance 6 > 5
146
+
* ConditionalAssignmentOperators - that provides ternary operator (?:) and null coalescing (??)
147
+
* NegationOperator - to negate stuff, for example !true
148
+
* SerializationProtocol API - long known protocol system for more complex objects. It contains 8 protocols as before! Now protocols are operated by ObjectConverter!
149
+
* New import system that allows you to import some class once with certain alias and then use it with that alias, similar to java!
150
+
* Too big integers are now automatically converted into long without necessarily of using L suffix!
151
+
* Small new syntax features!
152
+
* Alot of string utility methods from Serializer become public and some were moved into converters where they are mainly used!
153
+
* Registry object which is Collection type that can store only one instance per class!
154
+
* Some new functions in Scope!
155
+
* Deprecated methods were removed!
156
+
* Source code was excluded from main jar to save space and is now available in separate src.zip file! Now on java doc files will not be provided and src.zip should be used instead!
157
+
* Small bugs fixed but there were alot of internal changes so I encourage you to report any bug you encounter!
0 commit comments