Page 1 of 2
2.5 version
Posted: Wed Sep 11, 2013 4:42 am
by Mr. Kibernetik
New command will be added:
SET EDITOR FONT SIZE n
sets size of editor font to value [n].
Re: 2.5 version
Posted: Wed Sep 11, 2013 6:42 pm
by Mr. Kibernetik
New command will be added:
SET EDITOR DEFAULT
sets editor font settings to default.
Re: 2.5 version
Posted: Wed Sep 11, 2013 7:48 pm
by Mr. Kibernetik
New commands will be added:
SET EDITOR BACK COLOR r,g,b
sets editor background color to value with red [r], green [g] and blue components. Valid values are from 0 to 1.
SET EDITOR FONT COLOR r,g,b
sets editor font color to value with red [r], green [g] and blue components. Valid values are from 0 to 1.
Re: 2.5 version
Posted: Thu Sep 12, 2013 3:19 am
by Mr. Kibernetik
New command will be added:
SET EDITOR FONT NAME n$
sets name of editor font to [n$]. List of fonts you can get by command LIST FONTS.
Command LIST FONTS will return alphabetically sorted list of fonts.
Re: 2.5 version
Posted: Thu Sep 12, 2013 4:53 am
by Mr. Kibernetik
Re: 2.5 version
Posted: Sat Sep 14, 2013 3:41 am
by Mr. Kibernetik
Icons will be redesigned to be more standard-looking.
Text search in code editor will be implemented.
![Снимок экрана 2013-09-14 в 9.46.59.png](./download/file.php?id=44&sid=1fffbe28a9aff72a82eb5f274113347b)
- Снимок экрана 2013-09-14 в 9.46.59.png (137.9 KiB) Viewed 3720 times
Re: 2.5 version
Posted: Sat Sep 14, 2013 6:37 am
by Mr. Kibernetik
DEBUG ON/OFF command will become obsolete because new "pause" button will be implemented.
Re: 2.5 version
Posted: Sat Sep 14, 2013 6:41 am
by Mr. Kibernetik
All example programs will be put inside folder "Examples".
Re: 2.5 version
Posted: Sat Sep 14, 2013 7:17 pm
by Mr. Kibernetik
Unique feature of tinting of selected lines of code in code editor will be implemented:
You can set tinted background in code editor for any lines of your code. To do this you need to set special color marks in the beginning of code line. Color marks are: 'r', 'g', 'b', 'c', 'm', 'y' for red, green, blue, cyan, magenta and yellow tint colors respectively. If you need to stop coloring at some line, use '' (two ' characters) color mark. Example of tinted code:
Code: Select all
'r'
PRINT A 'line with red tint
'g'
PRINT B1 'lines with green tint
PRINT B2
''
PRINT C 'line without tint
'b'
PRINT D 'line with blue tint
Tinting is applied to background of any color. Note: tinting is available for iOS 6.0 and higher.
![Снимок экрана 2013-09-15 в 1.16.04.png](./download/file.php?id=46&sid=1fffbe28a9aff72a82eb5f274113347b)
- Снимок экрана 2013-09-15 в 1.16.04.png (145.42 KiB) Viewed 3715 times
Re: 2.5 version
Posted: Sun Sep 15, 2013 7:56 am
by Mr. Kibernetik
New command will be implemented:
GET DIM n XSIZE x YSIZE y ZSIZE z
gets sizes of "x", "y" and "z" dimensions of array [n] and saves them to numeric variables [x], [y] and [z]. You may specify only those dimensions which you need, for example:
GET DIM n XSIZE x