This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
/
logfile-1.htm
2226 lines (2166 loc) · 202 KB
/
logfile-1.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<title>Sciter 3.* and 4.* logfile</title>
<meta name="generator" content="blocknote.net v2.0"/>
</head>
<body>
<h3>Sciter 3.* and 4.* logfile:</h3>
<table border="1" cellpadding="3" cellspacing="1" width="100%">
<tr>
<td width="60" nowrap="" valign="top" align="center">Build#</td>
<td width="78" nowrap="" valign="top" align="center">Date</td>
<td align="center">Updates</td></tr>
<tr><td valign="top" bgcolor="#FFFADA">4.0.1.1</td><td nowrap="" valign="top" align="center">11-06-2017</td><td>new:
<ul><li><code>Graphics.strokeDash(array[,offset])</code> - custom dashes support;</li>
<li>[API] <code>SciterAttachHwndToElement(element,hwnd)</code>, support case when hwnd == NULL ( to detach );</li>
<li>[API] <code>sciter::value::is_color()</code> , <code>sciter::value::is_duration()</code> , <code>sciter::value::is_angle()</code>, etc.</li>
<li>[css] <code>cursor: drag-copy | drag-move</code> types;</li>
<li>[osx,skia] auto fallback to CPU rendering if no OpenGL on platform (like when OSX is being run on VMWare);</li>
<li>+ <code>Node.commonParent(other:Node) : Element</code> method;</li></ul><p>fixes:</p>
<ul>
<li>samples/ideas/virtual-list - "virtual tape" implementation fixes;</li><li>[win] fix of child windows replacement artefacts;</li><li>[win] tooltip window screen order fix, see: <a href="https://sciter.com/forums/topic/popup-is-hidden-behind-another-popup-z-index-doesnt-work/">https://sciter.com/forums/topic/popup-is-hidden-behind-another-popup-z-index-doesnt-work/</a> </li><li>context menu, fix of keyboard handling;</li><li><code>style.documentRules { content:"string" }</code> fix, see <a href="https://sciter.com/forums/topic/assigning-css-content/">https://sciter.com/forums/topic/assigning-css-content/</a> </li><li><code>behavior:textarea</code>, fix of new line handling;</li><li>[sdk samples] <code>behavior:tabs</code> fix;</li><li>zlib upgrade to 1.2.11 ( CVE-2016-9840, CVE-2016-9842 );</li><li>[win] fix of popup rendering on Direct2D backend on "Windows 10 build 16199 via RDP session";</li><li>[win,skia] fix of font handle leak;</li><li>[osx,xgl,skia] fix of memory leak on window creation/destruction;</li><li> [+plus] better notifications handling on secondary windows, see: <a href="https://sciter.com/forums/topic/plus-mode/">https://sciter.com/forums/topic/plus-mode/</a> </li><li>Fix of <code>border-collapse:collapse</code> in tables with cells that use paddings;</li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.1.0</td><td nowrap="" valign="top" align="center">22-05-2017</td><td>
<p>new:</p>
<ul><li> <code>System.path(#USER_HOME);</code> - reports user's home folder;</li>
<li>+ sample sdk/samples/video/test-video-effects.htm - video rendering with blurred sidebars;</li>
<li>+ sdk/samples/animated-effects/focus-animation.htm - focus animation demo;</li></ul><p>fixes:</p>
<ul>
<li><code>behavior:numeric|integer|decimal</code> fix of caret rendering;</li><li>[svg] fix of <svg>/<rect> rendering;</li><li>fix of <code>VK_RETURN</code> handling in <code><textarea readonly></code>; </li><li>fix of <code>tr { outline: ... }</code> rendering;</li><li><code>focusout</code> event generation when window looses focus;</li><li><code>behavior:hyperlink</code> focus event generation;</li><li>[script] <code>String.localeCompare()</code> is <html lang="..."> aware;</li><li>http/s requests in secondary windows are delegated for execution to primary (host) window;</li><li>[css] box-shadow - fix of variables interpretation;</li><li>[layout,variables] fix of variables handling in top/left/right/bottom properties;</li><li><code>behavior:textarea</code>, fix of VK_DOWN/VK_UP handling;</li><li>[editing] <code>CTRL+LEFT/RIGHT</code> fix;</li><li>[win] <code>behavior:file-thumbnail</code>, WindowsXP fix.</li><li>preventing animation at native attach/detach handling on behaviors;</li><li>[+vlist] fix of the issue with multiple lists looking on the same recordset;</li><li>[xgl,osx] skia backend rendering fix. </li>
<li>[xgl,osx] view "statechange" event generation fix for WINDOW_HIDDEN state. </li><li>[+plus] fix of repeatable update on dynamically updated DOM;</li><li>fix of AV in system D&D event handlers;</li><li>[win] fix of setting focus on disabled window;</li><li>[script] "BrokenHeart" issue related to +plus use cases;</li><li>[posix] System.scanFiles() fix;</li><li>[script] <code>System.exec()</code> regression fix;</li><li>+unit-test - code coverage implementation, see: sdk/samples/+unit-test/demos</li><li>[osx] core graphics backend, fix font metrics calculation;</li><li><code><select as="string"></code> fix, test case at sdk/samples/forms/select-option-types.htm;</li><li>[doc] better styling.</li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.9</td><td nowrap="" valign="top" align="center">27-04-2017</td><td>new:
<ul><li><code><select as="...type..."></code> property - explicitly defines option value conversion rules;</li></ul><p>fixes:</p>
<ul>
<li>[gtk] fix window closing that contain owned windows;</li><li><code><input|number></code>, fix of "jumping" caret position;</li>
<li>skia backend, dotted border drawing adjustment;</li><li>[windows,gdi+] fix of AV when some corrupted fonts are used;</li><li><select> regression fix of option value conversion; </li>
<li><code><button|checkbox checked=false></code> support;</li><li>[inspector] fix of error on select element.</li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.8</td><td nowrap="" valign="top" align="center">25-04-2017</td><td>new:
<ul><li>[script] <code>Process</code> - class that helps to run another program as a subprocess, receiving its <i>stdout</i> and <i>stderr</i> output and passing data to its <i>stdin</i> stream.</li>
<li>[script,DOM] events:<ul><li><code>event disabledStatusChange {...}</code></li><li><code>event visualStatusChange {...}</code></li>
</ul></li>
<li>[behavior:edit|textarea] <code>element.clearSelection();</code></li>
<li>[osx] mouse click + CTRL - context menu; </li>
<li><code>System.EOL</code> constant - platform specific EOL sequence;</li>
</ul>
<p>fixes:</p>
<ul>
<li><code><select></code> value is always a string or undefined, no automatic parsing is made. Could be a breaking change. Check <a href="https://sciter.com/forums/topic/select-value-type/">https://sciter.com/forums/topic/select-value-type/</a> for the reasoning;</li>
<li>[osx] <code>gfx.strokeDash(#dashed)</code> implementation;</li><li>[osx] <code>System.scanFiles()</code> fix of retval;</li><li><code>System.path(#PROGRAM_FILES)</code> fix;</li><li>Fix of overflow-x:auto scroll-manner( animation:false );</li><li>Fix of SCN_LOAD_DATA request for <code>url("")</code> produced in result of <code>background-image:none</code> handling;</li><li>[osx,gtk] API headers, fix INT64 definition;</li><li>[timeline animations] fix of start:Ts handling in repeatable tweens. + sdk/samples/animations/tutorial-parts/t5.htm testing that;</li><li>behavior:htmlarea/richtext, fix of cell range selection clipboard copyж</li><li>[osx] CoreGraphics backend,fix of font ascent/descent calculation ;</li><li>[css-om] fix of CSSOM updates by Style.documentRules(), test case: sdk/samples/cssom/update-css-rule.htm ;</li><li>better caret drawing (1px off);</li><li><code>behavior:dropdown-select</code>, better MOUSE_UP handling;</li><li><code>behavior:column-resizer</code>, supports flex columns resizing, see: sdk/samples/column-resizer/ samples;</li><li>fix of <a href="https://sciter.com/forums/topic/osx-4-0-0-7-mouseleave/">https://sciter.com/forums/topic/osx-4-0-0-7-mouseleave/</a> </li><li>[osx] fix of <code>debug break;</code> or msgbox inside window creation sequence;</li><li>behavior:textarea, behavior:edit, fix of caret removal on context menu;</li><li>[osx] fix of transparent document rendering on OpenGL surface;</li><li>[inspector] Fix of /sdk/samples/dom/attaching-inspector.htm case - attaching inspector and breaking on BP at load time;</li><li>[SDK,API] fix of enum BEHAVIOR_EVENTS enumeration codes;</li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.7</td><td nowrap="" valign="top" align="center">04-04-2017</td><td>new:
<ul><li>+ sdk/samples/material/!test.htm sample - sketch of Material Design theme.</li>
<li>[+plus] + sdk/samples/+plus/demos/Q-routing-with-data.htm demo - routing with bound elements.</li>
<li><code>Element.style.variable()</code> - get/set single CSS variable.</li>
<li>+ sdk/samples/forms/required.htm sample.</li>
<li>[css] + transition support for background-image and foreground-image properties. Demo is in sdk/samples/material </li>
<li>+ sdk/include/behaviors/behavior_native_textarea.cpp and sdk/samples/dialogs+windows/test-child-window.htm - child HWND demo.</li>
<li><code>packfolder.exe folderpath filepath -binary</code> - produces binary file - packed folder. </li>
</ul>
<p>fixes:</p>
<ul>
<li>[inspector] Fix of "Error: dimensions are less or equal to zero at @2@10.postSnapshot (sciter:debug-peer.tis(253))"</li><li>[css] box-shadow caching fix.</li><li><code><select|dropdown></code>, popup scroll to current selected item.</li><li><code>Element.clone()</code>, clones ID attribute too.</li><li>[d2d] css filters to work on layered windows.</li>
<li>[css] <code>filter:grayscale(50%)</code> - "partial grayscale" aka saturation support.</li><li>[win] elements with attached windows, fix of visibility change.
</li><li>[win] <code>behavior:file-thumbnail</code> fix.</li><li>[printing] fix of AV while loading printing templates into "normal" frames.</li><li>[css] custom properties + variables.</li><li>[+plus] <code><select></code> updates and routing, see: <a href="https://sciter.com/forums/topic/plus-framework-view-reload/">https://sciter.com/forums/topic/plus-framework-view-reload/</a> </li><li>[script, regex] fix of hangup on <code>"test".replace(/\u0000/g, "");</code></li><li>[osx] compiler settings to reduce binary sizes.</li><li>[css, layout] <code>flow:horizontal;</code> vertical-align fix.</li><li>[win] fix of WM_SETTINGCHANGE handling for some types of windows.</li><li>[css] Fix of hsl/hsv() color transforms: samples/css++/hsl-colors.htm</li><li>r5010 regression (forcing padding, margin and border on root html to be zero). root element is allowed to have non-zero borders and paddings. </li><li>fix of event.target in "contentchange" notification generation.</li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.6</td><td nowrap="" valign="top" align="center">21-03-2017</td><td>new:
<ul><li>[css] + <code>scroll-manner(wheel-step:length)</code></li>
<li>[css] <code>list-marker-style: dotted;</code> and <code>list-marker-style: dashed;</code> support for <code>list-style-type: tree-line;</code></li>
<li>+ /sdk/samples/ideas/VisualStudio-StartPage/ - old sample from HTMLayout SDK.</li>
<li>[css variables] use of variables in transform, see /sdk/samples/css3-variables/animate-variables.htm</li></ul>
<p>fixes:</p>
<ul>
<li><code>behavior:richtext</code> various fixes.</li><li>[css] fix of use of <code>var()</code> in gradients.</li><li>[script] <code>string.split("")</code> splits the string into array of UTF-16 runs (strings).</li><li>[win] /bin/32 binaries are more XP compatible. </li><li>[win] <code><button role="window-maximize"></code>, fix of second click to restore previous window size;</li><li>forcing padding, margin and border on root element (html) to be zero;</li><li><code>behavior:frameset</code>, fix of values returning by <code>framesetState()</code> method;</li><li>[inspector] fix of doubled DOM elements, see: <a href="https://sciter.com/forums/topic/inspector-bug-in-4-0-0-5-with-duplicated-html/">https://sciter.com/forums/topic/inspector-bug-in-4-0-0-5-with-duplicated-html/</a> ;</li><li>[win] system D&D, support of JSON data exchange;</li><li><code>margin-bottom</code> calculation fix, <a href="https://sciter.com/forums/topic/margins-a-bit-broken-with-4-0-0-3/">https://sciter.com/forums/topic/margins-a-bit-broken-with-4-0-0-3/</a> </li><li>[osx] fix of <code>CMD+x</code>, etc. handling.</li><li>[win] fix of the issue "rendering lost on hot video driver change";</li><li>fix of element hit test when capture is used. This fixes issue <a href="https://sciter.com/forums/topic/list-marker-style-has-no-effect-with-list-style-type-tree-line/#post-50358">https://sciter.com/forums/topic/list-marker-style-has-no-effect-with-list-style-type-tree-line/#post-50358</a> </li><li><code><input|numeric></code> <code>maxlength</code> attribute is defined only for <code><input|integer></code>;</li>
<li>fix of character filter on <code><input|numeric></code>; </li><li>[win] fix of window activation effect when tooltip is shown;</li><li>h/vslider - better MOUSE_WHEEL handler when slider is on scrollable.</li>
<li>behavior:slider -> MOUSE_DOWN on areas outside of slider knob now moves the knob to that position (used to cause increment/decrement);</li><li>[API] removing dependency from d2d1.h and dwrite.h headers;</li><li>fix of "crash when rendering a document with Frames";</li><li>better scroll handling, see: <a href="https://sciter.com/forums/topic/scroll-works-with-freeze/">https://sciter.com/forums/topic/scroll-works-with-freeze/</a> ;</li></ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10. On MacOS you may need to run SDK executables directly from console as they are not signed too.</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.5</td><td nowrap="" valign="top" align="center">26-02-2017</td><td>
<p>new:</p>
<ul>
<li>New demo: TETRIS clone in Sciter: /sdk/samples/games/tetris/scitris.htm</li><li>[request API] + <code>RequestSetReceivedDataType</code> and <code>RequestSetReceivedDataEncoding</code> API functions.</li>
<li>[+vlist] vgrid.htm sample update - sort by click on header. </li>
<li>Plain C compatibility update, see: <a href="https://github.com/c-smile/sciter-sdk/pull/55#issuecomment-281127324">https://github.com/c-smile/sciter-sdk/pull/55#issuecomment-281127324</a> </li>
<li> + sdk/samples/css3-variables/script-interaction-effects.htm sample.</li>
</ul>
<p>fixes:</p><ul>
<li><code><select|dropdown></code> fix of auto size calculation.</li><li>[ddm2] fix of initial MOUSE_DOWN handling.</li><li>[xgl, windows] fix of OpenGL initialization failure handling.</li><li>[d2d] optimisation of <code>border:dotted</code> and <code>border:dashed</code> drawing.</li><li>[script] fix of rare error-in-error case. Problem manifests itself while <i>re</i>loading sdk/samples/behaviors/native-drawing.htm in sciter.exe</li><li>[script,+plus] notifying observers of namespace when variables added to it at load time (+plus use cases).</li><li>[osx] fix <code>OPT-S</code>, <code>OPT-F</code>, etc. and the like extended character codes handling</li><li>[osx/skia] font's ascent/descent adjustment once again.</li><li>[osx] view.topmost level adjustment</li><li>[osx] fix of AV when modal windows are destroyed in incorrect order (parent first and then modal).</li><li>[win,gdi+] fix of layered windows updates.</li><li>[svg] fix of potential AV while rendering.</li><li>demo/ulayred update - fix of window-caption</li><li>Forcing call of <code>element.detached()</code> on window close. </li><li>Making one more code analyzer tool happy.</li><li>Fix of <code>element.$prepend();</code></li><li>[GTK] attempt to fix an issue with window destruction while animating.</li><li>[API] headers <code>SCRIPTING_METHOD_PARAMS -> <b>const</b> SCITER_VALUE* argv</code></li><li><code><select|dropdown></code>, forcing popup to be closed on losing focus.</li><li>margin collapsing again, see: <a href="https://sciter.com/forums/topic/4-0-0-44-0-0-3-bug/">https://sciter.com/forums/topic/4-0-0-44-0-0-3-bug/</a> </li><li><code><input|decimal novalue></code> rendering fix. See: <a href="https://sciter.com/forums/topic/how-to-set-novale-to-input/">https://sciter.com/forums/topic/how-to-set-novale-to-input/</a> </li><li>[css] fix of <code>text-overflow: path-ellipsis;</code> rendering when text does not contain path separators: <a href="https://sciter.com/forums/topic/text-overflow-path-ellipsis-and-not-a-full-path-string/">https://sciter.com/forums/topic/text-overflow-path-ellipsis-and-not-a-full-path-string/</a> </li>
</ul>
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10</p></td></tr><tr><td valign="top" bgcolor="#FFFADA">4.0.0.4</td><td nowrap="" valign="top" align="center">08-02-2017</td><td>new:
<ul>
<li><code>Selection.select(element)</code> - to select whole element.</li><li>[api] <code>EDIT_CHANGED_REASON</code> enumeration adjustments.</li><li> event name comparison is case insensitive now so <code>event MouseEnter {}</code> and <code>event mouseenter {}</code> are equivalent.</li>
<li>+ <code>event TooltipRequest (evt) { evt.data = "Tooltip text"; return true; }</code> - application can provide custom tooltip text.</li>
<li>packfolder / C++ produces <code>const unsigned char data[]</code> literal rather than <code>unsigned char data[].</code></li>
<li>sciter.exe - window position/size is persist-able.</li>
<li>+ sdk/demos.win/AxSciter - barebone Sciter ActiveX Control demo.</li></ul><p>fixes:</p>
<ul>
<li>fix of mouse wheel handling in behavior:slider </li><li>better update handling when ::after and ::before are present.</li><li>[+plus] sdk/samples/+plus/demos/4-class-binding.htm fix( script runtime) and sample update.</li><li>[+vlist] added gc() call after 1 second of last scrolling. To remove traces of cached DOM element and free native resources like images if they used in records.</li><li>fix of overflow ellipsis tooltip generation, see: http://sciter.com/forums/topic/text-overflow-ellipsis-reveals-hidden-spans/</li><li>margin collapsing again.</li><li>SDK header fixes, see: http://sciter.com/forums/topic/wildcard-match-bug-in-sdk</li><li>sdk/samples/ideas/carousel/carousel.htm sample fix.</li><li><code>Elements.state.get()</code> fix.</li><li>[css, animation] fix of first frame rendering.</li><li>[win] <progress> on platforms that do not support themes in full.</li><li><code><select|dropdown></code> fix of redundant "change" event generation when click on already selected option.</li><li>Preventing posting multiple EDIT_VALUE_CHANGED, SELECT_VALUE_CHANGED, etc. events for the same element. </li><li>Fix of <code>event exec:.... {}</code> handling </li><li>fix of AV in erroneous <code>event mouseleave $(child) {}</code> case.</li><li>[css,rendering] fix of border-radius rendering. </li><li>[css] fix of :not(:empty) selector interpretation, see: http://sciter.com/forums/topic/notempty-selector-for-element-not-working/ </li><li>Fix of SciterSwapElements API.</li><li>[inspector] fix of styling, see: http://sciter.com/forums/topic/problems-in-inspector-exe/</li><li>[win, printing] fix of AV while selecting printer.</li><li>better behavior:column-resizer;</li><li>ideas/virtual-grid/vgrid.tis, fix of tooltips handling.</li><li>[css, layout] fix of % unit calculations in calc() </li><li>One more RegExp fix.</li><li>[DOM,events] fix of "focusin", "focusout" event generation.</li>
</ul>
<p>Builds: win32/win64, osx32/osx64, linux/gtk64
</p><p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10</p>
<p><b>NOTE (Windows XP)</b>: 32/sciter.dll and 64/sciter.dll are compiled using VS2015 / v140_xp toolset. While SDK samples work on XP the DLL may fail to load in some host application. Sciter sources contain XP release targets that use VS2010 / v100 toolset that are known to work on XP, but you need access to sources to build them.</p>
</td></tr>
<tr><td valign="top" bgcolor="#FFFADA">4.0.0.3</td><td nowrap="" valign="top" align="center">22-01-2017</td><td>
<p>new:</p>
<ul>
<li>[css] <code>border-collapse: collapse</code> support in tables. That's probably last CSS2.1 property that was not implemented.</li><li>Enabling <code>SciterSetOption(SCITER_SET_GFX_LAYER</code>) on all platforms.</li>
<li>[script, regexp] <code>\w</code> matches alpha and digit characters as they defined by UNICODE ( JS only uses ASCII range ).<br/>+ <code>\a</code> matches alpha characters as they defined by UNICODE <code>\A</code> matches any non-alpha UNICODE character.</li>
<li>New <code>Event.VK_SHORTCUT</code> key code - it is an alias on <code>COMMAND</code> key on Mac or <code>CONTROL</code> on other platforms.</li>
<li><code>option.execCommand("set-current")</code> - allows to set <code><option></code> in <code><select></code> using DOM element (that option) reference.</li>
<li>[richtext] <code>richtext.value</code> is an alias of <code>richtext.html</code></li></ul><p>fixes:</p><ul>
<li>better double click handling in behavior:htmlarea | richtext | plaintext.</li><li>bin/32 and bin/64 binaries are compiled by VC2010 as vc140_xp toolset (VS2015) produces code that is unstable on Windows XP. Investigating.</li><li>[script] fix of <code>BrokenHeart</code> issue in <code>Element.sort()</code>.<br/></li><li>[css,layout] margin collapsing fix.</li><li>[printing,win] fix of pager demo.<br/></li><li>[doc] <code>element.style.variables()</code> documented now.</li><li>[win] fix of doubled call of <code>self.closing()</code>.</li><li>[osx] system font size adjustment.</li><li>[osx,linux] System.scanFiles() caption in callback.</li><li>[skia, all platforms] fix of popups rendering, see: http://sciter.com/forums/topic/ideascalloutdynamic-callout-not-transparent-on-macos/</li><li>[win, gdi] fix of popups (menus, dd-list, etc) rendering.<br/></li><li>[skia] expandable images, fix of drawing artifacts. </li><li>[behavior:richtext] multiple fixes.</li><li>[d2d] Fix of errors in <code>Path.xxx()</code> operations when path was drawn already.</li><li><code><img></code> and <code><picture></code> - freeing image on @src change and <code>element.remove()</code>;</li><li><code>behavior:radio</code>, fix of <code>element.value</code> calculation when DOM attribute value is numeric. </li><li>[masked-edit] clipboard-copy fix. </li><li>Fix of GC issue in <code>Bytes.load()</code>. See: http://sciter.com/forums/topic/bytes-tostring-bug-or-not-bug/</li><li>Reverted experimental @set application (introduced in 4.0.0.2). </li><li>[win/d2d/highdpi] "novalue" rendering fix when line-height is present.</li><li>Fix of getting value of <code><input|hidden></code></li><li>[skia] default image scaling quality is increased from "nearest neighbour" to "bilinear".<br/></li><li>[skia] support of CSS image-rendering modes.</li><li>[script] RegEx, removing some limitations on RE size.</li><li>[win,script] made code friendly to /LARGEADDRESSAWARE (64 bit addresses in 32bit module)</li></ul>
<p>Builds: win32/win64, osx32/osx64, linux/gtk64
</p><p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr><tr>
<td valign="top" bgcolor="#FFFADA">4.0.0.2</td>
<td nowrap="" valign="top" align="center">08-01-2017</td>
<td>
<p>new:</p>
<ul>
<li>[script] <code>for(var codepoint in string)</code> -> iteration over unicode code points in strings (that is UTF16 thing in JS and TIS).</li>
<li>[script] <code>__FOLDER__</code> meta variable. Same as <code>__FILE__</code> but just a folder.</li>
<li>View supports <code>view << event move {...}</code> notation.</li>
<li>CSS: rules defined by style-set's are applied first and other CSS definitions on top of them. CSS specificity of rules in style sets are the same as of rules of master css;</li>
<li>[script] support of "dashed" event names like <code>event item-activate {...}</code></li>
<li>+ sdk/widgets/folder-tree/ sample widget;</li>
<li>+ samples/markdows/hierarchical/ - yet another markdown-to-html converter;</li>
<li>+ sample sdk/samples/ideas/ui-themes/using-style-sets.htm</li>
<li><code><input type=integer max=12345></code> limits input length by 5 (determined from min/max attributes);</li>
<li><code>behavior:richtext</code> method <code>rt.contentToSource()</code> returns <code>[text,anchorPos,caretPos]</code>;</li>
<li><code>behavior:plaintext</code> method <code>pt.setContent(text,anchorPos,caretPos);</code></li>
<li>[+plus] </li>
<ul>
<li>@observing function gets called with <em>this</em> set to the rightmost object on the path. </li>
<li>@observing is documented (somehow).</li></ul>
<li>[script] event handlers defined on classes are called with <em>this</em> set to the instance of the class:</li>
<pre>class One : Element {
event click { this /*is an instance of the class*/ }
}
</pre></ul>
<p>fixes:</p>
<ul>
<li>[linux] libcurl.so is loaded dynamically / on demand now. May fix libcurl issues on Linuxes that use curl v.4;</li>
<li>fix of new Image(w,h,element) rendering. See: <a href="http://sciter.com/forums/topic/new-image-bug">http://sciter.com/forums/topic/new-image-bug/</a></li>
<li>[inspector] fix of data marshalling between debugee and inspector when data contains custom native objects;</li>
<li>[tiscript, Windows] fix of <code>include library "name"</code>;</li>
<li>[d2d,win] fix of potential AV on image rendering, this fixes some errors in rendering of SVG images on some machines; </li>
<li>[win] CallMsgFilter() call on internal message pumps;</li>
<li>[win] fix of window-resizable + window-frame="extended" combination.</li>
<li>Fix of <code>Event.wheelDelta</code> property reporting, see: <a href="http://sciter.com/forums/topic/evt-wheeldelta-undefined">http://sciter.com/forums/topic/evt-wheeldelta-undefined/</a></li>
<li>[svg] fix of default sizing of <code><text></code> element.</li>
<li>[script, float] <code>NaN</code> handling.</li>
<li>Better mouse wheel overscroll animation.</li>
<li>Fix of HTML / overlapping spans parsing;</li>
<li>[css] fix of dynamic change of visibility. See: <a href="http://sciter.com/forums/topic/a-bug-after-3-3-3-4">http://sciter.com/forums/topic/a-bug-after-3-3-3-4/</a></li>
<li><code>behavior:progress</code>, preventing "busy" animation when <code>opacity:0</code></li>
<li>[W7,themes] compatibility fix.</li>
<li>[layout] <code>flow:grid | row</code>, fix of under-constrained cases handling.</li>
<li>[skia] fix of infinite loop in some cases (<code>Image.update()</code>) .</li>
<li>[script] std::regex is replaced by more JS compatible Regex implementation. In particular /m (multiline) mode is supported; </li>
<li>vertical-align:baseline fix: <a href="http://sciter.com/forums/topic/horizontal-flow-bug">http://sciter.com/forums/topic/horizontal-flow-bug/</a></li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">4.0.0.1</td>
<td nowrap="" valign="top" align="center">25-12-2016</td>
<td>
<p>new:</p>
<ul>
<li><code>:owns-focus</code> flag (CSS) and <code>Element.state.ownsfocus</code> - focus is on element or somewhere inside.</li>
<li>[win, @media] 'ux-themes' media variable, it is <code>true</code> when uxthemes.dll is loaded and <code>false</code> when "classic" theme is used.</li>
<li><code>Event.extendedKey</code> - extended key flag - allows to distinguish right/left shifts, alts and controls.</li>
<li>ux-master.css, used colors exposed as CSS variables.</li></ul>
<p>fixes:</p>
<ul>
<li>[flow:horizontal and flow:horizontal-wrap] auto shrink-to-fit for elements that has no width defined.</li>
<li>[ddm2] fix of <code>params.notOn = selector</code> handling.</li>
<li>[gtk] fix of getting default font.</li>
<li>[win,skia] fix of uxtheme images rendering.</li>
<li>[win] Excluding unused DLL imports: <a href="http://sciter.com/forums/topic/theme-images-for-windows-xp-classic-scheme">http://sciter.com/forums/topic/theme-images-for-windows-xp-classic-scheme/</a></li>
<li>[flexes] Fix of calculation in overconstrained cases like: <a href="http://sciter.com/forums/topic/flex-layout-bug">http://sciter.com/forums/topic/flex-layout-bug/</a></li>
<li>[inspector] fix of dropping log messages on initial load.</li>
<li><code>element.postEvent("name.namespace")</code> fix.</li>
<li>[+plus] regression, fix of <code>array.length</code> binding.</li>
<li>[skia] fix of font size mismatches between D2D and Skia backends.</li>
<li><code><select><option value="">Foo</option></select></code> reports <code>value == ""</code> (empty string) rather than "Foo" as it used to be.</li>
<li>[regression] view.msgbox fix, see: <a href="http://sciter.com/forums/topic/a-bug-of-view-msgbox-from-3-3-3-3">http://sciter.com/forums/topic/a-bug-of-view-msgbox-from-3-3-3-3/</a></li>
<li>[skia] fix of font mapping, see: <a href="http://sciter.com/forums/topic/the-chinese-chars-render-bug-of-skia-backend-when-font-not-support">http://sciter.com/forums/topic/the-chinese-chars-render-bug-of-skia-backend-when-font-not-support/</a></li>
<li><code>SciterGraphicsAPI.imageClear()</code> implementation.</li>
<li>[dom] fix of positioned element's hit testing, case: <a href="http://sciter.com/forums/topic/can-not-click-button-by-this-way">http://sciter.com/forums/topic/can-not-click-button-by-this-way/</a></li>
<li>[script] fix of "BrokenHeart" issue when <code>this var</code> are used in behaviors.</li>
<li><code>flow:grid()</code> adjustments related to <code>vertical-align:baseline</code></li>
<li>[inspector] fix of second AV in <a href="http://sciter.com/forums/topic/selection-crash">http://sciter.com/forums/topic/selection-crash/</a></li>
<li>Fix of AV in Selection.select : <a href="http://sciter.com/forums/topic/selection-crash">http://sciter.com/forums/topic/selection-crash/</a></li>
<li>[master-css] fixes for high-dpi monitors and W10.</li>
<li>Fix of sdk/samples/lists/group-list.htm - scrollable list with group headers.</li>
<li>Fix of tooltip rendering.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">4.0.0.0</td>
<td nowrap="" valign="top" align="center">18-12-2016</td>
<td>
<p>new:</p>
<ul>
<li>SDK contains Sciter binaries with Skia backend from now and on.</li>
<ul>
<li><strong>On Windows</strong> sciter is compiled as different DLLs having the same name <em>sciter.dll </em> locating in following folders:</li>
<ul>
<li>bin/32/sciter.dll \</li>
<li>bin/64/sciter.dll – Direct2D and GDI+ backends as before</li>
<li>bin/skia32/sciter.dll \</li>
<li>bin/skia64/sciter.dll – Direct2D and Skia/OpenGL backends.</li></ul>
<li><strong>On MacOS</strong> sciter includes as CoreGraphics as Skia/OpenGL backends (default) switchable by SciterSetOption() function.</li></ul>
<li>+ sample: sdk/samples/ideas/effects/blur-behind/bb-demo.htm - ambient color effect.</li>
<li><code>Element.state.awaitsDraw</code> flag. The flag is "on" after invalidation request was issued on the element and until first draw after that.</li></ul>
<p>fixes:</p>
<ul>
<li>[script] await and yield parsing fix;</li>
<li>[regression] Fix of AV on SW_ALPHA window.</li>
<li>[ddm2] cancelling D&D operation when drop on source element.</li>
<li>[dom] fix of closed popup rendering, see: <a href="http://sciter.com/forums/topic/the-context-menu-can-not-close-after-click-which-in">http://sciter.com/forums/topic/the-context-menu-can-not-close-after-click-which-in/</a></li>
<li><code>SciterCreateWindow</code> based windows, <code>WM_CLOSE</code> message delegation fix.</li>
<li><code>input[type=text]:empty</code> flag initialization fix.</li>
<li>[script] <code>Color.rgba(0.1,0.1,0.1)</code> support.</li>
<li>Fix of insertion of whitespace sequences in plain texts (<code>&nbsp;</code> auto insertion) ;</li>
<li>[event handling] regression after event handling changes, fix of <code>element.on("name", "parent selector")</code> case.</li>
<li>[css] <code>filter:blur()</code> border effect fix.</li>
<li> Fixes in documentation suggested.</li>
<li>[inspector] empty log on document reload.</li></ul>Builds: win32/win64, osx32/osx64 ( but not linux/gtk64 for a while )
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.3.4</td>
<td nowrap="" valign="top" align="center">12-12-2016</td>
<td>
<p>fixes:</p>
<ul>
<li>[script] fix, regression of string concatenation optimization, see: <a href="http://sciter.com/forums/topic/bug-in-3-3-3-3-string-other-optimization">http://sciter.com/forums/topic/bug-in-3-3-3-3-string-other-optimization/</a></li>
<li><code>Element.find(x,y)</code> fix when capture() is used, see : <a href="http://sciter.com/forums/topic/element-find-doesnt-work-correctly-when-using-the-css-property-flow-horizontal">http://sciter.com/forums/topic/element-find-doesnt-work-correctly-when-using-the-css-property-flow-horizontal/</a></li>
<li><code>System.exec()</code> fix for arguments containing spaces.</li>
<li>[+plus] fix in repeatable's notify observers logic.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.3.3</td>
<td nowrap="" valign="top" align="center">11-12-2016</td>
<td>
<p>new:</p>
<ul>
<li><strong>event notation finalized</strong>: <code>event name.namespace $(selector) (params) {code}</code> where all parts except of name and code are optional.</li>
<li>support of event subscription notations:</li>
<ul>
<li><code>element << event click { ... }</code> and</li>
<li><code>element + event click { ... }</code></li></ul>
<li>[WebSocket] <code>WebSocket.connect(url,timeout)</code> is asynchronous now.</li>
<li>+ <code>Element.mapViewToLocal(x,y)</code> and <code>Element.mapLocalToView(x,y)</code> - maps point between view and local coordinates with respect of CSS transformations.</li>
<li>/samples/graphics/pie-chart.htm, reformulated as an aspect</li>
<li>+ <code>view.performDrag()</code> methods - initiates system drag-n-drop.</li>
<li>[css] support of now standard '<code>linear-gradient(to ...)</code>' notation. See: <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient">https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient</a></li>
<li>[css] support of now standard '<code>radial-gradient(... at x,y)</code>' notation. See: <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/radial-gradient">https://developer.mozilla.org/en-US/docs/Web/CSS/radial-gradient</a></li>
<li>[inspector] spans (display:inline elements) highlighting.</li>
<li><code>behavior:windowed</code> - experimental, elements in normal flow but rendered in windows.</li>
<li>[frameset] <code>fs.framesetState()</code> - persists splitters states.</li>
<li>[help browser] - persisting state.</li>
<li>string += "other"; optimization, see: <a href="http://sciter.com/optimising-and-operators-for-strings">http://sciter.com/optimising-and-operators-for-strings/</a></li></ul>
<p>fixes:</p>
<ul>
<li>[script] fix of include "path" in frames, see : <a href="http://sciter.com/forums/topic/frame-behavior-load">http://sciter.com/forums/topic/frame-behavior-load/</a></li>
<li>libpng upgraded to version 1.6.26</li>
<li>libjpeg updated to release 9b of 17-Jan-2016</li>
<li>[css] fix of <code>rgba(247, 66, 50, 1)</code> parsing. </li>
<li>[+plus] fix of index update in repeatable items that use index;</li>
<li>[+plus] sdk/samples/+plus/demos/5-repeatable-filtering.htm update with custom filter functions.</li>
<li>[CSS] <code>transition:none;</code> fix.</li>
<li>fix of tooltip shoutout on scroll, see: <a href="http://sciter.com/forums/topic/tooltips-and-ellipsis">http://sciter.com/forums/topic/tooltips-and-ellipsis/</a></li>
<li>sdk/samples/ideas/effects/bubbles/bubbles-demo.htm refactored to use cached bubbles.</li>
<li>[events] fix of false syntax error generation when <em>event</em> is used as a variable name: <a href="http://sciter.com/forums/topic/for-loop">http://sciter.com/forums/topic/for-loop/</a></li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.3.2</td>
<td nowrap="" valign="top" align="center">26-11-2016</td>
<td>
<p>new:</p>
<ul>
<li><strong>event</strong>-function handlers: <code>event "event-def" (...) { ... }</code> See: sdk/doc/content/sciter/CustomComponents.htm</li>
<li>[+plus] features:</li>
<ul>
<li>plus-routers.tis - <strong>Routers/Views/Conterollers</strong> with Plus. See: sdk/samples/+plus/demos/P-routing.htm</li>
<li>+ sample: 2-basic-repeatable-details.htm - list/details sample.</li>
<li>UI updates: on attempt to update removed element the Plus does "throw undefined;" to inform runtime to unsubscribe that function from observers. This handles cases when bound DOM element are added/removed.</li></ul>
<li>+ sdk/widgets/tabs2, uses dedicated <panels> container.</li>
<li>+ sample <strong>"hamburger" menu</strong> button animation: sdk/samples/animated-effects/hamburger-test.htm</li>
<li>[css, syntax] support of <code>rgb(50%,50%,50%)</code>, <code>rgb(0.5,0.5,0.5)</code>, <code>rgba(50%,50%,50%,50%)</code>, <code>rgba(0.5,0.5,0.5,0.5)</code> and <code>rgba(red,0.5)</code> color forms.</li>
<li><code>Graphics.antialiasing(onOff)</code> - enables/disables anti-aliasing.</li>
<li><code>Element.onVisibilityChanged(onOff)</code> - called on visibility change of the element. + onVisibilityChanged() can be defined in behavior classes.</li>
<li>[dom] Support of dynamic <code><style></code> blocks insertion/deletion. On <style> removal all its rules gets deleted too.</li></ul>
<p>fixes:</p>
<ul>
<li>[DOM] <code>paintBackhround()</code> and other <code>paint****</code> methods can be defined in behavior classes now.</li>
<li>[css] fix of <code>aspect()</code> with parameters parsing when parameters contain CSS constants.</li>
<li>[css] <code>foreground-color</code> transition fix.</li>
<li>[css] <code>outline:solid ...;</code> follows border radius now.</li>
<li>generation of <code>FOCUS_IN</code> and <code>FOCUS_OUT</code> events on event_handler attached to the window when window gets or loses focus.</li>
<li>[css,doc] traces of behavior: ~ ...; constructs removed.</li>
<li>[script] <code>Function.name</code> property fix.</li>
<li>[richtext] fix of text node deletion: <a href="http://sciter.com/forums/topic/backspace-strange-in-htmlarea">http://sciter.com/forums/topic/backspace-strange-in-htmlarea/</a></li>
<li>[api] fix of <code>FOCUS_IN</code>, <code>FOCUS_OUT</code>, <code>FOCUS_LOST</code> and <code>FOCUS_GOT</code> constant values in SDK headers. Note: coul be a breaking change in some corner cases.</li>
<li>[flow:grid()] support of single column grids, like <code>flow:grid(2,1)</code>; </li>
<li>[select|tree] fix of issue: <a href="http://sciter.com/forums/topic/treeview-element-appendinsert-will-lose-some-states-in-3-3-3-x">http://sciter.com/forums/topic/treeview-element-appendinsert-will-lose-some-states-in-3-3-3-x/</a></li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.3.1</td>
<td nowrap="" valign="top" align="center">20-11-2016</td>
<td>
<p>new:</p>
<ul>
<li>+ <strong>bin/scapp.exe</strong> - standalone sciter executable (sciter lib linked statically). Windows and MacOS. Essentially it is similiar to Electorn.js ( Node.js + Chromium browser = <span style="color: rgb(51, 51, 51); font-family: -apple-system, BlinkMacSystemFont, " Segoe="" UI",="" Helvetica,="" Arial,="" sans-serif,="" "Apple="" color="" Emoji",="" "Segoe="" UI="" Symbol";="" font-size:="" 14px;="" font-style:="" normal;="" font-variant-ligatures:="" font-variant-caps:="" font-weight:="" letter-spacing:="" orphans:="" 2;="" text-align:="" start;="" text-indent:="" 0px;="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" background-color:="" rgb="" name="255, 255, 255" ;="" display:="" inline="" type="important;" float:="" none;"="">142 MB</span> ) but is a monolitic executable without dependencies of size 4 MB.</li>
<li><code>Element.move(,,, referencePoint)</code> parameter;</li>
<li>Support of <code>@import url(content.zip#test.css)</code> - loading styles from zips;</li>
<li>+ sidebar sample: sdk/samples/dialogs+windows/test-sidebar.htm;</li>
<li><code>view.windowBlurbehind = #auto | #ultra-dark | #dark | #light | #ultra-light | undefined</code>. On Windows and MacOS;</li>
<li>+ sample sdk/samples/dialogs+windows/test-element-move-between-windows.htm for <a href="http://sciter.com/forums/topic/is-it-ok-to-move-dom-elements-from-one-rootwindow-to-another">http://sciter.com/forums/topic/is-it-ok-to-move-dom-elements-from-one-rootwindow-to-another/</a></li>
<li>+ <code>Element.view</code> property. See: http://sciter.com/forums/topic/is-it-ok-to-move-dom-elements-from-one-rootwindow-to-another/</li></ul>
<p>fixes:</p>
<ul>
<li>length units conversion overflow fix: <a href="http://sciter.com/forums/topic/strange-behavior-of-absolute-positioning-using-dip">http://sciter.com/forums/topic/strange-behavior-of-absolute-positioning-using-dip/</a></li>
<li>[+plus] script error while update fix.</li>
<li>[+plus] fix of the case when multiple repeatables looking on the same model. See: sdk/samples/+plus/demos/5-repeatable-filtering-2.htm</li>
<li>Fix of <code>:node</code> state flag handling, see: <a href="http://sciter.com/forums/topic/cant-remove-node-flag">http://sciter.com/forums/topic/cant-remove-node-flag/</a> Note: sdk/samples/ideas/virtual-tree/virtual-tree.tis sample also changed to accommodate changed behavior.</li>
<li>Fix of flickering while processing posted things. Especially in [+plus] use cases.</li>
<li><code>flow:grid()</code>, fix of crash in <a href="http://sciter.com/forums/topic/flow-grid">http://sciter.com/forums/topic/flow-grid/</a> and similar cases.</li>
<li>Regression: fix of tooltip rendering and text rendering in some cases;</li>
<li>[+plus] fix of update of bound filtered lists;</li>
<li>[tiscript] support of length + integer operation so <code>10pt + 4 == 14pt</code>;</li>
<li>[sdk] sdk/include/value.hpp CPP11 issue fix.</li>
<li>[doc] view.selectFile() and view.selectFolder() documented;</li>
<li>[ddm2] fix of draggable rendering;</li>
<li>[osx] memleak in osx_screen_name_id();</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.3.0</td>
<td nowrap="" valign="top" align="center">13-11-2016</td>
<td>
<p>new:</p>
<ul>
<li><strong>[css variables]</strong> basic implementation. length and color units for a while. See: sdk/samples/css3-variables and <a href="http://sciter.com/css-variables-support">http://sciter.com/css-variables-support/</a></li>
<li>[DOM,script] <code>Element.animate()</code> if called without duration is considered as infinite animation and gets continued after window appears after being WINDOW_HIDDEN.</li>
<li>[script] Object.referenceOf() supports indexed access now.</li>
<li>[+plus] duplex binding with array elements, see: sdk/samples/+plus/demos/O-array-index-binding.htm</li>
<li>[windows] + <code><html window-frame="extended"></code>, see : sdk/samples/dialogs+windows/test-window.htm and sdk/samples/dialogs+windows/samples/sample-window-extended-frame.htm</li>
<li>[api, graphics] <code>sciter::image::paint()</code> preserves original image allowing incremental updates.</li>
<li>Use of <a href="https://en.wikipedia.org/wiki/Cassowary_(software)" onmousedown="return rwt(this,'','','','1','AFQjCNHW46CQx-mdYIfHDw3I21qbRWz6DA','YV-E5AErOdbA4C-SFlx1Lg','0ahUKEwjNqqnoxqfQAhXCqlQKHesMDfMQFggdMAA','','',event)" style="color: rgb(102, 0, 153); cursor: pointer; text-decoration: none;">Cassowary</a> solver in <code>flow:grid()</code> layout manager.</li>
<li>[ddm2]</li>
<ul>
<li>+ <code>def.notOn = selector;</code> - defines elements from where D&D cannot originate;</li>
<li><code>def.autoScroll = true;</code> - implementation.</li>
<li>fix of drop handling at incorrect position.</li></ul>
<li>[tiscript.exe]</li>
<ul>
<li>support of "-o null" to suppress output creation, can be used in builds to check fo syntax validity. </li>
<li>exe returns -1 on any error and 0 on success.</li></ul>
<li>[script] Support of deep namespace merging, so this <br/><code>namespace N { namespace NN { ... } }<br/>namespace N { namespace NN { ... continuation ... } }</code><br/>will not produce errors.</li>
<li><code>behavior:shell-icon;</code> does the same as <code>behavior:file-icon;</code> but without accessing file system.</li></ul>
<p>fixes:</p>
<ul>
<li>[css] fix of box-shadow implementation.</li>
<li>[inspector] fix of internal script error in some cases.</li>
<li>[css] fix of <code>visibility:hidden</code> handling on <code>display:inline</code> elements. See: <a href="http://sciter.com/forums/topic/visibility-hidden-for-inline-elements">http://sciter.com/forums/topic/visibility-hidden-for-inline-elements/</a></li>
<li>[script] fix <code>for( var k in regexp-result )</code> enumeration.</li>
<li>[script] fix of <code>RegExp.exec()</code> to comply JavaScript specification.</li>
<li><code><video></code>, fix of multithreading issue.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.13</td>
<td nowrap="" valign="top" align="center">30-10-2016</td>
<td>
<p>new:</p>
<ul>
<li>[api] methods to pass Graphics, Image, Graphics.Path and Graphics.Text objects between script and native code:</li>
<ul>
<li><code>sciter::graphics::from(sciter::value v); sciter::value sciter::graphics::to_value();</code></li>
<li><code>sciter::path::from(sciter::value v); sciter::value sciter::path::to_value();</code></li>
<li><code>sciter::image::from(sciter::value v); sciter::value sciter::image::to_value();</code></li>
<li><code>sciter::text::from(sciter::value v);</code> <code>sciter::value sciter::text::to_value();</code></li>
<li>Yet <code>sciter::image::paint()</code> to render on image surface from native code.</li>
<li>See: sdk/samples/behaviors/native-drawing.htm<br/>Objective: to provide means for faster generation of graphics on native side.</li></ul>
<li>Generalization (essentially renaming) of window related attributes, properties and methods:</li>
<ul>
<li>Attributes (of root <html> element):</li>
<ul>
<li><code><html window-frame="default" | "solid" | "solid-with-shadow" | "transparent" ></code></li>
<li><code><html window-blurbehind [= "true" | "false"] ></code></li>
<li><code><html window-resizable [= "true" | "false"] ></code></li></ul></ul>
<li>Properties:</li>
<ul>
<li><code>view.windowState</code></li>
<li><code>view.windowCaption</code></li>
<li><code>view.windowAspectRatio</code></li>
<li><code>view.windowTopmost</code></li>
<li><code>view.windowResizable</code></li>
<li><code>view.windowMaximizable</code></li>
<li><code>view.windowMinimizable</code></li>
<li><code>view.windowBlurbehind</code></li>
<li><code>view.windowMinSize</code></li>
<li><code>view.windowMaxSize</code></li></ul>
<li><code>view.windowIcon = null | "url" | Image;</code> - set window icon programmatically. See: sdk/samples.dialogs+windows/window-icon.htm</li>
<li><code><html window-icon="url"></code> html property for the same purpose.</li>
<li>[script] <code>Error.data</code> - auxiliary data - payload that error can carry.</li>
<li>[dom] <code>view.request()</code> errors thrown contain <code>{ status: ..., response: ... }</code> details.</li></ul>
<p>fixes:</p>
<ul>
<li>[richtext] fix of caret position between two inline block elements.</li>
<li>[api] PLAIN_API_ONLY compatibility. See: <a href="https://github.com/c-smile/sciter-sdk/issues/45">https://github.com/c-smile/sciter-sdk/issues/45</a></li>
<li>[api] fix of SciterGetElementLoacation() returning RECT with bottom and right coordinates off by one pixel.</li>
<li>[gtk] view.close() async fix;</li>
<li>[css] support of `@` in attribute selectors, [@collapsed] for example.</li>
<li><code>Element.selection.advance(#first | #last, ...)</code> fix.</li>
<li>[osx] fix of "rendering paused when menu is shown"</li>
<li>[osx,linux] accesskey attribute handling fix.</li>
<li>[win] UI Automation, reporting rendered text rather than what is defined in DOM. Note: rendered text can be different from what is defined in DOM when CSS content:"other text" is used.</li>
<li>[win] View.POPUP_WINDOW and View.TOOL_WINDOW - disabling appearance on taskbar. </li>
<li>Transaction.insertText() implementation</li>
<li>Fix of <select|tree> dblclick handling.</li>
<li>Fix of <code>button[role=default-button]</code> styling when not in in focus state.</li>
<li>Fix of MOUSE_WHEEL double callback generation in some cases: <a href="http://sciter.com/forums/topic/why-does-onmouse-execute-2-times">http://sciter.com/forums/topic/why-does-onmouse-execute-2-times/</a></li>
<li>[win] role="default-button" in dialog, fix if that button is not the first;</li>
<li>[win] - glassy message boxes are gone.</li>
<li>[win] fix of <a href="http://sciter.com/forums/topic/sciter-forcedly-handles-wm_nchittest">http://sciter.com/forums/topic/sciter-forcedly-handles-wm_nchittest</a> issue.</li>
<li><code>Element.isPointInside = function(x,y) {}</code> - support of elements with arbitrary shape. See discussion : <a href="http://sciter.com/forums/topic/custom-shaped-widget">http://sciter.com/forums/topic/custom-shaped-widget/</a> and sample sdk/samples/graphics/test-element-custom-shape.htm</li>
<li>Fix of selection.html, last character issue: <a href="http://sciter.com/forums/topic/selection-html-will-loss-the-last-char-when-including-img">http://sciter.com/forums/topic/selection-html-will-loss-the-last-char-when-including-img/</a></li>
<li>[tiscript] <code>stream.printf(str)</code> fix of the case when str contains characters higher than BMP, see: <a href="http://sciter.com/forums/topic/unicode-in-string-stream">http://sciter.com/forums/topic/unicode-in-string-stream/</a></li>
<li>[tiscript] fix of namespace handling in presence of await;</li>
<li>[win] <code>role='window-max'</code> and <code>role='window-min'</code> independent handling. Window can be maximisable but not minimisable.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.12</td>
<td nowrap="" valign="top" align="center">06-10-2016</td>
<td>
<p>new:</p>
<ul>
<li>[+lang] <code>Lang.x(text[,value])</code> function - explicit translation. + demo: demos/6-lang-msgbox.htm</li>
<li>[tiscript, storage] samples : sdk/samples/storage/</li>
<li><code>Event.X_DRAG_CANCEL</code> - sent if drag was canceled.</li>
<li><code>view.isBlurBehind</code> property to set blur dynamically. See: /sdk/samples/sidebar - Windows 10 Action Center alike thing.</li>
<li>+ sdk/samples/ideas/effects/bubbles effect.</li></ul>
<p>fixes:</p>
<ul>
<li>[behavior:htmlarea] disabling some experimental features (caret navigation).</li>
<li>[scrollable table] <code><tbody></code>, fix of vertical scrollbar rendering when horizontal scroll is present. samples/+vlist/vgrid.htm case with columns resized.</li>
<li>[API] fix of <code>dom::element::get_style_attribute()</code> for length values: <a href="https://sciter.com/forums/topic/get_style_attributewidth-data-format">https://sciter.com/forums/topic/get_style_attributewidth-data-format/</a></li>
<li>[native api] <code>SciterSortElements</code> fix.</li>
<li>[popup] dynamic update fix, case: sdk/samples/popup/popup-dynamic-sizing.htm</li>
<li>[svg] fix of rendering artifacts in <code><defs><rect/></defs></code></li>
<li>[win] fix of icon click handling on custom-frame, see my question: <a href="http://stackoverflow.com/questions/39731220/is-there-wm-queryhide-close-or-similar-message">http://stackoverflow.com/questions/39731220/is-there-wm-queryhide-close-or-similar-message</a></li>
<li>[win] clipboard::get_image() fix for malformed alpha images.</li>
<li>[layout] <code>flow:default | vertical</code> , fix of max-content calculation, see: <a href="http://sciter.com/forums/topic/css-layout-chalenge">http://sciter.com/forums/topic/css-layout-chalenge/</a></li>
<li>[d2d] layered popup, svg and image graphcs - fix of rendering on some cards.</li>
<li><code><option></code> <code>:node</code> state setting is back. Fixes <a href="http://sciter.com/forums/topic/3-3-2-11-treeview-bug">http://sciter.com/forums/topic/3-3-2-11-treeview-bug/</a> case.</li>
<li>[tiscript] fix of eval against persisted objects.</li>
<li>Support of <code>"role=window-max"</code> and <code>"role=window-maximize"</code> roles in custom frame windows.</li>
<li><code>JSON.stringify(, array)</code> case support.</li>
<li><code>JSON.stringify()</code> and <code>JSON.parse()</code> have been documented.</li>
<li>[win,d2d] unknown glyph rendering fix.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.11</td>
<td nowrap="" valign="top" align="center">10-09-2016</td>
<td>
<p>new:</p>
<ul>
<li>support of multiple role="window-caption" elements.</li>
<li>[win10] custom-frame="blur" support.</li>
<li>[tis] <em>this var</em> in classes - deep cloning, see <a href="http://sciter.com/forums/topic/class-variables">http://sciter.com/forums/topic/class-variables/</a> discussion.</li>
<li>view.on("moving",function(rectw) {...}) and <br/>view.on("sizing",function(rectw) {...}) events. + sdk/samples/dialogs+windows/test-view-move-discrimination.htm</li>
<li>[css] + <em>text-selection-caret-color</em>: color property, explicit caret color definition.</li></ul>
<p>fixes:</p>
<ul>
<li>flow:grid() layout calculation, fix for spanned cells: <a href="http://sciter.com/forums/topic/particular-combination-of-elements-lead-to-mouse-glitch">http://sciter.com/forums/topic/particular-combination-of-elements-lead-to-mouse-glitch/</a></li>
<li>[win] restarting animations fix : <a href="http://sciter.com/forums/topic/gifapng-animation-does-not-work-when-parent-window-is-redisplay">http://sciter.com/forums/topic/gifapng-animation-does-not-work-when-parent-window-is-redisplay/</a></li>
<li>[win] unknown char rendering (used to be blank)</li>
<li>fix of the issue with handling ucodepoints > 0xFFFF</li>
<li>iverscroll animation effect is "on" only when overflow:scroll-indicator is defined.</li>
<li>[win,gdi] fix of Graphics.arc() implementation.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.10</td>
<td nowrap="" valign="top" align="center">20-08-2016</td>
<td>
<p>new:</p>
<ul>
<li>+ <code>Event.exchangeData([type])</code> - allows to fetch various data/formats from system exchange events.</li></ul>
<p>fixes:</p>
<ul>
<li>Attempt to fix of image animations restart : <a href="http://sciter.com/forums/topic/gifapng-animation-does-not-work-when-parent-window-is-redisplay">http://sciter.com/forums/topic/gifapng-animation-does-not-work-when-parent-window-is-redisplay</a></li>
<li>dynamic DPI change adjustments.</li>
<li><img src="...svg"> - script interpretation disabled in non-inline SVGs.</li>
<li>[win,iAccessible] fix of AV (0xC0000005)</li>
<li>[script] eval(src) accepts bytecodes in src if it is a byte array</li>
<li><output|time value="..."> parsing fix.</li>
<li>input|date and input|time respect @lang now.</li>
<li>Fix of type definition conflict: COLOR is SC_COLOR, ANGLE is SC_ANGLE and so on</li>
<li><select|dropdown> fix of button click</li>
<li>[osx] fix of GUI thread - video producer in worker thread case.</li>
<li><header role="window-caption"> may contain other <role="window-****"> elements</li>
<li>[master-css,win] tooltip background</li>
<li>fix of sciter.exe icons on high dpi</li>
<li>[win] fix tooltip rendering on W7</li>
<li>[css] scroll-manner property, fix of inheritance.</li>
<li>MacOS "kinetic overscroll" behavior on all platforms, configured by #define USE_OVERSCROLL true|false</li>
<ul>
<li>[+vlist] adjustments to support overscroll.</li></ul>
<li>[dom] better handling of element removal when it is hovered by the mouse, affects +vlist and similar cases.</li>
<li>[+plus] repeatable related fixes.</li>
<li>css, custom scrollbar, dip rendering.</li>
<li>[+plus] defines Object.merge() function to merge object hierarchy[s] into this one. See: sdk/samples/+plus/demos/C-hierarchy-function-binding.htm</li>
<li>[css] fix of memory leak in properties using calc() expression.</li>
<li>Object.extend() fix for bound objects.</li>
<li>fix <input|number> compatibility with +plus, see: <a href="http://sciter.com/forums/topic/plus-some-demos-are-broken-in-3-3-2-9-because-of-decimal-input-type">http://sciter.com/forums/topic/plus-some-demos-are-broken-in-3-3-2-9-because-of-decimal-input-type</a></li>
<li>[+plus] fix of <a href="http://sciter.com/forums/topic/plus-bound-attribute-is-failed-to-bind">http://sciter.com/forums/topic/plus-bound-attribute-is-failed-to-bind</a></li>
<li>fix of issue with multiple animators running on the same element.</li></ul></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.9</td>
<td nowrap="" valign="top" align="center">18-07-2016</td>
<td>
<p>fixes:</p>
<ul>
<li>Fix of UI update after <code>element.attributes["..."] = ...</code> , issue was introduced in 3.3.2.8</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.8</td>
<td nowrap="" valign="top" align="center">17-07-2016</td>
<td>
<p>new:</p>
<ul>
<li>[css] + zoom property - close to IE's zoom but with differences, see sdk/doc/core/cssmap.html and sample sdk/samples/zoom/zoom-demo.htm</li>
<li>[win] virtual keyboard support on tablets.</li></ul>
<p>fixes:</p>
<ul>
<li>[CSS] background-clip handling on custom scrollbar parts.</li>
<li>[css] stroke-miterlimit: sigma handling.</li>
<li><select> preventing "change" event generation while select.value = ... assignment. Among other problems it caused problmes in +plus: <a href="http://rsdn.ru/forum/htmlayout/6506282.1">http://rsdn.ru/forum/htmlayout/6506282.1</a></li>
<li>Fixes in Element.onGesture() handling. See: samples/gestures/touch-events.htm demo.</li>
<li>Element.loadImage() - one more attempt to make it.</li>
<li>[+vlist] current [record] clearance on recordset change.</li></ul>Builds: win32/win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.7</td>
<td nowrap="" valign="top" align="center">13-07-2016</td>
<td>
<p>new:</p>
<ul>
<li>+ [css] sample of content:attr(name); function, see sdk/samples/css3/content-attr.htm</li>
<li>+ <code>Math.round(float)</code> function.</li>
<li>[+plus] use of optional element.setBoundValue() while setting bound DOM element's value.</li>
<li>[+plus] support of record list / current record idiom. See: sdk/samples/+plus/demos/L-list-detail.htm</li>
<li>[cssom] + sample of dynamic stylesheet update : sdk/samples/cssom/update-style-sheet.htm</li>
<li>Element.loadImage(,,useCache: true | false), check documentation.</li>
<li>[tiscript] Error.id property added.</li></ul>
<p>fixes:</p>
<ul>
<li>Initial input:empty handling.</li>
<li>view.request{} handling data URIs</li>
<li>HANDLE_GESTURE ext api fix, Event.flags field is read/write now too.</li>
<li>[API headers] Some plain C compatibility fixes.</li>
<li>[layout] fix of padding and borders handling on <tbody>.</li>
<li>[doc] Image.fromBytes() documented.</li>
<li>Fix of <a href="https://github.com/c-smile/sciter-sdk/issues/40">https://github.com/c-smile/sciter-sdk/issues/40</a> ( starting new animation at the end() callback )</li>
<li>[css,drawing] fix of wrong border-radius inherit color handling: <a href="http://sciter.com/forums/topic/border-radius-breaks-color">http://sciter.com/forums/topic/border-radius-breaks-color/</a></li>
<li>[+plus] fix of indirect model issue http://sciter.com/forums/topic/about-plus-tis/</li>
<li>[clipboard] fix of 0xFFFF cap on text retrieval.</li>
<li>[tiscript] fix of Object.referenceOf() for non-existent paths.</li>
<li>preventing view.dialog() and view.msgbox() calls while view closing. Use function self.closing(reason) { .... } to place any modal dialogs when you need them.</li>
<li>rejecting view.doEvent based modal loops in view dismissing code paths.</li>
<li>[+lib] fix of Function.debounce()</li>
<li>fix of sdk/samples/ideas/tray-notifications/ popup position ( isolating collapsing margins side effect ).</li>
<li>[doc] Graphics documentation fixes</li>
<li>[frames] fixing "closerequest" -> event.cancel = true; handling for discarding document unload.</li>
<li>Fix of element.on("~click", ...) subscriptions handling (click in sinking phase)</li>
<li>[gtk] graphics::do_draw fix (double deletion in some cases)</li>
<li>Image.colorAt(x,y,newColor) fix for existing images.</li>
<li>view.msgbox opens hyperlinks in browser rather that in place.</li></ul>Builds: win32, win64, osx32/osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.6</td>
<td nowrap="" valign="top" align="center">12-06-2016</td>
<td>
<p>new:</p>
<ul>
<li>[css] + word-break:break-all; support. See: test-cases/text-flow/text-wrap-word-break.htm</li>
<li>[inline vector images] expandable images shall start from 'E' command. Note: could breaking change if you use inline vector images.</li>
<li>[+plus] @enabled, @disabled, @expanded, @collapsed bound attributes treatment. See: sdk/samples/+plus/demos/I-bound-@-attributes.htm and sdk/samples/+plus/readme.htm</li>
<li>[api] sciter::value::make_array() - allows to create empty arrays.</li>
<li>[api] sciter::value::make_map() - allows to create empty key/value maps (objects in JS terms).</li>
<li>[css,svg] stroke-dashoffset support. See sdk/samples/svg/svg-dashoffset.htm</li></ul>
<p>fixes:</p>
<ul>
<li>[css] fix of list-item-style:tree-line rendering.</li>
<li>handling possible pileups of posted items. Windows only for a while.</li>
<li>[osx] MOUSE_IDLE to match Windows behaviour.</li>
<li>[gtk] fix of thread safe API issue.</li>
<li>[tiscript] fix of shebang handling side effects.</li>
<li>[plaintext] fix of empty lines removal;</li>
<li>[plaintext] fix of clipboard copy() operation.</li>
<li>[script] fix of view.msgbox() effect inside promise callbacks: <a href="http://sciter.com/forums/topic/promise-finally-bug">http://sciter.com/forums/topic/promise-finally-bug</a></li>
<li><frameset> / behavior:frameset, alternative algorithm of panel resizing.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.5</td>
<td nowrap="" valign="top" align="center">28-05-2016</td>
<td>
<p>new:</p>
<ul>
<li>+ Google Maps sample: samples/maps/google-maps.htm</li>
<li>[video,css] video frame rendering is governed by foreground-*** CSS properties now.</li>
<li>[css] support of transition: box-shadow(...)</li>
<li>[htmlarea,richtext,plaintext] adding SHIFT + mouse-click handling.</li></ul>
<p>fixes:</p>
<ul>
<li>:busy state generation for images sharing the same URL.</li>
<li>fix of :busy and :incomplete state update for resources that use SC_LOAD_DATA/LOAD_DELAYED and SciterDataReadyAsync.</li>
<li>[gdi] missed characters in some cases.</li>
<li>[tiscript] error propagation when loading compiled bytecodes.</li>
<li>Fix of sciter::debug_output_console setup in release builds.</li>
<li>[svg] fix of AV in svg rendering when it is used in back/foreground-image of parent document.</li>
<li>[printing] Fix of AV in new Graphics.Text();</li>
<li>[foreground-image-cursor] fix of background-size:contain case.</li>
<li><plaintext> fix of blank lines handling, see: http://sciter.com/forums/topic/bug-2/</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.4</td>
<td nowrap="" valign="top" align="center">15-05-2016</td>
<td>
<p>new:</p>
<ul>
<li>+ sample sdk/samples/dialogs+windows/dialog-parameters : passing data and callback function to dialog.</li>
<li>[html, <img>,<picture>] image cache handling for the case: img.attributes["src"] = "new url"; In this case previous image (img.attributes["src"]) gets destroyed and memory is freed. This is about cases when <picture> is used as image viewer.</li>
<li>[+unit-test]</li>
<ul>
<li>+ @unittestGroup - groups pf unit tests , see: +unit-test/demos/</li>
<li>CTRL+SHIFT+T as a primary test shortcut.</li></ul>
<li>[css] conditional @const and @mixin are back. See: sdk/samples/css++/conditional-@const.htm and sdk/samples/css++/conditional-@mixin.htm</li>
<li>[tiscript, syntax] support of 1vw, 1vh, 1vmin and 1vmax length literals.</li></ul>
<p>fixes:</p>
<ul>
<li>[win, d2d, high-dpi] fix of novalue rendering</li>
<li>[osx] fix of "sleepy" image and scroll animation issues.</li>
<li>[layout] <img> and <picture> intrinsic size calculation fix.</li>
<li>[tiscript] native functors in promises.</li>
<li>[win, security] LoadLibrary calls replaced by LoadLibraryEx.</li>
<li>better out-of-memory handling.</li>
<li>[osx] multiline novalue rendering fix.</li>
<li>[gtk] view.move() fix</li>
<li>[api] SciterValueVisit fix.</li>
<li>[request API] fix of RequestGetNthRqHeaderName() function.</li>
<li>[win, lang=ja] "Yu Gothic UI" font is added to font substitution table.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.3</td>
<td nowrap="" valign="top" align="center">03-05-2016</td>
<td>
<p>new:</p>
<ul>
<li>[+unit-test] simple UnitTest framework, initial implementation. See: sdk/samples/+unit-test/demos/</li>
<li>[+plus] + sample of binding fileds containing literal HTML: sdk/samples/+plus/demos/K-bound-markup.htm</li></ul>
<p>fixes:</p>
<ul>
<li>view.dialog / view.window - window state is set to WINDOW_SHOWN by default.</li>
<li>behavior:textarea, fix of text insertion at last position: <a href="http://sciter.com/forums/topic/textarea-cursor">http://sciter.com/forums/topic/textarea-cursor/</a></li>
<li>[rtl][master-css] input { text-align:start; } by default</li>
<li>[rtl] horizontal-align: start; by default</li>
<li>[tiscript,await] support of native functors.</li>
<li>fix of potential AV on erroneous markup.</li>
<li>dyn update fix on display:inline elements.</li>
<li>Fix of inline-block/float and inline-block/absolute handling: <a href="http://sciter.com/forums/topic/behavior-clickable-with-inline-block">http://sciter.com/forums/topic/behavior-clickable-with-inline-block/</a> and <a href="http://sciter.com/forums/topic/absolute-positioned-input-not-showing-up-in-div">http://sciter.com/forums/topic/absolute-positioned-input-not-showing-up-in-div/</a></li>
<li>[osx] fix for child NSViews on moved/popup elements.</li>
<li>[win][d2d] bitmap dimension cap limit</li>
<li>behavior:textarea|edit, shift-MouseDown handling.</li>
<li>[layout, update] fix of Element.text update in some cases: <a href="http://sciter.com/forums/topic/button-caption">http://sciter.com/forums/topic/button-caption/</a></li></ul>Builds: win32, win64, osx32, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.2</td>
<td nowrap="" valign="top" align="center">25-04-2016</td>
<td>
<p>fixes:</p>
<ul>
<li>regression of [css] fix of visibility:hidden handling.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.1</td>
<td nowrap="" valign="top" align="center">24-04-2016</td>
<td>
<p>new:</p>
<ul>
<li>[animated-png][gtk] Animated PNGs are now supported on Linux. Kudos to Mr. Pravic for the implementation.</li>
<li>+ sample sdk/samples/animations-transitions-css/infinite-rotation.htm.</li>
<li>[win] role="window-caption" may have other role="window-****" elements inside.</li>
<li>+samples view.selectFile() demo: /sdk/samples/view/view.selectFile.htm</li>
<li>[api] Support of UTC/local time in: sciter::value::date(uint64, bool is_utc = true);</li>
<li>[d2d][video] support of argb32 frames with alpha.</li>
<li>[tiscript] + Task.catch() and Task.finally() to comply promise interface.</li>
<li>+ sample sdk/samples/frames/multi-view - demonstrates UI based on sub-documents in <frame#content></li>
<li>[tiscript] compiled script ( tiscript.exe -c ... ) contains current sciter versions now, note that you need to recompile stored bytecode files for each new Sciter build.</li>
<li>[tiscript][await] awaiting plain script function is an equivalent of post(thatfunction).</li>
<li>[+vlist] "change" event generation when current item changes.</li>
<li>[tiscript] better (less noisy) assert'ion message formating.</li></ul>
<p>fixes:</p>
<ul>
<li>CRITICAL: fix of memory leak in animated images. See: <a href="http://sciter.com/forums/topic/free-memory">http://sciter.com/forums/topic/free-memory/</a></li>
<li>[win] removal of erroneous WM_NCPAINT handler causing <a href="http://sciter.com/forums/topic/flickering-when-resize-a-custom-frame-window">http://sciter.com/forums/topic/flickering-when-resize-a-custom-frame-window/</a></li>
<li>[osx][child windows] replace child NSView fix.</li>
<li>[tiscript] handling virtual property with set {} section without return val;</li>
<li>[css] fix of visibility:hidden handling</li>
<li>[+vgrid] fix of error in add/update in some cases. </li>
<li>[win][graphics], fix of Graphics.rectangle(x,y, 1, h) - one pixel wide rectangle.</li>
<li>[osx] view.selectFile(#save, .. ) support.</li>
<li>[documentation] + View.request, progress parameter documented.</li>
<li>[tiscript, await] task.then() callbacks handling, see: /sdk/samples/tests/tiscript/tiscript-await-timeout.htm</li>
<li>[+plus], fix of 1-basic-function-binding.htm case.</li>
<li><svg> fix of drawing.</li>
<li>[win, d2d] AV on non-existent font.</li>
<li><picture> fix of update after remote image arrival.</li>
<li>accesskey fix, see sdk/samples/accesskey/test-navigate-to.htm</li>
<li>[layout] fix of spaces after the <br> handling.</li>
<li>VS2012 code generator compatibility fixes.</li>
<li>Fix of visibility:collapse|hidden interpretation in <tr>.</li>
<li><select|dropdown multiple> rendering fix.</li>
<li><select>, fix of <a href="http://sciter.com/forums/topic/dbclick-select-file">http://sciter.com/forums/topic/dbclick-select-file/</a></li>
<li>[svg] forcing utf-8 as a default encoding.</li>
<li>[API] SciterFireEvent threading issue fix.</li>
<li>[tiscript] fix of break exit from try block.</li>
<li>Fix of AV of inline element update.</li>
<li>behvariors richtest and plaintext - fix of composite character input that uses ALT modifiers.</li>
<li>[api] ValueInvoke and ValueEnumElements, const correctness fixes.</li>
<li>[doc] Sciter.home() removed from the doc.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.2.0</td>
<td nowrap="" valign="top" align="center">19-03-2016</td>
<td>
<p>new:</p>
<ul>
<li><strong>inline vector images</strong>: <code>background-image; url( path: M0,0 L50,100 L100,0z );</code> - will draw filled triangle on background. <br/>See: sdk/samples/css++inline-vector-images/ and documentation sdk/samples/css++inline-vector-images/path-images-doc.htm</li>
<li>[html,parser] support of <strong>"bound" attributes</strong> using "@name" notation:</li>
<ul>
<li>[css] :has-bound-attributes pseudo class that matches element having at least one bound attribute.</li>
<li>[+plus] support of universal bound attributes - any attribute can be prepended by '@' with its value containing bound expression. So <code><img @src="item.imageUrl"></code> will get into the DOM as <code><img src="concrete url"></code></li></ul>
<li>[+plus] sdk/samples/+plus/readme.htm contains basic documentation.</li>
<li>[+plus] + radio group demo : sdk/samples/+plus/demos/J-radio-group.htm</li>
<li>[svg] support of <use> element and stroke-dasharray attribute.</li>
<ul>
<li>+ sample /sdk/samples/svg/svg-chart.htm</li></ul>
<li>[i18n] more samples in /sdk/samples/i18n/</li>
<li>+ stock:chevron-left/right/up/down</li></ul>
<p>fixes:</p>
<ul>
<li>[osx] fix of default line spacing.</li>
<li>[svg] correct computation of auto dimensions.</li>
<li>[script] <code>Float.toString()</code> truncation fix.</li>
<li><select> hit test fix.</li>
<li><textarea spellcheck="no"> support.</li>
<li>[sciter.exe] delay load MF.DLL & friends.</li>
<li>All updates are queuing rather than executing directly. This may solve some corner cases with broken DOM updates.</li>
<li>[win] fix of WSAStartup issue: http://sciter.com/forums/topic/sciter-dll-deadlock/ by calling WSAStartup on demand only.</li>
<li>[svg] proper fill="none" handling.</li>
<li>fix of inspector's log output : <a href="http://sciter.com/forums/topic/inspector-log">http://sciter.com/forums/topic/inspector-log/</a></li>
<li>fix of &emsp; and &ensp; rendering : <a href="http://sciter.com/forums/topic/emsp-rendered-width-looks-wrong">http://sciter.com/forums/topic/emsp-rendered-width-looks-wrong/</a></li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.11</td>
<td nowrap="" valign="top" align="center">13-03-2016</td>
<td>
<p>new:</p>
<ul>
<li>[css] <strong>width(%)</strong> and <strong>height(%)</strong> pseudo-functions, in particular: <input|text> -> { height:1.4em; line-height:height(100%); }</li>
<li>sample of view.mediaVars() : /sdk/samples/media/media-vars.htm</li>
<li>SHIFT-CLICK handling on scrollbars.</li>
<li>[+plus] update, support of 'changed path' parameter, see: +plus/demos/H-function-path-binding.htm</li>
<li>[tiscript] [Task] <strong>Generator.next</strong>(val) method to match JS yield specification. See: sdk/samples/tests/tiscript/tiscript-generator.htm</li>
<li><strong>Image.update</strong>(function(gfx){}) - incremental image update/rendering, see: sdk/samples/graphics/test-image-graphics-update.htm</li>
<li><strong>Image.compose</strong>(srcImage,#op[,dstx,dsty,srcx,srcy,srcw,srch]); see: sdk/samples/graphics/test-image-compose.htm , <a href="http://ssp.impulsetrain.com/porterduff.html">Porter-Duff operations</a></li>
<li>Task (coroutine) object documented.</li></ul>
<p>fixes:</p>
<ul>
<li>Better <br> handling. See: <a href="http://sciter.com/forums/topic/maybe-handling-bug">http://sciter.com/forums/topic/maybe-handling-bug/</a></li>
<li><widget|checkbox> styling</li>
<li>[gtk] initial window dimensions when size are not specified</li>
<li>Image.colorAt() for animated images.</li>
<li>[tiscript][await] fix of GC issue when active corroutines are present.</li>
<li>better <select|dropdown tooltip="text"> handling.</li>
<li>[osx][gtk] SC_ENGINE_DESTROYED notification.</li>
<li>[osx] fix of view.msgbox borderless appearance.</li>
<li>[gtk]modal dialog window z-order position.</li>
<li>fix of paste and drop operations in <input|text readonly></li>
<li>Event.MOUSE_DARG_REQUEST documented.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.10</td>
<td nowrap="" valign="top" align="center">07-03-2016</td>
<td>
<p>fixes:</p>
<ul>
<li>[gtk] better keydown/keyup event generation.</li>
<li>fix of window destruction sequence sdk/include/sciter-x-window.hpp</li>
<li>CRITICAL: fixes of issues in Value**** functions introduced in 3.3.1.9</li>
<li>fix of initial scroll position in <code><input|text></code> and <code><textarea></code></li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.9</td>
<td nowrap="" valign="top" align="center">06-03-2016</td>
<td>
<p>new features:</p>
<ul>
<li><strong>Sciter API is thread safe</strong> now. It is not a crime anymore to call API functions from worker threads, but note if you plan to have massive DOM manipulations from threads you'd better use GUI_START/GUI_END brackets as outlined here: <a href="http://sciter.com/calling-code-behind-ui-from-worker-threads" style="color: rgb(196, 129, 67); text-decoration: none; outline: none; transition: all 300ms ease; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: transparent; background-color: transparent;">Sciter UI, basic principles. Calling code behind UI from worker threads.</a></li>
<li>+ "mousedragrequest" / Event.MOUSE_DRAG_REQUEST event.</li>
<li>[css] letter-spacing property support. Test case: test-cases/text-flow/letter-spacing.htm</li>
<li>+ stock:frame + stock:block images.</li>
<li>[osx] support of drag-drop-target functionality. E.g. html files can be dropped on sciter window.</li></ul>
<p>fixes:</p>
<ul>
<li><svg>, handling dimensions without explicit width/height set.</li>
<li>[svg] fix of stroke default value -> inherit</li>
<li>[win] view.doEvent(#untilMouseUp) regression fix.</li>
<li>richtext/plaintext readonly fix, see: <a href="http://sciter.com/forums/topic/readonly-not-fully-working">http://sciter.com/forums/topic/readonly-not-fully-working/</a></li>
<li>file-thumbnail.htm sample fix.</li>
<li>symbolic event names documented in <a href="http://sciter.com/docs/content/sciter/Event.htm">http://sciter.com/docs/content/sciter/Event.htm</a></li>
<li>[gtk] view.move(x,y) fix</li>
<li>[win,d2d] linear/gradient background caching mechanism implemented. Elements that use linear-gradient / radial-gradient should be rendered faster.</li>
<li>[tiscript] fix of symbol table overflow on large scripts. Got the problem in one app that uses scripts a lot.</li>
<li>fix of "click on popup's scrollbar closes popup".</li>
<li>[gtk] auto window size fix.</li>
<li>[script, VM, GC] fix of potential cause of AV.</li>
<li>[master-css] fix of <select> dropdown button appearance.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.8</td>
<td nowrap="" valign="top" align="center">27-02-2016</td>
<td>
<p>new features:</p>
<ul>
<li>[tiscript] + generators - support of <strong>yield</strong> keyword. Check test-cases/yield. The function containing the yield keyword is a generator - can be used in for(var val in generator())</li>
<li>[css] enabling transition: ... on ::after and ::before elements.</li>
<li>[css-selectors] + '(' and ')' in selectors so input(foo) {color:red;} is exactly the same as input[name="foo"] { color:red; }</li>
<li>[osx] + sciter-osx-32.dylib as part of distribution.</li>
<li>+ validation/callout demo sdk/samples/ideas/callout/validation.htm</li>
<li>[inspector] list/view SVG in images/section</li>
<li>sdk/samples/ideas/lightbox-dialog/lightbox-dialog.tis update, support of classes in buttons.</li>
<li>+ dynamic cursor demo: sdk/samples/graphics/test-dynamic-cursor.htm</li>
<li>[gtk] view.min/maxSize implementation</li>
<li>+ stock:disk, stock:circle images.</li>
<li>[css] enabling fill, stroke and stroke-width on stock:... images. See: sdk/samples/css++/stock-images-styling.htm</li></ul>
<p>fixes:</p>
<ul>
<li>[win,d2d] warp mode is not trying to create DX device.</li>
<li>[css] fix ::after and ::before appearance in flow:stack layout.</li>
<li>[win] view.doEvent(#untilMouseUp), more reliable.</li>
<li>[osx] view.doEvent(#all) - does not breaks the loop if window is hidden. To match Windows behavior.</li>
<li>[sciter::value::map] fix item deletion,see: <a href="http://sciter.com/forums/topic/erasing-sequence-elements-with-scitervalue">http://sciter.com/forums/topic/erasing-sequence-elements-with-scitervalue/</a></li>
<li>[image maps] fix of "on dpi change" handling.</li>
<li>fix of colorizer on <pre></li>
<li>tiscript API fixes.</li>
<li>[gtk] proper MOUSE_WHEEL handling when horizontal SB is present</li>
<li>fix of Element.scrollTo(0,999999) "overscrolls" by 1 px.</li>
<li>+vlist , fix of division by zero in onSize.</li>
<li>sdk/samples/drag-n-drop-manager/ sample fixes.</li>
<li>3.3.1.7 regression fix - AV in GC in some cases.</li>
<li>[tiscript] 'await' outside function causes syntax error.</li>
<li>[osx,linux] fix of regex [:alnum:] to match non-ascii chars.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.7</td>
<td nowrap="" valign="top" align="center">16-02-2016</td>
<td>
<p>new features:</p>
<ul>
<li><strong>await</strong> statement support in script + <strong>promise()</strong> as an internal module. Check sdk/doc/content/sciter/promise.htm and sdk/samples/communication/await-for-request.htm. More samples are coming.</li>
<li>[directx] sample, enabling inspector;</li>
<li>[gtk] CSS:image-rendering support;</li></ul>
<p>fixes:</p>
<ul>
<li>Linux/GTK version</li>
<ul>
<li>Graphics.arcTo() fix;</li>
<li>Fix of AV on window destruction in some cases;</li>
<li>select|dropdown fixes;</li>
<li>layered windows configuration;</li>
<li>+ packfolder executable as part of SDK;</li>
<li>better idle processing, see: <a href="http://sciter.com/forums/topic/cpu-spinning-when-running-inspector">http://sciter.com/forums/topic/cpu-spinning-when-running-inspector/</a></li>
<li>better SW_POPUP/WINDOW_POPUP handling in view.window();</li>
<li>popup closing when mousedown outside of element;</li>
<li>fix of popup dismissal - popup window gets destroyed rather than 'closed';</li>
<li>better drawing of 9-sectioned images;</li></ul>
<li>[select|dropdown editable] fix of focus handling.</li>
<li>Fix of high CPU and memory consumption while handling markup like this: <code><div style='flow:"1 2 3 4"'></code> if to compare with equivalent <code><div style="flow:grid(1 2 3 4)"></code>;</li>
<li>[css,rendering] fix of <code>::before</code> and <code>::after</code> pseudo-elements handling on dynamic updates.</li>
<li>incremental behavior assignment is back again. It fixes this: <a href="http://sciter.com/forums/topic/a-subtle-bug">http://sciter.com/forums/topic/a-subtle-bug/</a></li>
<li>[osx] one more fix of flipped image;</li>
<li>[osx,gtk] popup, click out of popup handling;</li>
<li>[scrollbar] fix hit_test() on custom scrollbars without +1/-1 buttons;</li>
<li>fix of "-1px scrollToView" issue: <a href="http://sciter.com/forums/topic/scroll-to-bottom">http://sciter.com/forums/topic/scroll-to-bottom/</a></li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.6</td>
<td nowrap="" valign="top" align="center">07-02-2016</td>
<td>
<p>new features:</p>
<ul>
<li>+ [css,script] <strong>parametrized-aspect</strong> feature, declaration of aspect call parameters in CSS:
<pre>div.foo {
aspect: Foo(bar:12, buz:#fff );
}
</pre>
<p>Foo gets called with params object <code>{ bar:12, buz: color(255,255,255) }</code>, check <u>sdk/samples/tests/test-aspect-parameters.htm</u></p></li>
<li><strong>+micro-charts</strong> in <u>sdk/samples/+micro-charts</u> - small SVG based charts implementation. That is deeply "sciterized" version of Peity charts (<a href="http://benpickles.github.io/peity">http://benpickles.github.io/peity</a>)<br/>See samples there and</li>
<ul>
<li>[+plus] sdk/samples/+plus/demos/G-two-inputs-same-variable.htm demo update with the charts binding demo.</li></ul>
<li>+ <strong>native request API</strong> in <u>sciter-x-request.h</u> and <u>sciter-x-request.hpp</u>. Handling all attributes of requests (GET/POST/PUT/DELETE) sent by Element/View.request() functions and other load requests.</li>
<li>[tiscript] <code>Object.extend([deep],object1,object2,...)</code> - native method, merges other objects into this one. Mimics functionality of jQuery.extend().</li>
<li>[tiscript] <code>Object.clone(deep)</code>, <code>Array.clone(deep)</code> implementation.</li>
<li>+ sample sdk/samples/tooltips++/custom-calltip.htm - demo of :</li>
<ol>
<li>aspect with parameters and</li>
<li>custom popup shape rendering.</li></ol>
<li>[css] Support of '.' (dots) in nmtokens in css values. This allows to define the following:<br/><code>div { aspect: Micro.Pie ; } </code> <br/>that previously has to be written only as a string:<br/><code>div { aspect: "Micro.Pie"; }</code></li></ul>
<p>fixes:</p>
<ul>
<li>[behavior:edit | textarea] fix of selectall functionality.</li>
<li>[+plus] update to support multiple aspects cooperation on the same element.</li>
<li>fix of <code>Graphics.rectangle(x,y,w,h)</code> - w,h is rendered one px wider/taller than requested.</li>
<li>fix of error handling in <code>Element.paint****</code> functions.</li>
<li>fix of <code>Element.url()</code> for paths containing non-ascii symbols , see: <a href="http://sciter.com/forums/topic/a-bug-of-test-layer-clip-path-htm">http://sciter.com/forums/topic/a-bug-of-test-layer-clip-path-htm/</a></li>
<li>[osx] fix of "custom cursors mirrored issue".</li>
<li>[gtk] sciter-gtk-xxx.so file (the Sciter engine on Linux) has been renamed to libsciter-gtk-32/64.so for compatibility with Xamarin's Mono.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.5</td>
<td nowrap="" valign="top" align="center">03-02-2016</td>
<td>
<p>fixes:</p>
<ul>
<li>Fix of animated-PNG and GIF handling introduced in 3.3.1.4</li>
<li>[osx] Fix of screenshot taking feature.</li></ul>Builds: win32, win64, osx64, linux/gtk64
<p><strong>NOTE</strong>: Windows executables in SDK <strong>are not signed</strong> so you may encounter security warnings on W8 and W10.</p></td></tr>
<tr>
<td valign="top" bgcolor="#FFFADA">3.3.1.4</td>
<td nowrap="" valign="top" align="center">02-02-2016</td>
<td>