forked from c-smile/sciter-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogfile.htm
1845 lines (1845 loc) · 155 KB
/
logfile.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.* logfile</title>
<meta name="generator" content="h-smile:richtext"/>
</head>
<body>
<h3>Sciter 3.* 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">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/[email protected] 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++/[email protected] and sdk/samples/css++/[email protected]</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>
<p>new features:</p>
<ul>
<li><strong>DirectX integration support</strong>. Sciter can be used to render UI on DirectX windows - on back and foreground layers together with 3D content. DirectX support is done by 3 functions:</li>
<ul>
<li><code>SciterCreateOnDirectXWindow(HWINDOW hwnd, IDXGISwapChain* pSwapChain);</code> - initializes Sciter instance of HWND controlled by DirectX.</li>
<li><code>SciterRenderOnDirectXWindow(HWINDOW hwnd, HELEMENT elementToRenderOrNull, BOOL frontLayer)</code> - renders whole document or separate layers on DirectX window.</li>
<li><code>SciterRenderOnDirectXTexture(HWINDOW hwnd, HELEMENT elementToRenderOrNull, IDXGISurface* surface);</code> - renders document or particular element on 2D DirectX texture.</li></ul>
<li>+ sdk/samples/dialogs+windows/window.closing.htm sample.</li>
<li>+ <code>Graphics.pushLayer(image,draw1alpha)</code> - sets <strong>clip mask by image</strong>. See: sdk/samples/graphics/test-layer-image-mask.htm</li></ul>
<p>fixes:</p>
<ul>
<li>Fix of degenerate GIF images handling (animated images having only one frame). See: <a href="http://sciter.com/forums/topic/a-gif-led-to-high-occupancy-rate-of-cpu">http://sciter.com/forums/topic/a-gif-led-to-high-occupancy-rate-of-cpu/</a></li>
<li><code><toolbar><button|checkbox></toolbar></code> styling fix.</li>
<li>custom scrollbar rendering issue fix, see: <a href="http://sciter.com/forums/topic/scrollbar-customization-problem">http://sciter.com/forums/topic/scrollbar-customization-problem</a></li>
<li><code><input|slider></code> fix, setting focus on mouse down;</li>
<li>Fix of sdk/samples/ideas/virtual-tree/virtual-tree.tis for multiple roots.</li>
<li>Preventing "pure virtual function call" on async updates in some cases: <a href="http://sciter.com/forums/topic/runtime-error-r6025-pure-virtual-function-call">http://sciter.com/forums/topic/runtime-error-r6025-pure-virtual-function-call/</a></li>
<li>[gtk] fixes:</li>
<ul>
<li><code>CTRL+ZXCV</code> handling</li>
<li>better font handling and DPI;</li>
<li><code>self.on(closerequest,function(evt))</code> , <code>evt.reason</code> value fix;</li>
<li>graphics::fill(image) fix;</li>
<li>clipboard paste fix;</li>
<li><code>view.doEvent(#untilMouseUp)</code> fix for deatched elements;</li>
<li>mouse handling on detached elements;</li></ul></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.3</td>
<td nowrap valign="top" align="center">24-01-2016</td>
<td>
<p>new features:</p>
<ul>
<li>[windows, api] SC_GRAPHICS_CRITICAL_FAILURE notification, sciter::host::on_graphics_critical_failure() - notifies about critical error while drawing **layered** windows.</li>
<li>+ sample/test sdk/samples/zip/test-view-zip-load.htm</li>
<li>+ Smoke rendering demo: sdk/samples/ideas/smoke</li>
<li>+ Element.selection.advance() implementation and documentation.</li>
<li>sciter::value::call() throws sciter::script_error in case of scripting error. It is "on" by default, to suppress it #define SCITER_SUPPRESS_SCRIPT_ERROR_THROW.</li>
<li>[+lang] Element.text = "new translatable text" handling, see: http://sciter.com/forums/topic/lang-tis-cant-translate-an-elements-text-when-it-changed/ discussion.</li>
<li>+ GDI drawing demo using sciter::image and sciter::graphics. See: sdk/include/behaviors/behavior_drawing-gdi.cpp</li>
<li><code>input|hslider</code> and <code>input|vslider</code>, support of decimal values.</li></ul>
<p>fixes:</p>
<ul>
<li><code><select multiple="checkmark"></code>, fix of doubled "change" event generation.</li>
<li><code>view.load()</code> fix of URL normalization.</li>
<li>[win] more responsive MOUSE_MOVE handling.</li>
<li>[tiscript,sciter] proper initialization of <code>this var</code>s (instance variables) before Behavior.attached() calls.</li>
<li>[gtk] fix of KEY_CHAR event generation.</li>
<li>[tiscript] Integer, division by zero throws exception. It used to return 0 so this <strong>can be a breaking change</strong>.</li>
<li>[gtk] transition:blend fix;</li>
<li>[gtk] view.aspectRatio attempt to fix (works somehow but far from perfect, GTK bug ?)</li>
<li>[gtk] MOUSE_DCLIK generation.</li>
<li>[gtk] context menu on right click.</li>
<li>Fix of bugs mentioned here: <a href="http://sciter.com/forums/topic/2-bugs">http://sciter.com/forums/topic/2-bugs/</a></li>
<li>[gtk] POPUP_WINDOW focus issue fix</li>
<li>[richtext]</li>
<ul>
<li>fix of transaction.insertHtml() between inline blocks.</li>
<li>input elements handling inside richtext (they are disabled).</li></ul>
<li>[clipboard] input|text, textarea - fix of copy-to-clipboard handling (clearing clipboard).</li>
<li>adjustment of data:... base64 URL handling</li>
<li>fix of transparent popup menu handling.</li>
<li>[win,gdi] fix of <img> rendering artifacts while stretching.</li>
<li>Element/View.request, fix of zip files downloading.</li>
<li>image drawing, background-clip: content-box;</li>
<li>[api, headers] Fix of TISCRIPT_RETURN_3 and TISCRIPT_RETURN_4 multi returns. Courtesy of Malcolm McLean</li>
<li>[osx] view::set_frame_type() in runtime.</li>
<li>custom-frame, dynamic change.</li>
<li>img :busy :incomplete state setup fix.</li>
<li>[gtk] SciterSetupDebugOutput API implementation</li>
<li>[gtk] fix of input|calendar rendering;</li>
<li>[osx] new Image(renderer) fix</li>
<li>Object.observe() fixes.</li>
<li>[windows,d2d] fix of Graphics.Path continuation of operations after first draw.</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.2</td>
<td nowrap valign="top" align="center">03-01-2016</td>
<td>
<p>new features:</p>
<ul>
<li><strong>Spell checker</strong> support in <textarea> and <htmlarea> with misspeling highlighting. Spell checker works on OSes that have that feature built-in (W8, W10, OSX).</li>
<li>Basic MFC integration demo at sdk/demos/sciter-mfc/</li>
<li>View.window() - create "detached" windows.</li>
<li>Element.onCommand() + Element.on("exec:****") handlers to intercept actions like cut, copy, paste.</li>
<li>Element.execCommand() and Element.queryCommand() documented.</li>
<li>[gtk] view.selectFolder() implementation + /custom-inputs/folder-name.htm sample.</li></ul>
<p>fixes:</p>
<ul>
<li>[column-resizer] fix.</li>
<li>[+plus] fix of non-existent property handling.</li>
<li>[popups] better window destruction handling with open popups.</li>
<li>scintilla has been removed from SDK.</li>
<li>[win, richtext] fix of pasting image data from clipboard.</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.1</td>
<td nowrap valign="top" align="center">19-12-2015</td>
<td>
<p>fixes:</p>
<ul>
<li>[osx] fix of touchpad/mousewheel horizontal scroll on popups.</li>
<li>[richtext] fix of deletion over whitespace and other deletion related issues;</li>
<li>[inspector] listens on port 0x0DEB and address "0.0.0.0" (all interfaces). This allows to use inspector on other machine other than the debugee;</li>
<li>[css,layout] fix of display:inline-block handling;</li>
<li>[layered] Fix of http://... resource loading as a facade into layered window;</li>
<li>DataSocket, fix of connections where host address is given by IP;</li>
<li>[CSS] better @font-face handling, works on Window/Direct2D and OSX. See sample: /sdk/samples/font-@font-face/;</li>
<li>[png] other way of handling malformed PNG images;</li>
<li>[css] fix of color:inherit handling;</li>
<li>[sciter-x-graphics.h] <em>imageCreateFromPixmap</em> signature adjustment.</li>
<li>fix of implicit focus on popup and moved elements. NOTE: that may require explicit view.focus(element) call if popup/moved element requires focus.</li>
<li>[css,calc] fix of vw/vh/vmin/vmax units handling in calc(...);</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.0</td>
<td nowrap valign="top" align="center">08-12-2015</td>
<td>
<p>new features:</p>
<ul>
<li><strong>+ sdk/include/sciter-x-graphics.h /.hpp </strong>- native drawing by event_handlers/behaviors; Sciter exposes sciter::graphics - platform independent 2D AA drawing primitives.</li>
<ul>
<li>see: sdk/samples/behaviors/native-drawing.htm demo that demonstarates native drawing behavior: /sdk/include/behaviors/behavior_drawing.cpp</li></ul>
<li>[script] + <code>Object.keys(),</code> see : <a href="http://sciter.com/forums/topic/object-members-in-order">http://sciter.com/forums/topic/object-members-in-order/</a></li>
<li>overflow:none; documented;</li>
<li>[CSS] + @mixin feature, see: <a href="http://sciter.com/mixin-feature-in-sciters-css">http://sciter.com/mixin-feature-in-sciters-css/</a></li>
<li>[gtk] support of screen shots by function view.screenBox();</li>
<li>Element.loadImage(base64url) support;</li>
<li>[behavior:dropdown-select] Extension friendly button handling.</li></ul>
<p>fixes:</p>
<ul>
<li>[script] Fix of <code>integer * length</code> expressions handling, see: <a href="http://sciter.com/forums/topic/4-10px-40000px">http://sciter.com/forums/topic/4-10px-40000px/</a></li>
<li>[css, layout] <strong>fix of % (percentage) units calculations</strong>. % handling should be close to what is defined by the CSS spec;</li>
<li>[css,layout] fix of horizontal-align implicit value on :rtl;</li>
<li>fixes of animated GIF and PNG rendering, see: <a href="http://sciter.com/forums/topic/animated-gifs">http://sciter.com/forums/topic/animated-gifs/</a> and other test cases.</li>
<li>[osx] isMaximizable fix.</li>
<li>[samples] fix of color-chooser sample;</li>
<li>[osx] fix of colour space handling of RGB/RGBA colors;</li>
<li>[layout] fix of text-align:center with display:inline-block's inside.</li>
<li>[osx] fix, closing owning popups while closing popup window;</li>
<li>[samples] mvc.tis fix;</li>
<li>More safe Behavior.detached() handling;</li>
<li>[tiscript] fix of AV when namespace is set to undefined. Does not happen in normal circumstances but still;</li>
<li>[+formation] fix, see: <a href="http://sciter.com/forums/topic/radiogroup-in-formation-is-broken">http://sciter.com/forums/topic/radiogroup-in-formation-is-broken/</a></li>
<li>[osx] fix of child NSView replacement.</li>
<li>[sample] grid sample fix: sdk/samples/ideas/grid/grid.tis;</li>
<li>[DOM, API] SciterSetElementText sets raw text, but not value;</li>
<li>[css,layout] CSS fix of line-height in percents for large font sizes;</li>
<li>[osx] fix of blocking view.doEvent(#all);</li>
<li>[css] fix of negative lengths handling;</li>
<li>[osx] ellipsis rendering fix;</li>
<li>[osx] view / "statechange" event generation fix when window gets minimized;</li>
<li>[tiscript, regression] object equality fix ( operator == );</li>
<li>[gtk] fix of debug output formatting;</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.0.7</td>
<td nowrap valign="top" align="center">15-11-2015</td>
<td>
<p>new features:</p>
<ul>
<li>Support of <code>Element.on("mouseidle", ...)</code> and <code>Element.on("mousetick", ...)</code> events;</li>
<li>[inspector] code snippets, support of recent code entries;</li>
<li>[script] <code>object1 == object2</code> in script uses deep, per property comparison now;<br/>So <code>{a:1} == {a:1}</code> is <code>true</code> in TIScript but <br/>in JS <code>{a:1} == {a:1}</code> is <code>false</code>.<br/>NOTE: this can be a breaking change if your scripts use <code>==</code> operator for object comparision.</li>
<li>[packfolder] support of -csharp mode - generates C# class with a byte[] field literal.</li>
<li>[windows, Middle East] Support of WS_EX_LAYOUTRTL windows - Middle East, RTL. Window created with WS_EX_LAYOUTRTL gets direction:rtl intrinsic styling (as if <html dir=rtl> is defined);</li>
<li>[DOM] <code>element.state.expanded = undefined;</code> - clears <code>state.expanded</code> and <code>state.collapsed</code></li>
<li>[xdom] <code>Element.style.cursor(img, hotspotX, hotspotY )</code> - set/reset custom cursor created from bitmap.</li>
<li>[CSS] <strong>vw</strong>/<strong>vh</strong>/<strong>vmin</strong>/<strong>vmax</strong> length units, <code>1vw = 1% * view.width</code>, <code>1vh = 1% * view.height</code></li>
<li>[CSS,layout] <code>height:width(50%)</code> feature is back - allows to define elements with fixed width/height ratio.</li>
<li>[OSX] custom cursor support;</li>
<li>[new sample] samples/ideas/ide/ - IDE mockup inspired by Brackets;</li>
<li>[new sample] sdk/samples/graphics/frosted-glass-effect.htm</li></ul>
<p>fixes:</p>
<ul>
<li>[osx] uminimal demo fix</li>
<li>[layout, table] fix of <table> with flow:table-fixed; layout calculation, see: <a href="http://sciter.com/forums/topic/behaviorcolumn-resizer-bug">http://sciter.com/forums/topic/behaviorcolumn-resizer-bug/</a></li>
<li>[critical,view.eventsRoot] Fix of AV while view.eventsRoot is set. See: <a href="http://sciter.com/forums/topic/lightbox-dialog-tis-throws-c-exception">http://sciter.com/forums/topic/lightbox-dialog-tis-throws-c-exception/</a></li>
<li>[win] fix of view.dialog{ x,y } handling.</li>
<li>[inspector] handling recursive data structures. See: http://rsdn.ru/forum/htmlayout/6240245.1</li>
<li>[script] String.urlEscape() fix;</li>
<li>[svg] fix of small SVG image handling (less than 256 bytes)</li>
<li>[http client] view.request(), fix of username/password inline handling in URLs like https://un:[email protected]/</li>
<li>[inspector] fix of element details refresh issue.</li>
<li>[osx] more reliable mouse click out of popup handling.</li>
<li>[osx] modal windows fixes.</li>
<li>[critical] fix of overflow:auto handling on root element. Note native scroll bar on root document has been disabled by default;</li>
<li>[tiscript] fix of object literal parsing when they contain virtual properties like:
<pre>var ee = {
"length"; : 12 // used to be "read-only property length" error here
};
</pre></li>
<li>Selection.clearMark(,,"mark-name") fix.</li>
<li>[osx] proper text caret positions and more precise glyph positioning in texts</li>
<li>[rendering] fix of text run background rendering.</li>
<li>fix of "Element.move() is closing sibling popups" issue.</li>
<li>[Windows] better handling of characters with code > 0xFFFF; on Windows XP;</li>
<li>[css] fix of filter: drop-shadow(radius);</li>
<li>[fix] of animation and window refresh handling on hidden/collapsed window.</li>
<li>[script] fix of erroneous assert handling. See: http://sciter.com/forums/topic/lexer-bug/</li>
<li>fix of AV related to handling popups in containers controlled by behavior:sticky-scroll.</li>
<li>view.dialog { client: ... } fix.</li>
<li>ValueSetValueToKey - relaxed key type requirement. Key were limited by only strings. Now it could be any type.</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.0.6</td>
<td nowrap valign="top" align="center">09-10-2015</td>
<td>
<p>new features:</p>
<ul>
<li>[win] view.window { client:true | false; } - parameter describes how position/dimension is treated;</li>
<li>Graphics.Text.width() -> (widthMax,widthMin,boxWidth)</li>
<li>view.request {} - it can be used now to get non-http resources too.</li>
<li>[script] fix of multi-return value list when function calls used in lists: <code>return ( a(), b(), c() );</code></li>
<li>+ [http, view.request] new parameter output that defines interpretation and data format of received data. If provided forces data to be reported as instance of String, Stream, Bytes or any value of parsed JSON:</li>
<pre>view.request {<br/> ...<br/> output : symbol, one of #string | #stream | #bytes | #json. <br/>}
</pre>
<li>+ support of loading content of .zip files. application or its part can be packaged into zip file with index/main.htm file sitting in archive root. Such zip file may contain arbitrary content: other htmls, scripts, css, images</li>
<li>Enabling Element.move() on table rows;</li>
<li>+ [css] <strong>tab-size</strong> property support in <pre>, <plaintext> and other elements with white-space:pre;</li>
<li>implementation of sciter::fragmented_video_destination - used by custom <video> output for scenarios like remote desktop partial updates; </li>
<li>+ view.isMinimizable, view.isMaximizable flags and switches.</li>
<li>+ carousel sample, see: /samples/carousel/</li>
<li>Drag-n-drop update (ddm.tis);</li>
<li>USE_DX_ON_LAYERED flag is disabled by default. Engine will not try to use DirectX on layered windows. Too many broken drivers in the wild :(</li></ul>
<li>fixes:</li>
<ul>
<li>[pager] fix of relayout issue with document loaded in the same template.</li>
<li>CRITICAL: fix of <table> <tbody> layout handling when <tbody> uses flex dimensions.</li>
<li>Fix of <a><img></a> handling.</li>
<li>Fix of 1px off in initial window size calculations by view.window {...} function</li>
<li>[win] better, less expensive WM_SIZE handling;</li>
<li>[inspector] fix of source hyperlink handling in script log;</li>
<li>fix view.request{} error callback generation for unknown URLs;</li>
<li>fix of sdk/widgets/tabs/tabs.tis behavior, compatibility with behavior:label;</li>
<li>behavior:label adjustments, better mouse handling.</li>
<li>[layout] flow:grid|row, fix of display:inline-block max-width handling;</li>
<li>[richtext] behavior:htmlarea, better handling of empty element state;</li>
<li>[richtext] behavior:htmlarea fixes;</li>
<li>Selection.clearMark() fix.</li>
<li>[osx] view.selectFile() fix for OS X 10.7 and 10.8</li>
<li>[CSS,layout/text] fix of one px off when line-height is used.</li>
<li>fix of mouse hover handling while closing popup windows.</li>
<li>[apng] fix of dispose_mode == restore handling.</li>
<li>[communication, http] fix of AV in progress callbacks processing;</li>
<li>[layout] fix of table row box calculation for visibility:hidden rows;</li>
<li>fix, drawing optimization of large documents;</li>
<li>[usciter] project update;</li>
<li>[GC, BrokenHeart] fix of the issue related to handling element.value = ... assignment.</li>
<li>[behavior:clickable] fix of right mouse click handling;</li>
<li>[layout] fix of positioning of popup originated from flow:vertical-wrap containers;</li>
<li>[VM] Fix of "Broken heart" issue in presence of inspector;</li>
<li>[clipboard, copy] fix of "last character missed from selection" ;</li>
<li>[behavior:richtext] fix of html copy/paste, yet some insert HTML operations;</li>
<li>Fix of potential AV on MOUSE_HOVER;</li>
<li>[win] view.window { type: FRAME_WINDOW } , fix of taskbar appearance;</li>
<li>[win] fix of mouse capturing by scrollbar.</li>
<li>[osx] fix of "replacement-start/end" event generation, patch from StartMeeting team.</li>
<li>[DataSocket] fix of packet length transmission, see: <a href="http://www.terrainformatica.com/forum/read.php?4,2488,2811">http://www.terrainformatica.com/forum/read.php?4,2488,2811</a> discussion;</li>
<li>[layout] fix of document position calculation (documents in frames);</li>
<li>[osx] AV in http client when server does not provide content-type;</li>
<li>[osx] fix of potential AV;</li>
<li>[css,layout] fix of anonymous text block floating;</li></ul>
<p>Builds: win32, win64, 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"><strong>3.3.0.5</strong></td>
<td nowrap valign="top" align="center">08-09-2015</td>
<td>
<ul>
<li>new features:</li>
<ul>
<li>[css] new properties:<strong>background-image-frame:N</strong> and <strong>foreground-image-frame</strong>:<strong>N</strong><br/>if defined shows frame #N (freezes animation at frame N) on APNG or GIF images. That is animateable property, check : sdk/samples/animated-png/animated-frame.htm sample. Primary use cases:</li>
<ul>
<li>APNG image as a collection of sprites - alternative to image map.</li>
<li>:hover or other state transition animations.</li></ul></ul>
<li>fixes:</li>
<ul>
<li>fix of scrollbar positioning in overflow-y:auto on <tbody> - scrollable tables case.</li>
<li>fix of view.isTopmost = true; handling on Windows.</li>
<li>[inspector] fixes of evaluation environment ( enabling correct self and $ references ).</li>
<li>[inspector] fixes of build settings.</li></ul></ul>
<p>Builds: win32, win64, 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"><strong>3.3.0.4</strong></td>
<td nowrap valign="top" align="center">30-08-2015</td>
<td>
<ul>
<li>inspector evolution:</li>
<ul>
<li>more reliable log messages delivery: log panel is made global so messages from closed views are not lost.</li>
<li>sciter.exe - on "DOM inspector" button click it starts inspector.exe automatically if it is not running already.</li></ul>
<li>new features:</li>
<ul>
<li>CSS: ::mark(...) pseudo-element - styling of text runs without changin DOM structure.</li>
<li>Tokenizer object, lightweight markup and source code parser that accepts text loaded into <pre>,<plaintext>, <textarea> as input sources. <br/>See: <a href="http://www.terrainformatica.com/2015/08/mark-feature-is-comming">http://www.terrainformatica.com/2015/08/mark-feature-is-comming</a> and <a href="http://www.terrainformatica.com/2015/08/tokenizer-mark-syntax-colorizer">http://www.terrainformatica.com/2015/08/tokenizer-mark-syntax-colorizer</a> and Tokenizer class documentation.</li>
<li>/sdk/samples/+colorizer/ micro library. Does syntax highlighting in <pre> and <plaintext> according to <em>type</em> attribute. Samples there demonstrate as static as dynamic colorization.</li></ul>
<li>fixes:</li>
<ul>
<li>fix of possible AV in elements having ::before defined in CSS.</li>
<li>debug-peer.tis troubles with msgbox pileup.</li>
<li>[DOM/script] fix of self#some-id element accessor for the cases when the page contains frames.</li>
<li>fix of AV in new Image(...) when incorrect parameters provided.</li>
<li><img> and <picture> elements, image rendering obey border-radius.</li>
<li>fix of caret rendering when background:none.</li>
<li>[apng] fix of AV on erroneous aPNG structure (frames with zero dim).</li>
<li>fix of references in public headers (C) etc.</li>
<li>[apng] fix of first animation round.</li>
<li>view.request() responses served with text/javascript mime type are treated as text.</li>
<li>support of 'maxlength' and 'filter' attributes in:</li>
<ul>
<li><input|integer></li>
<li><input|decimal></li>
<li><input|number></li></ul>
<li>GDI+ fix of custom markers handling.</li>
<li>fix of value returned by <input|time>. It returns now current date with time portion set from the input.</li>
<li>[osx,linux] fix of local time offset calculation in Date.</li>
<li>[tiscript] fix of multi-return statements evaluations.</li>
<li>[win, layered] enabling ID2D1DeviceContext operations on layered windows.</li>
<li>fix of transparent popup elements rendering.</li>
<li>MOUSE_ENTER/LEAVE for popup elements. Uses logical (visual) UI parent/child chain rather than parent/child chain.</li>
<li>fix of AV on attempt to fetch data from empty clipboard</li></ul></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"><strong>3.3.0.3</strong></td>
<td nowrap valign="top" align="center">14-08-2015</td>
<td>
<ul>
<li>inspector evolution:</li>
<ul>
<li>Element metrics (dimensions) panel;</li>
<li>Script eval input in log area - evaluation of scripts in context of current selected element;</li>
<li>Fix of connection error message box pileup.</li></ul>
<li>fixes:</li>
<ul>
<li>[css,layout] fix of AV in dynamic <code>::after </code>style change update, bug report: <a href="http://www.terrainformatica.com/forum/read.php?4,2467,2467">http://www.terrainformatica.com/forum/read.php?4,2467,2467</a></li>
<li><code><input|time></code> and <code>Date.toIsoString()</code> fix of dates that contains only times.</li>
<li>menu and popup elements. fix of window activation issue, see: <a href="http://www.terrainformatica.com/forum/read.php?4,2486,2486">http://www.terrainformatica.com/forum/read.php?4,2486,2486</a></li>
<li>[script] fix of String.urlEscape();</li>
<li>[OSX] fixes in HTTP client implementation.</li>
<li>fix of display:table-body handling on not-yet-constructed DOMs.</li>
<li>[css] fix of rgba() parsing.</li>
<li>[GDI+/XP] shutdown cleaning fix when non-trivial list markers are used.</li>
<li>[windows, printing] fix of <code>@media print {}</code> setup. Fix of <code>page-break-before/after/avoid</code> handling.</li>
<li>behavior:file-icon update for non-existent entries.</li>
<li>Fix of AV in SciterLoadHtml().</li>
<li>Fix of SC_LOAD_DATA generation for "sciter:debug-peer.tis" resource.</li></ul>
<li>new features:</li>
<ul>
<li>[css] <code>list-style-type: tree-line;</code> is back and so <code><select|tree treelines></code>, see sdk/samples/forms/select-tree-treelines.htm and inspector's DOM tree view.</li>
<li>[windows] Direct2D v 1.1 support. If Direct2D v 1.1 is available it is used:</li>
<li>[css] <code>image-rendering: default | optimize-speed | optimize-quality;</code> - this CSS property allows to configure scaling algorithms used by the engine on particular elements.</li>
<li>[win][css] <code>filter</code> property support, see <a href="https://developer.mozilla.org/en/docs/Web/CSS/filter">https://developer.mozilla.org/en/docs/Web/CSS/filter</a> doc and sdk/samples/css3-filter samples.</li></ul></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"><strong>3.3.0.2</strong></td>
<td nowrap valign="top" align="center">03-08-2015</td>
<td>
<ul>
<ol></ol></ul>
<p>New <strong>inspector.exe</strong> - works on all supported platforms in localhost and remote mode. Supports multiplatform operation, for example inspector on Mac OSX and debugee on Linux. Check <a href="http://www.terrainformatica.com/index.php/2015/08/new-domscript-inspector-is-coming" rel="bookmark" style="color: rgb(61, 96, 114); text-decoration: none;">New DOM/script inspector is coming</a> article.</p>
<ul>
<li>[win] element.state.focus = true; calls ::SetForegroundWindow( sciterhwnd ); if it was not foreground.</li>
<li>DataSocket async connection fix.</li>
<li>[tiscript] better byte vectors handling.</li>
<li>[CSS] support of content:attr(name); construct in CSS 2.1 connotation: http://www.w3.org/TR/CSS21/generate.html#propdef-content</li>
<li>fix of DataSocket functionality.</li>
<li>sciter::element::call_function("ns.name"), final fix.</li>
<li>[windows] better animation FPS.</li>
<li>[script] view.logHandler = function(subsystem,severity,msg) {...} - allows to catch all stdout/err messages in script. The same feature as SciterSetupDebugOutput but in script.</li>
<li>+ VM.unhandledExceptionHandler = function(err) {...}</li>
<li>fix of unicode string reading from compiled sources, see: <a href="http://www.terrainformatica.com/forum/read.php?4,2369,2369">http://www.terrainformatica.com/forum/read.php?4,2369,2369</a></li>
<li>[osx, lin] Integer.toString(-100) fix</li>
<li>+ "hole dialog" sample, see /samples/dialogs+windows/test-dialog.htm</li></ul>
<p>Builds: win32, win64, 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"><strong>3.3.0.1</strong></td>
<td nowrap valign="top" align="center">18-07-2015</td>
<td>