forked from latexdraw/latexdraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.txt
1090 lines (930 loc) · 56.2 KB
/
history.txt
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
************************************************************
Version 4.0.2 -- 2020-10-04
- improvement: better ctrl-scroll zooming (consider the pointer)
- fix: thumbnails creation did not work on MacOSX
- fix: Text position ignored when loading a file
- fix: Zoom spinner not updated on file loading
- fix: Rounded rectangle not correctly rendered
- fix: setting the position of a shape manually did not work as expected
- fix: better resolution of the app icons
- fix: invalid tooltips
- fix issue with shortcuts on mac
- change: we removed the use of the shared templates folder
************************************************************
Version 4.0.1 -- 2020-04-13
- fix: the app does not start with a OS language not supported
- fix/change: instead of requiring the tool ImageMagick to convert pdd to png thumbnails,
the app now uses pdftoppm, which is provided by LaTeX distributions
- fix: export using LaTeX does not work on Windows
- fix: the LaTeX 'text position' had no graphical effect
- fix: issues in translation files
- fix: the app may not stop correctly
- fix: some actions do not work on start because of an configuration issue
- fix: Windows prevents parallel LaTeX compilations (this had an impact on the text rendering that may fail)
- translations updated
- no more export using pdfcrop as the exported pdf files should now be cropped natively
************************************************************
Version 4.0.0 -- 2020-03-28
- New: The user interface is now developed in JavaFX (instead of Swing):
- We completely redesigned the user interface.
- Better performances.
- To ease the selection, the cursor changes when moving the mouse over a shape with the hand.
- Can insert eps and pdf pictures ('convert' provided by ImageMagick is required).
- psrotate supported
- Fixed
- Multiple fixes in the SVG save/load
- Multiple fixes in the PSTricks save/load
Improvements:
- can scroll on a spinner to change its value.
- A better zoom animation.
Change:
- Some SVG arrow parameters, produced using a 3.x or older version, may not be loaded as expected
************************************************************
Version 3.3.7 -- 2017-11-19
fixed: crash at start-up using Java 9
fixed: pictures not correctly mirrored
fixed: control points not mirrored
************************************************************
Version 3.3.6 -- 2017-07-12
- fixed: the tooltip that shows LaTeX compilation errors while putting the cursor over a text shape may freeze the application.
Moreover, the displayed message was not correct.
- fixed: problem of encoding (MS950) not supported by the XML serialiser that prevented SVG files to be saved.
- fixed: arcs were not correctly drawn and saved as SVG on certain start/end angles.
- fixed: the installer cannot be run on some configurations (e.g. Fedora 25 with Wayland).
- fixed: the shape deletion is not re-activated when clicking the PST tab and the clicking the drawing tab back.
- fixed: the generated PSTricks may be incorrectly commented preventing the compilation
- fixed (usability): no message was displayed in the status bar to explain how to draw shapes.
- fixed (usability): better feedback on compilation errors during exports as PDF/PS documents.
************************************************************
Version 3.3.5 -- 2016-12-30
- fixed: latest versions of PSTricks break the cropping of text figures.
- fixed: various problems of axes rendering
- fixed: shapes were grouped after having loaded a drawing
- fixed: some attributes of axes were not saved in SVG documents
- fixed: colours were not generated when shapes are grouped
- fixed: incorrect message was displayed when an export failed
- improvement: the code insertion dialogue box provides better feedback on LaTeX errors
- improvement: buttons added to the error panel to clean the errors and send them by email
************************************************************
Version 3.3.4 -- 2016-09-17
Improvements:
- Instead of double-clicking on a text shape to change the text, you can use the F2 key (the text shape must be selected).
- Can click on the canvas to change text (before, you had to press 'enter')
- Can import cubic Bézier paths (as Bézier curves). The second control point, however, always equals the first one.
- A log is now created during the installation.
Bugs fixed:
- The preferences were not stored correctly on MacOSX El Capitan
- The look&feel was not correctly loaded on MacOSX El Capitan
- The backspace key can now be used to remove a shape, fixing the deletion problem on MacOSX El Capitan
- The use of the Fn key on Mac El Capitan blocked many keyboard shortcuts
https://bugs.launchpad.net/latexdraw/+bug/1618941
- The import LaTeX text window does not work on Mac El Capitan using the Mac OS X LnF
https://bugs.launchpad.net/latexdraw/+bug/1620059
- Copying PST code requires the ctrl+c shortcut instead of cmd+c on Mac
https://bugs.launchpad.net/latexdraw/+bug/1620328
- SVG Paths that start with a relative element are not correctly imported
https://bugs.launchpad.net/latexdraw/+bug/1604992
- Crash when loading an SVG document containing a 2-point path
https://bugs.launchpad.net/latexdraw/+bug/1604968
- Scaling shapes does not work outside the page
https://bugs.launchpad.net/latexdraw/+bug/1583116
- Borders of some rotated shapes not correctly updated when located outside the page
https://bugs.launchpad.net/latexdraw/+bug/1584487
- Copy/paste a plotted shape does not work as expected
https://bugs.launchpad.net/latexdraw/+bug/1580483
- Boundaries of a group of shapes not correctly computed when moved outside the page
https://bugs.launchpad.net/latexdraw/+bug/1582559
- Groups of shapes not always correctly loaded
https://bugs.launchpad.net/latexdraw/+bug/1583121
- Install scripts do not work on OpenSuse
https://bugs.launchpad.net/latexdraw/+bug/1584037
- Cannot import an SVG path where characters are stuck
https://bugs.launchpad.net/latexdraw/+bug/1605718
- CSS style not considered on some SVG attributes
https://bugs.launchpad.net/latexdraw/+bug/1606545
- Some icons of the toolbar did not have the same size
************************************************************
Version 3.3.3 -- 2016-05-01
Bugs fixed:
- Performance issue (lag) when the background grid is painted
https://bugs.launchpad.net/latexdraw/+bug/1576964
- The last working folder used to load/save documents is now considered in the open/save dialogue box
https://bugs.launchpad.net/latexdraw/+bug/1574741
- Grids' size not saved in SVG
https://bugs.launchpad.net/latexdraw/+bug/1574739
- Text cropped when exported as png
https://bugs.launchpad.net/latexdraw/+bug/1533256
- Template insertion is not undoable
https://bugs.launchpad.net/latexdraw/+bug/1533254
- The links to the forums and the bug tracker system have been fixed
https://bugs.launchpad.net/latexdraw/+bug/1533253
- Wrong error message when the /opt dir does not exist
https://bugs.launchpad.net/latexdraw/+bug/1577169
- Confusion in file naming after several save/save as/export operations
https://bugs.launchpad.net/latexdraw/+bug/1577176
************************************************************
Version 3.3.2 -- 2015-11-03
Bugs fixed:
- Issues when resizing some shapes
https://bugs.launchpad.net/latexdraw/+bug/1504095
- NPE crash when exporting shapes as a template
https://bugs.launchpad.net/latexdraw/+bug/1504098
- Crash while loading an SVG document
https://bugs.launchpad.net/latexdraw/+bug/1504437
- When importing a template, the document is not set as modified
https://bugs.launchpad.net/latexdraw/+bug/1504096
- Too long precision in arrowsize to be accepted by LaTeX
https://bugs.launchpad.net/latexdraw/+bug/1506727
- Tex binaries changed in the latest MacOsX version El Capitan
https://bugs.launchpad.net/latexdraw/+bug/1502655
- PS/PDF export does not work when a path contains a ~ character.
https://bugs.launchpad.net/latexdraw/+bug/1426749
- Including pictures should support spaces
https://bugs.launchpad.net/latexdraw/+bug/1396899
- The XML charset used to save SVG documents is always UTF-8
https://bugs.launchpad.net/latexdraw/+bug/1426877
- The path of the opened SVG file is not saved
https://bugs.launchpad.net/latexdraw/+bug/1426846
- Resolution of the exported rasterised pictures improved
************************************************************
Version 3.3.1 -- 2014-11-23
Bugs fixed:
- Plot figures not saved as SVG
https://bugs.launchpad.net/latexdraw/+bug/1393692
- Rotating plot figures does not work properly
https://bugs.launchpad.net/latexdraw/+bug/1393694
- Mirroring plot figures does not work properly
https://bugs.launchpad.net/latexdraw/+bug/1393695
- Cannot change the roundness of the rectangles' corners
https://bugs.launchpad.net/latexdraw/+bug/1395469
************************************************************
Version 3.3.0 -- 2014-11-03
New features:
- psplot is now supported (and can be imported from PSTricks code).
The parameters plotstyle, polarplot, and plotpoints are supported
- On Windows, a shortcut is now created in the start menu during the installation.
- Better integration in Linux environments (using the installer)
https://bugs.launchpad.net/latexdraw/+bug/1369488
- The commands pspicture and endpspicture are now supported when importing PSTricks code.
- Support of begin{pspicture} without any coordinate when importing PSTricks code.
Bugs fixed:
- ps2epsi should be used instead of ps2eps
https://bugs.launchpad.net/latexdraw/+bug/1369416
- Can hide grid's labels
https://bugs.launchpad.net/latexdraw/+bug/1279086
- Text shapes disappear when typing an invalid LaTeX text
https://bugs.launchpad.net/latexdraw/+bug/1382037
- The error message of the LaTeX compilation was no more displayed on mouse over a text shape that does not compile.
- Still have problem with the file name while saving a drawing.
https://bugs.launchpad.net/latexdraw/+bug/1369490
- Cannot parse psaxes with arrows
https://bugs.launchpad.net/latexdraw/+bug/1388145
- Text thumbnails might be the same for text shapes having the same text with a different colour.
- The position of thumbnails of coloured text shapes might not be correct.
- Dots may not be coloured as expected when exported as a PDF document.
- The size of the generated PDF/PS documents might not be correct (might have several pages or large margins).
- Axes were not correctly located when parsed.
************************************************************
Version 3.2.0 -- 2014-09-14
- Translations updated, Chinese (Simplified) and Sinhalese translations added
- fixed: Freeze when continuously pressing a key
https://bugs.launchpad.net/latexdraw/+bug/1293804
- fixed: Wrong selection of control points, points when interacting with shapes having a diff number of points
https://bugs.launchpad.net/latexdraw/+bug/1287687
- fixed: Wrong bounding box when creating a bezier curve with show points
https://bugs.launchpad.net/latexdraw/+bug/1284310
- fixed: Gradient shading feature is not read from SVG file
https://bugs.launchpad.net/latexdraw/+bug/1284297
- fixed: Changing the position using the spinners does not work
https://bugs.launchpad.net/latexdraw/+bug/1278045
- fixed: Should use ps2eps in the eps latex export
https://bugs.launchpad.net/latexdraw/+bug/711936
- fixed: copy-paste a Bezier curve always gives a "closed" one.
https://bugs.launchpad.net/latexdraw/+bug/1277542
- fixed: Text cursor moves while writting LaTeX packages
https://bugs.launchpad.net/latexdraw/+bug/1274875
- fixed: The parameter dotangle has no effect when parsed
https://bugs.launchpad.net/latexdraw/+bug/1318369
- fixed: An imported template is not a group of shapes
https://bugs.launchpad.net/latexdraw/+bug/1318648
- fixed: Unicode texts not painted correctly when not using the LaTeX thumbnail
https://bugs.launchpad.net/latexdraw/+bug/1338041
- fixed: URL not in the correct format when opening some files on Linux
https://bugs.launchpad.net/latexdraw/+bug/1340056
- fixed: Crash when adding a text shape that do not compile correctly (several pages produced)
https://bugs.launchpad.net/latexdraw/+bug/1327181
- fixed: Exporting drawings as PNG documents produces files with large blank margins
https://bugs.launchpad.net/latexdraw/+bug/1359810
- fixed: clicking on an already selected shape, does not unselect all the other selected shapes anymore
- fixed: Crash when clicking on a text shape while editing another text shape
https://bugs.launchpad.net/latexdraw/+bug/1362187
- fixed: After having loaded a drawing, exporting it as a picture does not infer the file name
https://bugs.launchpad.net/latexdraw/+bug/1361516
- fixed: text shapes may not compiled when user packages ended with a comment
https://bugs.launchpad.net/latexdraw/+bug/1361382
- fixed: Changing arcs' angles does not always work properly
https://bugs.launchpad.net/latexdraw/+bug/1360910
- fixed: Grids not always painted and parsed correctly
https://bugs.launchpad.net/latexdraw/+bug/1323268
************************************************************
Version 3.1.0 -- 2014-01-27
- Opacity and strokeopacity attributes are now supported. That permits to set the opacity of
colours for the line border and the filling.
- The size of drawing area is no more limited to the size of the drawing.
Additional boundaries are now provided around the drawing area to ease the editing.
- In complement to the previous change, a page (US letter only for the moment) is painted.
- When zooming using the mouse, the zoom process follows the pointer.
The zoom increment, min, and max values have been changed to fit this new feature.
- Like many drawing applications, the view point of the drawing area can be move using
the middle button of the mouse (or both the right and left buttons in some cases).
It is more convenient than using the scroll bars.
- Better rendering performance.
- Ukrainian translation added.
- A menu item has been added to go to the latexdraw manual
- A text field that contains the LaTeX compilation error log has been added to the text toolbar.
- fixed: mirroring shapes did not work
https://bugs.launchpad.net/bugs/1266219
- fixed: latex thumbnails not created on windows Seven
https://bugs.launchpad.net/latexdraw/+bug/1252030
- fixed: LaTeX packages declared in the preferences are not used when loading a file
https://bugs.launchpad.net/latexdraw/+bug/1270559
- fixed: The text field used during the editing of text is not always correctly located
https://bugs.launchpad.net/latexdraw/+bug/1264869
- fixed: The text field used during the editing of text is not always correctly sized depending
on the look-and-feel
- fixed: The grid is not correctly painted when using the inch unit
https://bugs.launchpad.net/latexdraw/+bug/1264999
- fixed: The rulers do not fit the grid when scroll bars are moved
https://bugs.launchpad.net/latexdraw/+bug/1265007
- fixed: The grid radio buttons are not linked (preferences panel)
https://bugs.launchpad.net/latexdraw/+bug/1265051
- fixed: Problem when copying-pasting a group of shapes containing arrows
https://bugs.launchpad.net/latexdraw/+bug/1268354
- fixed: The quality of png/jpg/bmp files is poor
https://bugs.launchpad.net/latexdraw/+bug/1269458
- fixed: The jpg compression is inverted
https://bugs.launchpad.net/latexdraw/+bug/1269457
- fixed: Copying-pasting-deleting removes the wrong shape
https://bugs.launchpad.net/latexdraw/+bug/1271762
- fixed: 'Show origin' does not work for axes
https://bugs.launchpad.net/latexdraw/+bug/1266287
*******************************************************************
Version 3.0.0 -- 2013-12-23
Added:
- Native support/rendering of LaTeX texts: texts added to drawings are compiled in pdf using latex and then imported in the drawing.
- Can place texts at different positions: bottom-left, bottom-middle, top-right, etc. This feature produces PSTricks code based on the rput command.
- new localisations: Brazilian Portuguese, Hungarian, Japanese, Turkish, Vietnamese, Serbian, Russian, Czech, Catalan.
- double borders supported for arcs.
- A system tab in the "About LaTeXDraw" dialogue box to give information about the system.
Improvements:
- Can add/modify texts directly into the drawing using an integrated text field (no more dialogue box).
- no more dialogue boxes to change shapes properties. They can be changed using the toolbar which has been widely improved.
- when selecting a kind of shape, the corresponding widgets dedicated to the selected kind of shape are displayed to customise shapes.
- users can abort the creation of shapes using the escape key
- the graphical library has been totally rewritten:
- better shapes movement
- less memory consumption
- the text is now compiled in LaTeX and imported
- no more button to create a line; you can create a line using the button 'lines'
- better use of handlers to resize and rotate shapes
- the undo/redo manager has been totally rewritten:
- less memory consumption
- more stable and efficient
- more actions can be undone
- more information about the undoable actions (the undo/redo messages are more precise)
- the error manager has been totally rewritten:
- the manager can be accessed by the menu 'help' -> 'Error console'
- the error window displays all the errors, not a single one
- the shape handlers are no more zoomed when zooming in/out.
- the widgets of the parameters toolbar now appear and disappear more accurately
- the selected shapes are no more unselected when selecting the editing.
- can undo/redo change of unit (cm or inch).
- the lime and teal colours are now supported.
- Can zoom in/out with the keys '+' and '-'.
- PSTricks parser:
- using a ps command as a value (e.g. linecolor=\psfillcolor) is supported
- commands qdisk, qline, psarcn, textcolor supported
- better support of the command definecolor
- better Mac OS X integration: the key Win/Apple is used instead of the key Ctrl in shortcuts
Changes:
- Tabs are used to replace the code panel.
- Text support:
- Font family and font size cannot be loaded from a latexdraw 2.* svg file
- No more widgets to define framedbox. You have to do that manually in latex.
- No more batch conversion frame
- The ldp format, that was the default format for 1.9.* and older versions, is no more supported.
- The PPM export is no more supported
- The basic EPS export is no more supported (the LaTeX EPS export is still supported).
- No more button 'default' in all the dialogue boxes.
- Handlers style has changed.
- There is no more the choice between line and curve to close a Bezier curve. Only curve is supported. That because in a
future release, every segment of a Bezier curve will be either a line or a curve.
- The PPC (point per centimetre) cannot be changed anymore.
- The change of unit (cm or inch) can be performed through menu items in the "Drawing" menu.
- The type of magnetic grid can be changed using the grid toolbar.
- The magnetic grid cannot be magnetic when it is not visible.
- Because handlers design have been improved, it is no more possible to change the opacity of handlers.
Fixed:
- lp#1076032: a blank page inserted while compiling a document as a pdf
- lp#530184: the option 'showpoints' is badly painted for Bezier curves
- lp#675155: the scale handlers approximately resize shapes
- lp#675150: the unit saved into an SVG document is not loaded
- lp#598504: when you copy paste a rotated triangle/rhombus, and you move the copied shape then the rotation angle is set back to 0
- lp#880677, sf#3296077: line colour of psdot style asterisk is not saved.
- lp#911816: crash while parsing PST code containing $ and framed boxes.
- lp#756733: the pst parser did not use correctly the unit to create shapes.
- The border of a selected ellipse did not bound it correctly.
- The painted axes did not match the generated pdf because of the package pstricks-add.
- The html label of the dialogue box used to insert PST code into the drawing is now correctly displayed.
- The colour of the shadow is not always correctly loaded from an SVG-latexdraw document
- better position of the application when several screens are available
*******************************************************************
Version 2.0.8 -- 2010-03-15
- fixed #535631: cannot export as pdf using pdfcrop if the path of latex binaries is defined
- fixed #483517: when importing a picture into a drawing, the created eps picture is not located at the right place
- fixed #506868: in some cases, copying or cutting shapes does not respect the original order
*******************************************************************
Version 2.0.7 -- 2010-03-07
- fixed #531658: pdf export broken on Windows
*******************************************************************
Version 2.0.6 -- 2010-01-10
- added: Turkish localisation
- improvement: check in the installer the java version is 6 or newer
- fixed #506849: cannot create PS/PDF documents in some cases
- fixed #483528: pictures saved into a SVG document cannot be loaded
- fixed #483520: picture badly scaled when included in a drawing and exported as ps/pdf/latex
- fixed #502915: fonts not always embedded
- fixed #504743: bad management of invalid SVG documents
- fixed #295531: in the batch convert panel, the field 'add sub folders' does not appear with gtk laf
- fixed #505284: when importing SVG lines, the last point is missing
- fixed #505515: attribute 'style' not used during import
*******************************************************************
Version 2.0.5 -- 2009-10-06
- added: can export a drawing as a pdf document using latex AND pdfcrop
- fixed #434030: export as ps (latex) does not work anymore
- fixed #433971: the "export as picture" dialog as a bad title
- fixed #434204: generated ps (latex) documents are not cropped
- fixed #306954: SVG import: some SVG shapes generate empty code
- fixed #306953: attribute inheritance does not work for text attributes
- fixed #435265: better management of SVG font-size
- fixed #195898: a too small triangle/rhombus is not visible
- fixed #440739: the size of shapes with double borders are badly saved
*******************************************************************
Version 2.0.4 -- 2009-09-20
- added: new localisation, Polish
- fixed #428405: freeze while exporting as pdf on Vista/XP
- fixed #402096: use alternative runtime.exec()
- fixed #402099: improve management of temp files
- fixed #402104: pdf/ps files have a weird title
*******************************************************************
Version 2.0.3 -- 2009-07-03
- added: latex EPS and PDF export (need a latex distribution to work)
- added: new localisation, Italian
- fixed #268988: widgets not updated when loading an SVG doc
- fixed #305154: bad parsing of points path for SVG-polygon and SVG-polylines
- fixed #305413: cannot parse CSS styles with WSP or comments
- fixed #392168: crash while changing cm to inch in drawing preferences
- fixed: in some cases, wrong floating-point syntax was generated (e.g. 14E-01)
- fixed: on Ubuntu Jaunty the Palatino font is not well managed
- fixed: the rotation field did not really work for polygons and lines
- fixed: exported EPS drawings can hide, in some cases, the text of a tex document
- fixed: desorganisation of some shapes while joining them
- translations updated
*******************************************************************
Version 2.0.2
- added: a field to change and view the zoom
- fixed #292090: crash when undoing the joining of two shapes
- fixed #295577: crash while creating a grid with gtk laf
- fixed #296970: SVG: bad management of attributes inheritance
- fixed #296248: SVG: the attribute 'fill' must be by default to 'black'
- fixed #181513: freeze while opening SVG document that contains DOCTYPE
- fixed #291507: crash while opening some SVG files
- fixed #289943: cannot undo a change of coordinates (Bezier curve/polygon)
- fixed #289936: can open parameters panel while several figures are selected
- fixed #291489: no name when exporting a saved drawing
- fixed #293194: no name when saving as a saved drawing
- fixed #293190: no label for undoing distribution/alignment but an error message
- fixed #268090: cannot open a file that contains a space in command line
- fixed #294746: problem with the grid menus when a drawing is open
- fixed #294724: some changes does not set the drawing as "modified"
- fixed #287404: misspelling for group/separate figures and strings updated
- fixed #238142: inverted round bracket arrow not well plotted
*******************************************************************
Version 2.0.1 -- 2008-10-31
- added: hatchings angle is now managed
- fixed #289881: crash when joining figures
- fixed #264270: text font and text size not loaded from SVG documents
- fixed #268037: italic and bold text not loaded from SVG documents
- fixed #268979: borders of the auto adjustment not saved
- fixed #267117: translation error
- fixed #268973: borders cannot be selected when in auto adjustment
*******************************************************************
Version 2.0 -- 2008-08-25
- added: SVG import/export
- added: can align (left, right, top,...) figures
- added: can distribute figures
- added: a menu item to create a new drawing with the selected figures
- added: a button to copy the code of the selected figures
- added: US English language (clear distinction between US and British English)
- added: German translation
- added: the latex command 'put' is managed. But its use is not advice since it is not a PSTricks command and it creates some problems with rput and uput commands. You should use the rput command instead
- improvement: new icons;
- improvement: better performance when the grid is displayed
- improvement: can open latexdraw with a pstricks file
- improvement: preferences are now stored in an XML file
- improvement: the position of the main frame, its size and position of the slidebar are now saved in the preferences file
- improvement: better plotting of rhombus, triangle and polygon
- change: the default format of latexdraw is now SVG, files with the old format can still be opened
- change: closed bézier-curves cannot have a second arrow anymore
- change: the shape handlers are more simply drawn in order to be less CPU and memory consumers
- fixed #1884433: changing rotation angle in the parameters panel do nothing (for lines and polygons)
- fixed: while saving, wrong dialog title displayed when the interface ask if the drawing must be replaced
- fixed: it was impossible to select a item of a toolbar with Compiz activated on Linux
- fixed: problem of focus with toolbars on Linux
- fixed: rotation field in the freehand parameters panel
- fixed: no warning when quitting and when the drawing was modified via a parameters frame
- fixed: some dot shapes were badly plotted
- fixed: bezier curves and lines have their borders not well drawn when having a shadow
- fixed: the cancel button of the preferences panel had no effect
- fixed: a lot of minor bugs
PSTricks parser 0.5:
- added: rotatebox, rotateleft, rotateright and rotatedown commands are managed
- added: definecolor{name}{cmyk}{c m y k} is supported
- added: newrgbcolor, newcmykcolor, newgray and newhsbcolor commands are supported
- fixed: false error report when some unknown commands are parsed
- fixed: when importing a document, figures can be inserted several times
- fixed: freeze when importing a lot of Bézier curves because of the code optimisations
- fixed: crash when importing a bad formed piece of code containing too many closing braces
- fixed: crash when importing a pscustom block composed of Bézier curves
- fixed: crash when importing a Bézier curve having only two equal points
- fixed: unit definition was not considered while parsing rput command
- fixed: \} not well parsed
***************************************************************
Version 1.9.5 -- 2007-10-20
- fixed: transparency not always managed in imported pictures;
- fixed: problem when trying to select a figure to put behind/in front of the selected figure;
- fixed: crash when undo "join figures";
- fixed: crash when putting a figure behind one another;
- fixed: cannot open a .ldp containing a picture;
- fixed: crash when joining several figures;
- fixed: cannot change the parameters of joined figures;
- fixed: a selected figure can be exported with its border.
***************************************************************
Version 1.9.4 -- 2007-09-01
- fixed: an error occurred when using alt-right/left/... and no figure was selected;
- fixed: saving a drawing froze the program under gtk theme under Linux;
- fixed: the size of an elliptic framed box was badly computed (again!);
- fixed: bezier curves: arrow colour not exported in PSTricks;
- fixed: joined-lines arrows can be in the wrong side;
- fixed: "joined-lines" menu was missing in the popup-menu;
- fixed: too small figures cannot be created;
- fixed: problems with arrows and line/joined-lines;
- fixed: a line/joined-lines/arc/bezier curve/circle is not visible when all its points are at the same location;
- fixed: the code is never updated before its printing;
- fixed: the grid was printed with the drawing;
- fixed: grid: the dotted sub-grid not well defined;
- fixed: the pstricks code of a grid can generate number such as 1E-07;
- fixed: the dot-size field is not updated when resizing a dot;
- fixed: an error can occurred when using mirrors/position buttons with no selected figure;
- fixed: the printed code is always a unique page;
- change: jlibeps replaces EPSGraphics;
- change: importation of a WMF picture is removed.
PSTricks parser 0.4.2:
- fixed: parameters beginning with '9' cannot be parsed;
- fixed #1703716: origin={...} in parameters does not work.
***************************************************************
Version 1.9.3 -- 2007-06-20
- fixed: wrong colour definition for carnationPink;
- fixed: undo/redo manager not always well updated;
- fixed: sometimes, no warning appears when the drawing is modified and the user leaves LaTeXDraw;
- fixed: choices list do nothing when selecting the same choice;
- fixed: export menu not updated when cutting and pasting;
- fixed: problem with toolbar, gtk "look and feel" and java 6;
- fixed: buttons not well updated with ctrl-A;
- fixed: in rare case, joined figures can launch exceptions;
- fixed: when separating joined figures, the code is not updated;
- fixed: freehand: if first point=last point, the figure is not created;
- fixed: user comments can be truncated.
PSTricks parser 0.4.1:
- fixed #1703713: {} and {>} arrows command should be parsed.
****************************************************************
Version 1.9.2 -- 2007-05-31
- added: a button in the frame of errors to copy the log;
- improvement: preferences and templates are stored in the profile of the user
- improvement: templates are not loaded at start-up;
- improvement: double line for joined-lines;
- improvement: can define the compression rate when exporting in jpg format;
- improvement: in the frame of parameters, the glimpse panel automatically
zoom in/out to view to whole figure and the figure is always
placed in the centre of the panel;
- improvement: in the frame of parameters, you can move the glimpse figure
with the mouse;
- improvement: in the frame of parameters for Bézier curve, you can choose
if, when moving a point, its control points are moved too;
- fixed #1703723: figure not always well filled;
- fixed: the stroke of double-line was badly used for bezier curves/joined-lines
- fixed: when importing a picture, its eps version is saved in the profile if
we can save it in the folder;
- fixed: exception and some problems when undo/redo joined figures;
- fixed: scalebox{1} must be placed before begin{pspicture};
- fixed: exception when rotating several joined figures;
- fixed: a template menu item will not be created if its .ldt file does not exist;
- fixed: template thumbnails were not always updated;
- fixed: selection did not always work with arcs and Bézier curves.
PSTricks parser 0.4:
- added: \pspicture and \endpspicture are managed;
- added: \normalcolor is managed;
- added: arrows=<-| is managed;
- fixed: an invalid \begin{pspicture} command must launch a fatal error;
- fixed: unknown command not always well parsed;
- fixed: a single end{pspicture} command must launch a fatal error;
****************************************************************************
Version 1.9.1 -- 2007-04-04
- added: more shortcuts:
- "space" selects the first or the next figure (in selection mode);
- ctrl+mouse wheel zoom in/out;
- added: comment explaining how to rescale the whole drawing (request #1628137);
- improvement: can change the parameters of several selected figures in the
same time;
- improvement: can define the parameters before creating a figure;
- improvement: all the frames can be easily resized;
- improvement: the definition of a dot is almost totally rewritten to improve
the selection and to fix several bugs;
- fixed #1681687: the parameters toolbar is not updated when importing a tex file;
- fixed #1690426: figure not deleted when cancelling its creation with to top-right button;
- fixed #1691145: freezes when a wrong file is given in command line;
- fixed: exception in some cases when the frame of parameters of a dot is open;
- fixed: the selection of figures works better now;
- fixed: a rotated dot doesn't correctly move after loading a project;
- fixed: problem when exporting a drawing as picture;
- fixed: the drawing is no more affected when the number of pixels per
cm changes (only the generated code);
- fixed: problem when redoing after having cut several figures;
- fixed: the size of the ellipse framed box was badly computed;
- fixed: minor bugs.
****************************************************************************
Version 1.9 -- 2007-02-08
- added: a splash screen;
- added: recent files manager;
- added: more shortcuts:
- ctrl+A select all the figures;
- ctrl/shift key can be used to add/remove a figure to the selection;
- can move scrollbars and figures with left, up, shift,...;
- added: can update figures to the displayed grid;
- added: a shortcuts frame;
- added: when the code panel is closed, a button, copying the all the generated
code, is visible in the toolbar;
- added: a menu item to set visible all the hidden figures;
- added: can choose the look and feel;
- added: can change the transparency of the delimiters;
- added: a menu to check update;
- added: a popup menu to cut/paste/copy text from/to "insert PSTricks code" and
"add comment" frames;
- added: "move"/"resize/rotate" cursor is displayed when move/resize/rotate figures;
- added: "code" menu now contains all code options;
- improvement: free hand can be either curves or lines;
- improvement: free hand can be closed or opened;
- improvement: you can define the interval between each point of free hand;
- improvement: akin points can be dotted/dashed;
- improvement: akin points can be filled/hatched and can have a gradient;
- improvement: a Bézier curve can be closed with a line or a curve;
- improvement: can equilibrate the control points of a Bézier curve;
- improvement: update jiu to 0.14.1;
- improvement: a right-click doesn't remove the last point anymore (during the
creation of a polygon/joined-lines/Bézier curve;
- fixed #1621630: figures were not updated to the magnetic grid when rotated;
- fixed #1621632: a very small rectangle can disappear when rotated of 90°;
- fixed #1621633: cannot select a too small rectangle;
- fixed #1621634: the selection of a text without framed box didn't work very well;
- fixed #1621635: figures not always follow the magnetic grid when dragged;
- fixed #1624345: cannot stop the creation of a polygon on Mac (mouse has one button);
- fixed #1644659: the main frame lost the focus when a ListJToogleButton is displayed;
- fixed #1644660: the gravity centre of a set of figures was badly computed;
- fixed #1644660: polygons move when violently rotated;
- fixed #1644662: problem when closing and displaying the code panel;
- fixed #1644663: the parameters of the second arrow of joined lines/Bézier curve are never generated;
- fixed #1645157: joined-lines are automatically filled when having a shadow;
- fixed #1645158: space between dots of a dotted polygon with double boundaries was badly computed;
- fixed #1645160: the fact that a dot can be filled or not was badly managed;
- fixed: the size of delimiters (polygons, Bézier curves) aren't always updated;
- fixed: arrows are not moved when mirrors are used (Bézier curve);
- fixed: cut and paste doesn't work;
- fixed: for axes, in some cases the labels are badly placed;
- fixed: a lot of minor bugs;
PSTricks parser 0.3:
- added: \begin{figure} and \begin{center} are managed;
- added: \pscustom is partially managed;
- improvement: Can parse a Bézier curve with more than two points;
- improvement: squared psframe is now converted in square;
- improvement: arc with a line at the start to the end point is transformed in chord;
***********************************************************************************
Version 1.8.2 -- 2006-11-15
- fixed #1580023: the printed code doesn't take care about the width of the page;
- fixed #1538675: Bézier curve/polygons/joined lines still rotate badly;
- fixed #1581400: you can select a empty Bézier curve by clicking at the interior;
- fixed #1591309: borders of a Bézier curve were not displayed;
- fixed #1591310: can move a figure by using its borders;
- fixed #1593762: parameters panel - undo has no effect when modifying a Bézier curve;
- fixed #1591312: not enable to select a too small rectangle/ellipse;
- fixed #1596421: a too small rectangle/ellipse is not visible;
- fixed # : we must not be able to select a figure with its shadow;
- fixed # : can select joinedlines/arc with the line joining their extremities;
- fixed: minor bugs.
PSTricks parser 0.2.3:
- fixed #1579820: parser freezes when the code has { ... };
- fixed #1586013: problem when parsing a line or a polygon like \psline(2,2)(2,2)(2,2).
***********************************************************************************
Version 1.8.1 -- 2006-10-17
- fixed #1554750: problem with round corner (frame and square);
- fixed #1561789: "code autoupdate" field (in the preferences frame) had not effect;
- fixed #1562954: problem with the look & feel "metal";
- fixed #1564478: vertical mirror was horizontal mirror for text;
- fixed #1564477: picture was not moved when using mirrors;
- fixed #1573703: problem with checkboxes and jre 1.5.0_09 with XP look & feel;
- fixed #1508200: delimiters of triangles and rhombus are sometimes badly updated;
- fixed #1538675: polygons move when rotating violently;
- fixed #1508202: Bézier curves rotate badly;
- fixed: a lot of minor bugs.
PSTricks parser 0.2.2:
- fixed #1573706: problem when having both unit and xunit/yunit in the parameters.
***********************************************************************************
Version 1.8 -- 2006-09-13
- added: new localisation, Spanish;
- added: new shape, axes;
- added: magnetic grid;
- added: mirrors to move figures;
- added: buttons to rotate figures of 90, 180 and 270°;
- added: a button to launch your LaTeX editor;
- improvement: the help can be loaded with you browser: help/index.html;
- improvement: Bézier curve can have arrows;
- improvement: a button to close the mini-toolbars;
- improvement: Bézier curve can have a double boundary;
- improvement: Bézier curve can be filled, hatched and can have a gradient;
- improvement: an arrow with the 'dot' shape can have its interior colour changed;
- improvement: hatchsep attribute is managed;
- improvement: new "About LaTeXDraw" frame;
- fixed #1555339: the ilk of an arc (open, pie or chord) was never saved;
- fixed #1554729: dotted/dashed double line has not it good background colour (for polygon);
- fixed #1554162: the borders of the drawing are not always updated (with auto adjustment
disable);
- fixed #1553683: with command line, preferences and templates are not loaded;
- fixed #1540561: crashing when launching the help;
- fixed #1536603: eps exported files were not vectorial;
- fixed #1528919: shadow for a polygon with double boundary is too small;
- fixed #1528562: joined lines parameters frame: a change has no effect;
- fixed #1538724: bad rotation in the frame of parameters of a drawing;
- fixed #1547234: the 'draw labels' checkbox doesn't work very well in the frame
of parameters of the grid;
- fixed #1547235: default buttons did not always reinitialise values;
- fixed #1547236: crashing when clicking on the default button of the dot frame;
- fixed #1547239: round panel, for rectangle and square, is not always visible;
- fixed #1548699: with JRE 1.5_08, the buttons of the toolbars are too big;
- fixed #1556362: sometimes LaTeXDraw froze at startup when it checked new version;
- fixed #1557509: vertical and horizontal line can be difficulty selected;
- fixed: minor bugs.
PSTricks parser 0.2.1:
- added: axes management;
- fixed #1556340: rotation angle was not managed (since 1.7) for triangle;
- fixed #1556544: inversion of positions between X-labels and Y-labels;
- fixed #1556548: a rotated grid (with unit not equal to 1) was badly placed.
**************************************************************************************
Version 1.7 -- 2006-08-23
- added: shadow management;
- added: colour shifting management;
- added: framed box management;
- added: buttons in the frames of parameters to zoom in/out the figure;
- improvement: the background of a text can be opaque;
- improvement: polygons can have doubles lines;
- improvement: can change the size of the rounds corners for rectangles and squares;
- improvement: the frames of parameters have a better interface;
- improvement: gif can be included or converted;
- improvement: batch conversion: a check box define if the pictures must be converted in their directory or not;
- improvement: new icons;
- fixed #1404791: when refreshing the templates, there thumbnails were not updated;
- fixed #1487192: when a frame of parameters is opened, the figure can be deleted or modified;
- fixed #1481272: the colour of the interior of the arrows with the circle shape must be as the interior of the figure;
- fixed #1487185: scrollbars are not updated when changing the font or the size of a text;
- fixed #1489350: the size of a text change when zooming in and zooming out;
- fixed #1489644: scrollbars of the parameters frame of grids are not always updated.
- fixed #1489551: labels of grids and texts are not resized when you change the number of pixels per cm/inch of the draw;
- fixed #1502040: when subgriddiv=1, borders must not be drawn;
- fixed #1502043: some defaults values of lines' parameters were false;
- fixed #1502048: for arcs, the start angle can be greater than the end angle to avoid problems during the drawing and the parsing (\pswedge(2,1){1.5}{300}{200});
- fixed #1502046: for Bézier curves, the controls points had a wrong size;
- fixed #1502049: we must be able to fill the dot shape 'o';
- fixed #1512530: LaTeXDraw files containing picture cannot be loaded;
- fixed #1512533: undo/redo: bad undo management when creating and cancelling a text/grid;
- fixed #1512537: undo/redo: toolbar still active when redo a 'delete' action ;
- fixed #1512538: undo/redo: the redo was never cleared when a command, different than redo, occurred;
- fixed #1515149: bug in the method Line.getPerpendicularLine(): when the x-coordinate of a
point of a triangle/rhombus is 0 a problem in the display occurred;
- fixed #1516288: % not always replaced by \% during the code generation;
- fixed #1523877: when a file is loaded, the undo/redo manager is not cleared;
- fixed #1524381: batch conversion: output path was never used;
- fixed #1525086: for rhombus, hatchings did not rotate because of gangle;
- fixed #1526315: when "show points" option for a Bézier curve is selected, the curve must
be dashed too;
- fixed # : exception in Polygon.getBorders when three points have the same X-coordinate;
- fixed: minor bugs.
PSTricks parser 0.2:
- added: shadow management;
- added: colour shifting management;
- added: framed box management;
- added: millimetres are managed;
- added: support +1 number (positive sign);
- added: support numbers like ++++1, -----1, ++-+--+1;
- added: support unit parameter;
- fixed #1488716: linewidth=-1 must be understood as linewidth=1, idem for dotsize, ...;
- fixed #1502052: for lines and arcs, arrows were not read in some cases (\psline{*->}(0,3)(5,5));
- fixed #1502053: dots was never filled;
- fixed #1502711: when parsing a polygon with only two points, the third point was not created;
- fixed #1502712: parsing the command \psset{origin={1,1}} launched an exception;
- fixed #1502713: coordinate like (1pt, 2in) and size like {1cm} must be parsed;
- fixed #1502714: when insert PSTricks code with \begin{pspicture} in comment, this commented command was understood like an uncommented command;
- fixed #1502715: the format \pswedge{3}{0}{70} was not supported;
- fixed #1515871: when you insert pstricks code like \begin{center}\begin{pspicture} the \begin{pspicture} was ignored;
- fixed #1516165: the \% command was ignored;
- fixed #1519847: pink colour not managed;
- fixed #1519934: text not always parsed;
- fixed #1520384: \bf and \it have no effect;
- fixed #1523726: error during the parsing of the command \psgrid; for instance \rput(0,0){\psgrid} didn't work.
**************************************************************************************
Version 1.6 -- 2006-05-02
WARNING: YOU MUST REPLACE THE FORMER 'Classic grid.ldp' OF THE TEMPLATES DIRECTORY BY THE NEW
'Classic grid.ldp' OF THE LaTeXDraw1.6_bin.zip.
- fixed: several fields were exported to be localisable, while they should not to be (1);
- fixed: polygon: borders was not updated when the thickness was changed;
- fixed: problem when check the version of the preferences file;
- fixed: grids did not rotate very when rotating several figures;
- fixed: when paste, the scrollbars were not updated;
- fixed: the grid was exported with the draw;
- fixed: the packages \usepackage{color} and \usepackage{pstricks} are replaced by
\usepackage[usenames,dvipsnames]{pstricks};
- fixed: "move figure" was badly managed by the undo/redo manager;
- fixed: a problem when resize several selected figures containing polygons or
derived figures;
- fixed: when loading a file, the delimiters of severals figures were not updated;
- fixed: when paste, toolbar was still activated;
- fixed: for rectangles, delimiters were not updated when paste;
- fixed: for circles and ellipses, borders were not updated when the thickness changed;
- fixed: toolbar was still activated when click in a empty place when searching a figure
to put behind/in front;
- fixed: \caption{fig: is replaced by \caption{;
- fixed: { and } were replaced by \string \{ ... So no command was possible;
- fixed: the description of the draw was not saved (label, caption ,...);
- fixed: when load a file with comments, the comments are too much '%';
- fixed: the borders of the selection was not updated when pasted several texts;
- fixed: not able to have French translation;
- fixed: the borders of the texts and of the grids were not always updated -> bad position of texts;
- fixed: if a text was empty, you could not select it but it existed in the code panel;
- fixed: problem in the management of the position of grids;
- fixed: grids had not read/write stream methods (2);
- fixed: when change a coordinate in a parameters frame and close the frame, the modified figure is not updated whereas;
- fixed: glimpse figures (rectangle, square, ..) were not updated when change their width, ... in their parameters frame;
- fixed: the grid was exported when exporting in eps;
- fixed: in several cases, a figure does not rotate when the angle is 180°;
- fixed: figures can move during the resizement of several polygons ;
- fixed: the zoom was not managed when loading a file;
- fixed: "dot-in" arrows change of position when the arrows is moved;
- fixed: space between a double arrow must be like the arrows not like the line;
- fixed: one of the doubles arrows for arc was not updated by the parameters of the arrow;
- fixed: if the arrows are of the same kind, there parameters must be the same;
- fixed: when you save a drawing and a figure is selected, it was hardly to unselect it;
- fixed: it was possible to have an code for arrows like '{>>--}...' instead of '{>>-}';
- fixed: space between two lines of an hatching was badly managed;
- fixed: problem when copy/paste a rhombus or a triangle;
- fixed: problem when editing points of rhombus/triangle with their frame of parameters;
- fixed: scrollbars not updated when cut/delete the unique figure of a drawing;
- fixed: problem when resize several figures;
- fixed: option "showpoints" was not save for arcs;
- fixed: several minor bugs;
- improvement: for dot, 'rput' is replaced by 'dotangle';
- improvement: more shapes for arrows: )-( and ]-[ are managed;
- improvement: better management of the arrowheads and the grids;
- improvement: for rhombus, 'rput' is replaced by 'gangle';
- improvement: can change the position of the labels of the grids;
- improvement: CPU, memory, speed optimisation;
- improvement: akin points code generator generates less points;
- added: export as PNG;
- added: export as BMP;
- added: export as PPM;
- added: can insert pictures;
- added: new figure, joined lines;
- added: LaTeXDraw can be used to convert jpeg|png|wmf|bmp|ppm pictures in eps|jpeg|png|ppm pictures with a batch processing;
- added: the LaTeXDraw manual;
- added: import PSTricks code (PSTricks parser version 0.1);
- added: can insert PSTricks code in a draw (use the PSTricks parser).
- regression: if, you load a saved project with 1.5.1 or 1.5.1.1 , the language is
French and several figures of the draw have doubles boundaries, then
the position of the doubles boundaries will be always 'inner'; because
of the bug (1);
- regression: because of the bug (2), LaTeXDraw can not open file from 1.5.1.1 and older
with grids. By the same way, old templates with grids are not compatible with
LaTeXDraw 1.6.
**************************************************************************************
Version 1.5.1.1 -- 2006-01-28
- fixed: minor bug with the isModified attribute;
- fixed: ellipse didn't rotate very well;
- fixed: error during the read of templates: templates could not be loaded;
- fixed: when put '%' in comments or in a text, it was considered as a start of a comment by the TeX parser;
- fixed: when a '\' was in a text, the label, ... it was considered as a command;
- fixed: an exception appeared during the selection of figures when the draw was empty;
- fixed: display->grid was not updated when change the unit of length (always in cm);
- fixed: an exception occurred when drawing a triangle;
- fixed: borders could not move;
- fixed: problem when clicking on a triangle or on a rhombus;
- fixed: problem when change a triangle or a rhombus;
- fixed: the rectangle was not updated when dragging one of these delimiters;
- fixed: polygon generate now a pspolygon, not a psline;
- fixed: error when testing the version of the software.
**************************************************************************************
Version 1.5.1 -- 2006-01-20
- fixed: figure id could be as big as 12982109 for example;
- fixed: params button was active when several figures were selected;
- fixed: the rotation of several selected or joined figures didn't rotated the gravity centre of these figures;
- fixed: error when shifting a triangle or a rhombus (shift method not overridden);
- fixed: a dotted line began before the first point;
- fixed: the delimiters of a square could not be selected (pb in isIn);
- fixed: isModified was activated when we confirmed preferences frame;
- fixed: a problem when loading a template from former version;