-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nabeel Ansari
committed
Oct 9, 2017
1 parent
a9e683a
commit 56c93f9
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Version: 1.6.1 | ||
|
||
New features: | ||
- Syntactic sugar for binary numbers. Type `b` at the end of a number for LSB-right, for example `1100b` is 12. `b` at the beginning is LSB-left, where `b1100` is 3. | ||
- Linux Keymap file has been added. | ||
- List adds can now be used inside of other blocks, such as ifs, whiles, and fors. | ||
|
||
Bug Fixes: | ||
- Coloring for `list` keyword has been corrected. | ||
- Fixed a float compilation bug where using int_to_real() inside a literal expression with a resulting whole number (like `int_to_real(1000)/20.0`) would result in compiling to scientific notation (like `5e1`) instead of decimal point notation (like `50.0`). | ||
- Fixed CONTROL_PAR_CURSOR_PICTURE not being supported. |