Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/NEWS
blob: 1b00307332c266cfda21e21bc32d6820a95e2030 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
148

ENHANCEMENTS:
* Pen/color palette changes: pen operations on one palette, colors
  on a second palette
* Removed bug from all versions
* New snail icon
* Rabbit and snail change color to indicate run speed
* Clicking on a stack respects current run speed
* Turtle shape more directional
* New copy-button behavior:
   (1) Click on copy and the cursor changes to a hand pointer;
   (2) Click on any block or stack of blocks and that stack is
       briefly highlighted and copied to the clipboard;
   (3) The cursor is changed back to the standard cursor.

147

ENHANCEMENTS:
* New translations, including Aymara
* Improved pitch tracking

BUG_FIXES:
* Add flag to initialize palettes on startup (needed by some plugin palettes)
* Palette overflow (#3719)

146

ENHANCEMENTS:
* Add Tony Forster's simulation of math-galton-path.ta to sample programs
* Define general purpose chr and int blocks instead of special purpose
  chr(keyboard) and int(keyboard) blocks
* Highlight all blocks in selected stack
* Update label on Share Button to remind user to select blocks to share
* Move save snapshot button to main toolbar
* Add proto block to blocks palette for named actions
* Add proto box for blocks palette for named boxes
* Added more TRANS notes for i18n

BUG_FIXES:
* Fix bug with nested foerver/while/until (#3699)
* Clean up some strings on currency palettes
* Don't call plugin_stop() twice

145:

BUG_FIXES:
* Use different dispatch code for share (#3685)
* Rescale remote turtle labels (#3684)

144:

ENHANCEMENTS:
* New sample programs (Elver Puerta y Mercedes Vilca Castillo)
* New blocks for keyboard entry (como Raul Hugo)
* Added sharing for speak block
* Added sharing of selected stacks

BUG_FIXES:
* Hide status block when starting execution of blocks (#3682)
* Cleaned up some strings in taextras.py
* Remove flakey save_as_HTML feature

143

ENHANCEMENT:
* New translations, including Quechua

BUG_FIXES:
* More robust handling of xid when playing video
* Disabled canvas dragging on XO hardware (too slow)
* Fixed problem with labels on resistance blocks
* Fixed problem with loading plugins on some systems

142

ENHANCEMENT:
* Improved sensor calibration for XO 1.75 (Thanks to Tony Forster,
  Guzman Trindad, James Cameron, and John Watlington)
* Add media pause, resume, and stop

BUG_FIX:
* Properly offset video window when toolbars are opened/closed or
  window is in fullscreen mode

141

BUG FIXES:
* get_lower() and get_upper() are only available in PyGTK 2.14 and above
* Movies playback works properly (#3166, #3369)
* Don't drag canvas while program is running (interferes with mouse
  sensor blocks)

140

ENHANCEMENTS:
* New translations

BUG FIXES:
* Blank out coordinate display when data are invalid (#3599)
* Import CalledProcessError in audiograb.py

139

ENHANCEMENTS:
* Autohide blocks when running program from "Rabbit"
* Autoshow blocks on Stop or Error
* Move Show-Blocks button to Stop-Turtle button on main toolbar
* Add --run flag to GNOME version for autorun on launch
* New plugin strings
* New translations
(with help from Alan Jhonn Aguiar Schwyn and Andres Aguirre)

BUG FIX:
* Fix spacing of GNOME toolbar
* Use black list instead of white list to specify when to not
  right-justify the Stop button (#3574).
* Expose white list for blocks that can take either string or numeric
  arguments
* Reset default background color on clean/erase
* Properly update turtle coordinates on View toolbar


138

ENHANCEMENTS:
* New translations
* Replace ambiguous Sensor palette icon with Sensor icon from Measure
* Renamed sample programs by genre, e.g., graphics, sensors, math, etc.
* Canvas can be dragged
* Add alerts after successful saves

BUG FIX:
* Added more robust sprite 'hit" detection (#3415)
* Force Cairo refresh after fill block (#3422)
* Refactoring of save to svg code to use Cairo surface (#3423, #3424)

137

ENHANCEMENTS:
* New help system inspired by Gonzalo Odiard's help in SimpleGraph 
  (includes end run around #2633)
* Force standard palettes to appear before plugin palettes
* New mechanism for loading plugins from the Journal (with help from
  Alan Jhonn Aguiar Schwyn)
* Toolbars too large to fit on the screen can be shifted
* Help, print, and status blocks expand to full width on wide screens
* New translations

BUG FIX:
* Fixed palette initialization problem for plugins using hidden blocks
* Fixed typo (#3330) in help string for NXT plugin
* Reverted some syntax changes to support old XO images still using Python 2.5
* Catch AttributeError when palette refresh fails
* Replace deprecated class commands with subprocess
* Fixed turtle inverted-color problem (#3396)

136

ENHANCEMENTS:
* Add method to retrieve plugin instance (Alan Jhonn Aguiar Schwyn)
* New translations

BUG FIXES:
* Fixed regression in resistance sensor calibration for XO 1.75
* Fixed another problem with expanded compare blocks
* Fixed problem with disappearing blocks due to dragging over hidden palettes

135

ENHANCEMENTS:
* Changed mechanism for handling "hidden" blocks (used by some plugins)

BUG FIX:
* Restore currently selected palette after hide/show palette cycle

134

ENHANCEMENTS:
* Added method to change block color (used by some plugins)
* Added method to set the visibility of palette blocks (used by some plugins)

BUG FIX:
* Fixed typo inadvertently intoduced into plugin strings
* Fixed problem with boolean and compare blocks not expanding properly

133

ENHANCEMENTS:
* New translations
* Added strings used by WeDo plugin
* Added True and False blocks to Numbers palette (only for large screens)
* Added is heap empty block?
* Added support for polynomial objects in math libraries
  (used by nutrition plugin)

132

BUG FIX:
* Fixed problem with exporting of Logo code introduced in v131
* Capture "special blocks" in used block list
* Fixed typo in local variables causing voltage sensing to fail with
  XO 1.75 (#3297)
* Changed light-sensor power_state (deprecated) to level in python
  sample code (OLPC #11485)

131

ENHANCEMENTS:
* Internalized While and Until blocks (no longer macro expansions)
* Simplified keyboard input macro (uses until block)
* Some consolidation of toolbars on smaller displays
* New data-graphing example from ClaudiaU
* New strings for Butia, Follow Me, and Sumo plugins

TOUCH ENHANCEMENTS:
* Added on-screen adjusters for numeric blocks
* Added a mouse-motion threshold for differentiating between a click and a
  drag motion

BUG FIXES:
 * While and Until blocks continue program flow after exiting
 * Until block executes once before test
 * Changed light-sensor power_state (deprecated) to level
 * Switched to panel for Save/Load buttons so that they'd all fit on
   smaller screens

Thanks to Alan Jhonn Aguiar Schwyn for testing many of these changes

130

ENHANCEMENTS:
* Add support for stereo sensor input on XO1.5, XO1.75 hardware
* New translations
* New example program: soundpaint.ta

BUG FIXES:
* More robust initialization of sensors (#552)
* Work around for problem with Journal preview image
* Clean up temporary files left from various export functions
* Fixed layout issue with embedded images in .svg exports
* Fixed regression bug in HTML export

129

ENHANCEMENTS:
* Repositioned labels on if-then-else blocks
* Reskinned turtles now rotate to all angles
* New translations (.aym, .quz, .fr, .da)

128

BUG FIXES:
* Fixed logic error preventing camera capture of multiple frames
* Fixed problem with camera autogain (#2651)
* Don't zoom text in alert blocks (#3175)

Note: Still working on  #2624, repeated show camera fails after awhile

127

ENHANCEMENTS:
* Changed mouse click block to mouse-button down block
* Improved camera plugin: writing directly to a pixbuf

BUG FIXES:
* Fixed problem with missing help strings on XO hardware

126

ENHANCEMENTS
* Added speak block to media palette
* Added sinewave block to media palette
* Added mouse x, y, and click blocks to sensor palette
* Added plugin support for clear method attached to clean block and
  Erase button.

125

BUG FIXES:
Alan Jhonn Aguiar Schwyn uncovered some bugs: some old, some new.
* get_pixel failed on some old Sugar system (fixed with patch from cscott)
* typo in quit_plugin method
* typo in coordinate-rescale callback

124

BUG FIX:
* Fixed problem with overlay grids

123

ENHANCEMENTS
* Using Cairo graphics (#1203)
 - antialiasing
 - rotation of text and images
 - filled arcs

NOTE
* For performance reasons, the coordinate grids are now drawn directly
  onto the turtle canvas. This has two consequences: (1) the grids cannot
  be erased except by erasing the entire screen; and (2) the turtle can
  draw on top of the grid.

BUG FIXES:
* Export as Physics project (#3113) available as a plugin
* i18n enhancement (#3215) consistent use of strings
* Enable delete key on HS keyboard (#3052)

122

ENHANCEMENTS
* New translations

BUG FIX
* Allow pysample/*py files to be loaded into projects from Sugar
* Catch value error in string comparisons with Boolean blocks
* Added missing sugar.datastore imports

121

ENHANCEMENTS
* More consistent block labeling (#3215)

120

BUG FIX
* Removed debugging call that caused "doubling" of arcs #3214

119

ENHANCEMENTS
* Save list of blocks used as a searchable tag in the Journal

BUG FIXES
* Fixed type error introduced to arc commands by patch to address #3164


118

ENHANCEMENTS
* New translations

117

ENHANCEMENTS
* Palettes float while scrolling the canvas so that they are always at
  hand (#3011)
* Added labels for neg. angles to polar coordinate overlay (#2650)
* Enabled Delete key when present (#3052)
* Added sensor.py example to pysamples (#3059)
* New translations

BUG FIXES
* Fixed problem with palette selection on old-style toolbars and GNOME
  version (#3094)
* Reverted patch to address #2633 since it caused Help label to disappear on
  XO 1.75 machines
* Accounted for block overlap in Python load_block.py (#3115)
* Fixed problem with launching in GNOME (#3133)
* Added missing comments to Python block code (#3159)
* Removed misleading tail on remote turtle labels (#3164)
* Fixed rounding error in positioning remote turtles (#3163)
* Consolidated turtle movements to prevent network overload when sharing
  (#3162)

116

ENHANCEMENTS
* New translations

BUG FIX
* Fixed problem with generation of i18n strings

115

ENHANCEMENTS
* Support for light sensor on XO 1.75 hardware
* New translations

BUG FIXES
* Returning float values from sensors as per OLPC #11166

114

ENHANCEMENTS
* Toolbar cleanup to be consistent with new design-team guidelines
* Support for accelerometer on XO 1.75 hardware

BUG FIXES
* Fixed race-condition that sometimes prevented turtle art from
  launching (#3044)

113

ENHANCEMENTS
* Enabled scaling of box-style-media (used to improve the display of
  currency with currency plug-in)
  See http://wiki.sugarlabs.org/go/Activities/TurtleArt#currency
* Update to mn translations

BUG FIXES
* Re-enabled initial setting of a default Palette Toolbar
 (accidentally removed in Version 111 when fixing keyboard acceleration
 problem #2986)
* Fixed problem with scaling some blocks with image overlays

112

ENHANCEMENTS
* Updates to German (DE) and Dutch (NL) translations
* Clean up of block "skin" code to better accomodate plugins
* New currency plugin available in wiki

111

ENHANCEMENTS
* New sample program: urban_landscapes.ta
* New sample program: fractions.ta
* New python block example for csound
* Translation updates for .de

BUG FIXES
* Reverted default action name to 'action' instead of 'stack'
* Reverted accelerator-key work-around (#2050) in light of #2986

110

BUG FIX
* Fixed regression problem with brightness block

109

ENHANCEMENTS

* CM coordinate grid overlay (XO hardware only)

BUG FIXES
* Restored missing localization files
* Only initialize camera if camera block is being used
* Suppress unnecessary debug output from talogo
* Fix hardware detection on some old builds

108

ENHANCEMENTS

* vspace, hspace run stack on mouse click (#2790)
* added clear all button to Trash Palette
* added language support to speak.py sample code
* added 'scratch' and 'hoops' examples

BUG FIXES

* Save to SVG was not working for setxy
* Save to SVG was not working for fill
* Save to SVG was broken for arc

107

ENHANCEMENTS

* Refactoring of block and palette generation to use the plugin
  classes for all blocks. (The goal is to make it easier for end-user
  modifications.)
* Added the ability to add new blocks on the fly (See uturn.py example)
* Added basic-style-3arg block (used by NXT plugin)
* Moved plugin libraries to ./plugins
* Shared turtles are updated after mouse drag (#2687)
* Shared turtles cannot be repositioned remotely (#2687)
* Shared turtles have labels
* Turtles are synchronized when joining share (#2687)
* Comments on usage included in the Python sample code (#2709)
* Using standard Sugar icons for colors and camera
* Refactoring of export Logo code to enable plugins to define new functions
* Value blocks updated properly on first appearance
* Reduced the header size in Python sample code for easier reading (#2748)
* Extend clearscreen to entire canvas (#2745)
* Cleaned up some issues with .es translations (Guzman Trinidad)
* More robust handling of broken projects and unknown block types
* Added hidden blocks when plugin devices are unavailable
* Added new Python example for recording audio

BUG FIXES

* Fixed regression with help messages when running Sugar 0.84 (#2676)
* Fixed problem with selected turtle reverting back to default turtle (#2687)
* Fixed problem with camera block graphic in trash (#2678)
* Fixed regression with camera_plugin after refactoring (#2689)
* Fixed problem with saving/loading extra turtles when nick changes (#2441)
* Fixed problem with displaying large FILO heap (#2751)
* Fixed a problem with tags causing malformed HTML export
* Fixed problem with first sample when using sensors
* Fixed problem with method-name conflict with gtk.widget

PYTHON CODE CHANGE

* Userdefined code gets TurtleWindow instance rather than LogoCode
  instance as first argument. This change was made in order to better
  accommodate and better parallel the new plugin mechanism. Most
  likely, you had been referencing tw, the TurtleWindow instance from
  lc, the LogoCode instance, e.g., lc.tw. Now you can reference tw
  directly, e.g., tw. To reference lc, use tw.lc. Under most
  circumstances, Turtle Art will detect when myblock is looking for lc
  rather than tw and it will pass the correct argument.

106

ENHANCEMENTS

* Added sharing to draw_text, fill_polygon, draw_pixbuf (#2461)
* Added sharing (EXPERIMENTAL) between Gnome and Sugar versions (with Raul
  Gutierrez Segales)
* Added 'time' block for measuring elapsed time (in seconds)
* Added 'brightness' block for reading average camera luminance value
  (with help from Tony Forster and Guzman Trinidad)
* Added camera media block for grabbing images from the camera
* New speak.py sample code for doing text to speech (Tony Forster)
* New load_block.py sample code for programatically creating TA projects
* New psuedo-color.ta example (Tony Forster)
* New love-speaks-volumes.ta example -- use mic input to scale shapes
* New spiralaterals.ta example inspired by Spiralaterals activity
* Added a Media Palette for all media-related blocks and reorganized palettes
  (#2633) for more clarity (Claudia Urrea and Bill Kerr)
* Added offset for second argument in Boolean compare blocks
* More complete translations in Spanish (es) and Italian (it)
* Added plugin support for non-standard devices (camera, sensors, RFID)

BUG FIXES

* Exposed see as an external method (#2542)
* Media type tests on file suffix use lower()
* Added support for localization to GNOME version (Raul Gutierrez Segales)
* Work around for situations where gst is not available
* Fixed problem with displaying Journal preview images in portfolio
* Restore overlay grids on clear
* Fixed problem with help-string wrap width (#2633)
* Added missing dependency to RFID plugin (Emiliano Pastorino)

105

BUG FIXES

* Fixed problem with coordinate overlay mislabelling when rescaling coordinates
* Fixed overflow problem causing Turtle Art to crash after ~50 minutes (#2489)
* Fixed regression with turtle display during Wait
* Display heap with ellipsis to avoid illegible display (#2268)
* New block-highlight scheme (#1709) (with help from Rodrigo Arboleda)

ENHANCEMENTS

* Added support for RFID tag reader (with help from Emiliano Pastorino)
* Added 'Media Wait' block to pause turtle while media is playing

104

BUG FIXES

* Refactoring of audio/video code based on Jukebox (#1613)
* Catch depreciated format during project load (#2501, #2447)
* Reorganized some palettes (flow, portfolio) to fit smaller screen sizes
* Map mouse coordinates to screen coordinates (#2502)
* Also closed #2490, #2475, #2449, and #1057

ENHANCEMENTS

* Sample Python code stored in individual files
* New sample Python code (#548): (copy/paste heap to/from clipboard
  and to/from Journal)
* Sensor calibration for XO 1.5 hardware (Tony Forster)
* Text-only support for RTF files (#893)
* Block at bottom of stack is hidden when stack is 'collapsed' (#2506)
* Palette hides on repeat click of selector (#2505)
* Elimination of redundant Hide Palette button (#2505)
* Spanish translation of new blocks

103

* sensor palette: sound, volume, pitch, resistance, voltage
* menu cleanup: samples on import/export toolbar
* error message when trying to mix and match incompatible blocks
* new DE translations

102

* fixed bug with refactoring of depreciated setxy block

101

* set text color to foreground color (#2448)
* more resilience to bad block descriptions (#2447)
* fixed typo in Python sample code (#2449)
* only allow one start block per project
* show box values on box label
* moved import/export functions off activity toolbar onto journal toolbar
* new DE translations

100

* fixed problem with turtle reskin when scale <= 1 (#2353)
* fixed problems with keyboard commands (#2426)
* documented keyboard shortcuts (Thanks to Tony Forster) See
      http://wiki.sugarlabs.org/go/Activities/TurtleArt#Keyboard_shortcuts
* view source shows project code instead of Logo code (#2204)
* project code has improved formatting for readability (#2204)
* chooser limits choices appropriately, e.g., when looking for Python code,
  it only shows you .py files.
* fixed math Name error problem with imported Python code (#2313)

99

* reskinable turtle (#2353)
* setxy honors pen up/pen down (#2358)
* updated Tamil, Spanish (#2359), and German translations
* expandable two-argument blocks (#2330, #2336)
* updated samples to take advantage of #2330 and removed extra turtles
* removed import numpy to fix #2313 and #2314
* fixed rounding error that prevented max value from being returned by
  random (#2380)
* added locale support for decimal_point rendering

98

* fixed palette selection bug introduced by alpha-value checking

97

* recenter default turtle when dragged onto palette
* removed comment label from collapsible stacks
* made font smaller on the bottom-of-collapsible-stack block (#2305)
* rgs fixed resume problem in GNOME version (#2293)
* checking alpha value to block 'hit' detection (fixes problem with
  selecting the wrong block when blocks wrap around each other).
* trap and display math errors in Python block (#2313)

96

* fixed deleted-turtle ghost bug

95

* some performance enhancements (block creation and stack dragging)
* removed depreciated field from desktop file (Luke Farone)
* fixed problem with setup.py in non-Sugar environments (Luke Farone)
* new example program for turtle sees block
* fixed broken clock example
* catch import error for upload (#2194)
* rescaling of read pixel values (#2188)
* turtle sees block takes into account gray and shade (#2188)
* hide extra turtles on clean (#2191)
* hide coordinate overlays on clean (#2191)
* reset scale, gray on clean (#2191)
* work-around to c-c/c-v toolbar bug (Raul Gutierrez #2050)
* writing config file in config directory (Luke Farone #2193)
* using turtle name to generate color for multiple turtles
* delete turtle when dragged onto the palette (#2191)

94

* added "turtle sees" block
* added read_pixel block
* updated sample images (smaller file sizes)
* updated license for sample images
* updated nl translation
* fixed path problem with Exec in desktop file (Matthew Gallagher)
* fixed path problem with icon in turtleart.py (Matthew Gallagher)
* moved modules to TurtleArt subdirectory
* limit size of upload file (Jamie Boisture)

93

* recenter overlays when window resizes (Jamie Boisture)
* added icon for Desktop mode (Jamie Boisture)
* support for project upload to server for Desktop mode (Jamie Boisture)

92

* fixed sharing bug introduced in v91
* cleaned up cmdline processing

91

* added black and white blocks
* fixed cgi escape bug (#1854)
* fixed bug with overzealous block resizing (#2092)
* speed up of refresh code (expose_cb handling)

90

* fixed problem with keyboard accelerators: Ctrl-C, Ctrl-V, and Alt-Return

89

* added non-interactive mode (with help from Jamie Boisture)
* fix problem with icon in F13
* block scale saved between sessions

88

* alsroot fixed ObjectChooser bug (#2002)

87

* added fill block
* added gray block
* fixed typo in sample code
* added mouse support to sample code (See
  http://tonyforster.blogspot.com/2010/03/mouse-support-in-turtleart.html)

86

* More .es updates

85

* Fixed bug loading floating point numbers from saved projects
* 'store in box' accepts strings and numbers as labels
* New .es translations

84

* merge with mainline

83

* added new user-interface features
 o support for multiple turtles
 o expandable blocks
 o collapsible stacks
 o runtime block highlighting
 o error highlighting
 o trash palette (with restore)
 o palette better integrated into Sugar toolbar
 o variable-length string blocks
 o editable string blocks
 o paste text from Sugar clipboard to string blocks
 o new prefix boolean logic
 o showblock to compliment hideblock
 o fullscreen block
 o Cartesian and polar coordinate blocks
 o color blocks
 o editable macros (used for presentation blocks)
 o labels on coordinate-grid overlays
 o more complete support in non-Sugar environments
 o new (and improved) sample code
 o Logo code for project added to View Source
 o save SVG block lets you generate SVG with Turtle Art
 o improved export-to-HTML logic
 o new translations
 o multi-variable in-line Python-code blocks
 o traceback for checking errors in in-line Python code

* completed a major refactoring of the code
 o download bundle-size is only 40% of previous versions
 o faster first-time launch
 o greatly simplified i18n maintenance
 o easier to extend with new blocks and palettes 

82

* minor updates to Spanish translations

81

* fixed keyboard input bug introduced in v79

80

* new Finnish translations

79

* backspace enabled when entering numbers
* arbitrarily long numeric strings enabled
* fixed Python error in sample code
* clean up of en artwork
* fix bug in load_image
* detecting XO 1.5 hardware for font-scaling problem
* keyboard and gamepad navigation
* expanded hover help
* better logic for block selection used by copy/paste

78

* new artwork for pen palette
* color blocks

77

* hide status block on start up
* save reference to Python code loaded from the Journal

76

* fixed import error in project
* fixed bullets in exporthtml
* added proper scaling for coordinate blocks
* moved status layer forward

75

* Cartesian coordinates overlay
* polar coordinates overlay
* coordinate display on View Toolbar
* Option to rescale coordinate system to 100x100 on View Toolbar
* Reordered the palettes (moved misc. down)

74

* load start block for new projects
* fixed bug with reloading descriptions from Journal
* added hover help to command line version
* initiate the import Python chooser when Python block is clicked
* saving pastable code to html export
* fixed some problems in export to HTML code

73

* raise status flag when catching overflow error
* clean up of de, it, fr, es artwork
* fixed bug related to blocks running off the left edge
* cleaned up command-line code

72

* cleaned up code for pre-0.86 palettes
* fixed keyboard shortcut bug in pre-0.86 palettes
* fixed problem with int(None) in unselect
* fixed problem with int(float) in unselect
* fixed fence-post problem with searching off the end of blocks
* work-around Rainbow problem with tmpfile

71

* updated fr translations
* more sample Python code
* limiting abs(number) to max of 1000000 to prevent OverflowErrors

70

* new translations/artwork for vi, it, fr
* added linewrap to help label (with rgs)
* added label to Help toolbar (to work around bug with small displays)
* caught some exceptions that prevented TA from running outside of Sugar
* fixed bug preventing simple save to HTML for pre-086 systems
* added missing icon for Save from Journal

69

* chmod +x svg factory
* added missing import gettext from talogo.py
* renamed xo-man to xo-child
* caught missing attribute when running from outside of Sugar
* new translations/artwork for de, fr, es, it
* added translator comments
* fixed several bugs in export to Logo code

68

* made case consistent on tool tips
* fixed bug re i18n in debug panel
* new artwork for es and fr
* fixed some problems with svg factory
* fixed bug in Export HTML
* fixed naming problem with all save_as functions
* fixed bug in Export Logo in regard to start block

67

* added mime-type icon
* changed keyboard shortcuts to use Ctrl instead of Alt as per guidelines
* fixed bug re wait time (now in seconds)
* fixed problem with fractional wait times
* fixed i18n problem with labels in hover help
* reorganization of extras palette
* fixed problem of empty file with "Save as HTML" (saving screen capture)

66

* fixed bug preventing launch on (0.82-0.84)
* work around Rainbow problem with Save as image
* fixed bug re activate Stop Button on launch (thanks to rgs)
* added open from journal button (with rgs)
* fixed bug re Erase Button (hides status blocks)
* cleaned up some broken sample code

65

* fixed problem with View Toolbar
* moved Samples button to Help Toolbar

64

* major refactoring for new toolbar design
* stop sign turns off after execution is finished
* added preliminary support for mg and ta
* moved hover help to help toolbar
* adjusted artwork on Turtle palette

63

* more sample programs
* consolidated samples into one directory
* fixed mask bug that prevented palette hiding

62

* first pass at hover help support (thanks Raul)
* put samples button, keep button on project toolbar
* fixed journal icons associated with HTML, Python, Logo
* improved compatibility with old Sugar builds
* images centered under turtle
* text vertically centered under turtle
* pop blocks snap into boxes
* improved masks for fewer block-selection errors


61

* fixed es translation 
* fixed problem with save/load on old systems

60

* fixed sharing bug
* began work on 701 backward compatibility
* added more debugging code

59

* fixed leading bug for OLPC XO portfolio
* enabled box to hold strings and journal objects

58

* fixed unicode string compare in equal block
* fixed journal description bug introduced in v55
* fixed misaligned myfunc block problem


57

* lots of artwork clean up
* elimination of lock block
* more dead key clean ups
* truncated strings

56

* more dead key cleanup
* empty (undefined) box error message

55

* dead key workaround

54

* debug button
* no more decimals by default for print

53

* es updates

52

* first attempt at fixing the mimetypes
* default behavior of tamyblock.py is to draw a dotted line

51

* caught ISO_Level3_Shift problem on OLPC XO keyboard

50

* fixed some problems with taexportlogo
* cleaned up save/load icons
* print uses title for Journal objects
* cleaned up movie window destroy code
* more consistent template management internally
* support of a sort for show in taexporthtml

49

* fixed character input bug

48

* reworking of media blocks
* json cleanup

47

* image export
* pot update

46

* full screen mode
* scrolled window
* better support for running from the command line

45

* alt chars for keyboard shortcuts
* visual feedback for user-defined blocks when "loaded"

44

* adding user defineable block

43

* new de artwork

42

* removed unneeded Numeric dependencies

41

* end run around addons bug?

40

* improvements to it artwork

39

* improvements to nl and sv artwork

38

* improvements to de artwork

37

* adding de sl sv
* cleaned up SVGs

36

* added el, vi, zh_TW

35

* updated depreciated fields in activity.info
* added svg/*.py files to generate svgs from .po
* added nl

34

* added it; cleaned up fr; converted to cjson (with help from silbe)

33

* merge with TAPortfolio (and elimination of Sensor and myblock features)

32

* rebase on TAPortfolio code

31

* run and step

30

* fixed broken POT file

29

* new artwork, better i18n

28

* added push and pop (en only)

27

* add named boxes and stacks

26

* allow new blocks to be created by clicking in addition to drag and drop

25

* added sensor panel from TurtleArt with Sensors
* catch exceptions where DC Audio is not available (non-OLPC_XO-1 hardware) 

24

* add UCB logo export
* check for conditions where image cache needs refreshing

23

* caching images

22

* added POT file

21

* added ru
* fixed errors in fr and mn

20

* fixed translation problem with Spanish "poner en caja"
* PT translation
* height = toolbox.get_size()[1]
* setyx
* adding po files

19

* removed "sugar.activity import registry"

18

* Finnish
* SVG cleanup

17

* SVG support
* support for non-1200x900 displays

16

* Mongolian

15

* shebang patch

14

* Changed more file permissions (-x)
* Deleted some redundant files (stray myblockgroup.gif files)
* Add #!/usr/bin/env python to taturtle.py

13

* Added Turkish (tr) artwork
* Changed permissions on artwork (-x)

12

* Added sqrt function

11

* Rename activity from TurtleArt to Turtle Art (dlo trac #2663)
* Fix pen up in arc (dlo trac #7656)
* Point update url at a protected page.

10

* licensing information in activity.info (dlo trac #6340)
* new samples
* improved icon (dlo trac #6836)

9

* added french images
* fixed a few typos
* fixed divide by zero bug

8

* added license

7

* simple i18n

6

* Graphics changes

5

* Multi instance happy