-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
8208 lines (5131 loc) · 306 KB
/
ChangeLog
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
------------------------------------------------------------------------
r1029763 | netterfield | 2009-09-30 13:27:12 -0400 (Wed, 30 Sep 2009) | 2 lines
Updated release notes
------------------------------------------------------------------------
r1029756 | netterfield | 2009-09-30 13:06:13 -0400 (Wed, 30 Sep 2009) | 3 lines
Get rid of old tests in the branch.
------------------------------------------------------------------------
r1029752 | netterfield | 2009-09-30 12:59:26 -0400 (Wed, 30 Sep 2009) | 3 lines
Branch for beta3. This should be a very usable branch.
------------------------------------------------------------------------
r1029745 | netterfield | 2009-09-30 12:41:05 -0400 (Wed, 30 Sep 2009) | 4 lines
Remove 1.x data sources from 2.0 tree.
They are still in the 1.x tree, and can be ported from there.
------------------------------------------------------------------------
r1029651 | netterfield | 2009-09-30 08:53:06 -0400 (Wed, 30 Sep 2009) | 3 lines
'Improve' some defaults.
------------------------------------------------------------------------
r1029608 | netterfield | 2009-09-30 06:39:00 -0400 (Wed, 30 Sep 2009) | 3 lines
Default system for plots and dialogs.
------------------------------------------------------------------------
r1027349 | netterfield | 2009-09-23 17:29:37 -0400 (Wed, 23 Sep 2009) | 5 lines
Multiple edit for legends.
Some improvements to legend dialog.
Some improvements to plot dialog.
------------------------------------------------------------------------
r1025501 | netterfield | 2009-09-18 18:40:54 -0400 (Fri, 18 Sep 2009) | 3 lines
Move some devel docs around.
Save legend status in the kst file.
------------------------------------------------------------------------
r1024901 | netterfield | 2009-09-17 10:05:09 -0400 (Thu, 17 Sep 2009) | 6 lines
Fix names in basicplugin.
Get rid of inf() warning.
Fix legend placement.
Basic multi-edit functionality for legends.
------------------------------------------------------------------------
r1024048 | netterfield | 2009-09-15 17:09:58 -0400 (Tue, 15 Sep 2009) | 2 lines
Fix broken short names.
------------------------------------------------------------------------
r1023551 | netterfield | 2009-09-14 18:21:09 -0400 (Mon, 14 Sep 2009) | 6 lines
Part way into 'edit multiple' for view items.
-View items are now named objects
-Start some work to reduce cross section for editing a deleted plot.
-Create a macro that can produce a list of items of a desired type.
------------------------------------------------------------------------
r1020002 | netterfield | 2009-09-04 20:35:00 -0400 (Fri, 04 Sep 2009) | 8 lines
Delete old files stored here from the 1.x branch
(if you want it, get it from the 1.x branch)
Remove dead code.
Fix the ascii read file bug.
------------------------------------------------------------------------
r1011565 | netterfield | 2009-08-15 00:12:29 -0400 (Sat, 15 Aug 2009) | 4 lines
Update dialog defaults lists
Fix rotated axis number label positioning
------------------------------------------------------------------------
r1008715 | netterfield | 2009-08-08 02:20:52 -0400 (Sat, 08 Aug 2009) | 3 lines
Fix some file dialog behaviors...
------------------------------------------------------------------------
r1007685 | netterfield | 2009-08-06 00:19:12 -0400 (Thu, 06 Aug 2009) | 3 lines
More fixups for line/arrow resize/move behaviour.
------------------------------------------------------------------------
r1007008 | netterfield | 2009-08-04 17:25:22 -0400 (Tue, 04 Aug 2009) | 3 lines
Fix the drifting line bug...
------------------------------------------------------------------------
r1005451 | netterfield | 2009-08-01 00:59:29 -0400 (Sat, 01 Aug 2009) | 4 lines
Better defaults for graphics export dialog.
Fix parenting and resizing bugs (except lines).
------------------------------------------------------------------------
r1004417 | netterfield | 2009-07-30 02:40:55 -0400 (Thu, 30 Jul 2009) | 5 lines
Fix drifting Y label bug.
Add attribute for grid line width.
Copy more plot styles when adding a plot to a view.
------------------------------------------------------------------------
r1002072 | fenton | 2009-07-24 17:14:46 -0400 (Fri, 24 Jul 2009) | 2 lines
Add Build System overview for Kst.
------------------------------------------------------------------------
r1002051 | fenton | 2009-07-24 16:44:46 -0400 (Fri, 24 Jul 2009) | 2 lines
Remove overlapping CONFIG setting.
------------------------------------------------------------------------
r1001896 | fenton | 2009-07-24 09:06:53 -0400 (Fri, 24 Jul 2009) | 2 lines
Update Release procedure.
------------------------------------------------------------------------
r1001544 | netterfield | 2009-07-23 11:39:58 -0400 (Thu, 23 Jul 2009) | 3 lines
Report some new bugs :-(
------------------------------------------------------------------------
r1001494 | fenton | 2009-07-23 08:59:47 -0400 (Thu, 23 Jul 2009) | 2 lines
Fix plot drawing errors when plot's view rect strays from (0, 0)
------------------------------------------------------------------------
r1001361 | netterfield | 2009-07-22 20:29:56 -0400 (Wed, 22 Jul 2009) | 4 lines
Update bug lists.
Fixes for printing (seems pretty good now)
------------------------------------------------------------------------
r1001287 | fenton | 2009-07-22 16:25:57 -0400 (Wed, 22 Jul 2009) | 2 lines
Update DEVNOTES.
------------------------------------------------------------------------
r1001282 | fenton | 2009-07-22 15:54:37 -0400 (Wed, 22 Jul 2009) | 2 lines
Add view based plot font default settings.
------------------------------------------------------------------------
r1001227 | fenton | 2009-07-22 13:59:06 -0400 (Wed, 22 Jul 2009) | 2 lines
Add examples to INSTALL.
------------------------------------------------------------------------
r1001072 | fenton | 2009-07-22 11:36:57 -0400 (Wed, 22 Jul 2009) | 2 lines
Fix Windows command line exiting / help display.
------------------------------------------------------------------------
r1000785 | netterfield | 2009-07-21 20:58:43 -0400 (Tue, 21 Jul 2009) | 3 lines
Update bug list: some new bugs...
------------------------------------------------------------------------
r1000784 | netterfield | 2009-07-21 20:44:32 -0400 (Tue, 21 Jul 2009) | 4 lines
Some improvements to printing. But it still prints at 72dpi, which is
inadequate.
------------------------------------------------------------------------
r1000623 | fenton | 2009-07-21 13:44:03 -0400 (Tue, 21 Jul 2009) | 2 lines
Update install doc.
------------------------------------------------------------------------
r1000539 | fenton | 2009-07-21 10:33:33 -0400 (Tue, 21 Jul 2009) | 3 lines
Add new install-kst script.
Update installation documentation.
------------------------------------------------------------------------
r1000095 | netterfield | 2009-07-20 16:15:40 -0400 (Mon, 20 Jul 2009) | 3 lines
Report bug as fixed
------------------------------------------------------------------------
r1000073 | netterfield | 2009-07-20 15:38:33 -0400 (Mon, 20 Jul 2009) | 3 lines
Fix a bug with data mode and offset marker...
------------------------------------------------------------------------
r1000055 | fenton | 2009-07-20 14:55:08 -0400 (Mon, 20 Jul 2009) | 2 lines
Switch printer mode to ScreenResolution.
------------------------------------------------------------------------
r999942 | fenton | 2009-07-20 12:25:12 -0400 (Mon, 20 Jul 2009) | 3 lines
Update build system to support INSTALL_PREFIX INSTALL_LIBDIR
and only set QMAKE_RPATH when in debug mode.
------------------------------------------------------------------------
r999909 | netterfield | 2009-07-20 11:26:38 -0400 (Mon, 20 Jul 2009) | 2 lines
Printing Bug (showstopper)
------------------------------------------------------------------------
r999886 | fenton | 2009-07-20 10:37:46 -0400 (Mon, 20 Jul 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r999796 | fenton | 2009-07-20 09:52:34 -0400 (Mon, 20 Jul 2009) | 2 lines
Fix crash when reloading settings dialog.
------------------------------------------------------------------------
r998454 | netterfield | 2009-07-17 13:19:26 -0400 (Fri, 17 Jul 2009) | 7 lines
Report a new bug (a crash case...)
Update bugs.
Fix axis label round-off errors
Fix tick count reduction (to avoid overlap).
Fix tick scaling/position (to avoid overlap).
------------------------------------------------------------------------
r997289 | fenton | 2009-07-15 13:54:19 -0400 (Wed, 15 Jul 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r997283 | fenton | 2009-07-15 13:48:31 -0400 (Wed, 15 Jul 2009) | 3 lines
Add reworked config saving for ascii plugin including global default flag / setting.
Fix loading of .kst with ascii settings when file information is not in settings.
------------------------------------------------------------------------
r996831 | netterfield | 2009-07-14 19:36:10 -0400 (Tue, 14 Jul 2009) | 5 lines
Update bugs
Fix mean centered mode.
Fix precision in plot dialog range tab.
------------------------------------------------------------------------
r996598 | fenton | 2009-07-14 10:50:13 -0400 (Tue, 14 Jul 2009) | 2 lines
Move settings to native / default locations in the UserScope.
------------------------------------------------------------------------
r995951 | fenton | 2009-07-13 10:58:17 -0400 (Mon, 13 Jul 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r995949 | fenton | 2009-07-13 10:52:41 -0400 (Mon, 13 Jul 2009) | 2 lines
Turn off debugging.
------------------------------------------------------------------------
r994600 | netterfield | 2009-07-10 16:39:14 -0400 (Fri, 10 Jul 2009) | 4 lines
Fix plot dialog setting Y mean centered zoom mode.
X mean centered zoom mode not fixed yet.
------------------------------------------------------------------------
r994570 | fenton | 2009-07-10 14:43:05 -0400 (Fri, 10 Jul 2009) | 2 lines
Apply origin plot zoom before applying SharedAxisBox zoom for zooms that may change non-shared axis.
------------------------------------------------------------------------
r994394 | fenton | 2009-07-10 10:57:05 -0400 (Fri, 10 Jul 2009) | 2 lines
Revert enforceMin change allow corner case label overlap to ensure minimum ticks are enforced.
------------------------------------------------------------------------
r993952 | netterfield | 2009-07-09 15:46:05 -0400 (Thu, 09 Jul 2009) | 4 lines
New bugs
Some minor fixes to plot axis numbers. There are more to go...
------------------------------------------------------------------------
r993884 | fenton | 2009-07-09 11:47:31 -0400 (Thu, 09 Jul 2009) | 2 lines
Update window title.
------------------------------------------------------------------------
r993806 | fenton | 2009-07-09 10:40:28 -0400 (Thu, 09 Jul 2009) | 2 lines
Fix sizing of PlotItemDialog by limiting the growth of the dialog.
------------------------------------------------------------------------
r993601 | netterfield | 2009-07-08 20:42:17 -0400 (Wed, 08 Jul 2009) | 3 lines
Report new bug.
------------------------------------------------------------------------
r993490 | fenton | 2009-07-08 15:21:19 -0400 (Wed, 08 Jul 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r993479 | fenton | 2009-07-08 14:49:08 -0400 (Wed, 08 Jul 2009) | 2 lines
Fix updates for Selector Widgets when changes happen in other dialogs.
------------------------------------------------------------------------
r992828 | fenton | 2009-07-07 15:19:13 -0400 (Tue, 07 Jul 2009) | 2 lines
Remove maximum check and replace with minimum check on calculating tick spacing to prevent overlap when reducing the tick count programmatically.
------------------------------------------------------------------------
r992678 | fenton | 2009-07-07 11:20:32 -0400 (Tue, 07 Jul 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r992677 | fenton | 2009-07-07 11:17:13 -0400 (Tue, 07 Jul 2009) | 5 lines
Remove TiedZoom support from SharedAxisBoxItem.
Add KeyPlot to SharedAxisBoxItem for displaying TiedZoom in ShareX & ShareY mode.
Fix RMB Menu for PlotItem.
Fix Tied Zoom with plots outside of the SharedAxisBoxItem.
------------------------------------------------------------------------
r988395 | netterfield | 2009-06-27 21:59:03 -0400 (Sat, 27 Jun 2009) | 3 lines
Update bugs
------------------------------------------------------------------------
r987889 | fenton | 2009-06-26 16:51:16 -0400 (Fri, 26 Jun 2009) | 3 lines
Convert Dialogs to modeless.
Fix AboutDialog linking.
------------------------------------------------------------------------
r987829 | fenton | 2009-06-26 14:13:22 -0400 (Fri, 26 Jun 2009) | 2 lines
Fix signal.
------------------------------------------------------------------------
r987430 | netterfield | 2009-06-25 23:54:19 -0400 (Thu, 25 Jun 2009) | 3 lines
Update bugs (related to shared axis boxes)
------------------------------------------------------------------------
r986540 | fenton | 2009-06-24 14:28:55 -0400 (Wed, 24 Jun 2009) | 2 lines
Prevent too many ticks being drawn when limiting the ticks due to label size constraints.
------------------------------------------------------------------------
r985917 | fenton | 2009-06-23 14:51:11 -0400 (Tue, 23 Jun 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r985916 | fenton | 2009-06-23 14:49:01 -0400 (Tue, 23 Jun 2009) | 4 lines
Add independent tied zoom for PlotItems inside of a SharedAxisBox.
Connect hotkeys for SharedAxisBox options.
Fix drawing of invalid PlotRects.
------------------------------------------------------------------------
r983670 | fenton | 2009-06-18 15:17:49 -0400 (Thu, 18 Jun 2009) | 2 lines
Fix missing brace.
------------------------------------------------------------------------
r983666 | fenton | 2009-06-18 15:09:18 -0400 (Thu, 18 Jun 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r983665 | fenton | 2009-06-18 15:08:46 -0400 (Thu, 18 Jun 2009) | 2 lines
Cleanup LabelBuilder based warnings.
------------------------------------------------------------------------
r983641 | fenton | 2009-06-18 13:14:11 -0400 (Thu, 18 Jun 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r983639 | fenton | 2009-06-18 13:13:21 -0400 (Thu, 18 Jun 2009) | 2 lines
Reduce significant digit count for log axis.
------------------------------------------------------------------------
r983606 | fenton | 2009-06-18 10:37:57 -0400 (Thu, 18 Jun 2009) | 4 lines
Fix inverse drawing of plots creating an invalid PlotRenderItem size.
Prevent drawing attempts of invalid PlotRenderItems.
Standardize all Plots after the final draw of the PlotItem and only if rect() is valid.
------------------------------------------------------------------------
r983223 | fenton | 2009-06-17 15:48:42 -0400 (Wed, 17 Jun 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r983220 | fenton | 2009-06-17 15:43:20 -0400 (Wed, 17 Jun 2009) | 3 lines
Re-label Fill Dialog in Application Settings.
Add proper updating of View/PlotItem when changes are made in General/Grid Tabs of application settings.
------------------------------------------------------------------------
r983070 | fenton | 2009-06-17 10:28:38 -0400 (Wed, 17 Jun 2009) | 2 lines
Eliminate extra re-draw when unmarking as dirty.
------------------------------------------------------------------------
r983046 | fenton | 2009-06-17 10:18:01 -0400 (Wed, 17 Jun 2009) | 2 lines
Bug list update.
------------------------------------------------------------------------
r983000 | fenton | 2009-06-17 09:40:23 -0400 (Wed, 17 Jun 2009) | 3 lines
Fix load of document triggering a dirty document.
Remove PlotRenderItem geometry changes from dirty document tracking.
------------------------------------------------------------------------
r982947 | netterfield | 2009-06-17 06:16:56 -0400 (Wed, 17 Jun 2009) | 4 lines
Clean up/clarify bug list.
Close some bugs
------------------------------------------------------------------------
r982791 | fenton | 2009-06-16 16:06:55 -0400 (Tue, 16 Jun 2009) | 2 lines
Apply layout changes to ChangeDataSampleDialog.
------------------------------------------------------------------------
r982724 | fenton | 2009-06-16 13:58:19 -0400 (Tue, 16 Jun 2009) | 3 lines
Fix layout bugs associated with multiple columns / rows in SharedAxisBoxes.
Add immediate sharing update when switching ShareX/ShareY settings.
------------------------------------------------------------------------
r982683 | netterfield | 2009-06-16 11:50:21 -0400 (Tue, 16 Jun 2009) | 3 lines
Update bug lists and wishlists: in particular, clarify shared axis.
------------------------------------------------------------------------
r982487 | netterfield | 2009-06-15 19:18:28 -0400 (Mon, 15 Jun 2009) | 3 lines
Improve axis number roundoff a little. There is more to go!
------------------------------------------------------------------------
r982339 | fenton | 2009-06-15 10:49:09 -0400 (Mon, 15 Jun 2009) | 2 lines
Fix disconnect between ShareX / ShareY controlled zoom and SharedAxisBoxItem tied zoom.
------------------------------------------------------------------------
r981137 | netterfield | 2009-06-12 16:47:46 -0400 (Fri, 12 Jun 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r981025 | fenton | 2009-06-12 14:50:12 -0400 (Fri, 12 Jun 2009) | 2 lines
Fix crash when de-selecting draw based action.
------------------------------------------------------------------------
r980842 | fenton | 2009-06-12 12:04:40 -0400 (Fri, 12 Jun 2009) | 2 lines
Fix typo.
------------------------------------------------------------------------
r980840 | netterfield | 2009-06-12 11:58:13 -0400 (Fri, 12 Jun 2009) | 3 lines
'I' key adjusts image color ranges.
------------------------------------------------------------------------
r980827 | fenton | 2009-06-12 11:21:31 -0400 (Fri, 12 Jun 2009) | 2 lines
Improve interface for ChangeFileDialog.
------------------------------------------------------------------------
r979984 | fenton | 2009-06-10 16:50:33 -0400 (Wed, 10 Jun 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r979962 | fenton | 2009-06-10 16:19:55 -0400 (Wed, 10 Jun 2009) | 8 lines
Rework Shared Axis Box / Tied Zoom.
- Separate x / y Tied Zoom.
- Remove internal Shared Axis Box Tied Zoom - Replace with special handling.
- Make Share x / Share y configurable
- Fix breaking of Shared Axis Box on zoom changes.
Redo saving of ranges in PlotItemDialog.
Add new zoom modes.
------------------------------------------------------------------------
r979912 | fenton | 2009-06-10 14:33:11 -0400 (Wed, 10 Jun 2009) | 2 lines
Add new bugs.
------------------------------------------------------------------------
r979521 | netterfield | 2009-06-09 22:47:14 -0400 (Tue, 09 Jun 2009) | 3 lines
Update description of shared axis boxes.
------------------------------------------------------------------------
r979399 | fenton | 2009-06-09 13:40:18 -0400 (Tue, 09 Jun 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r979104 | netterfield | 2009-06-08 18:28:46 -0400 (Mon, 08 Jun 2009) | 2 lines
New tab option in curve placement widget.
------------------------------------------------------------------------
r977910 | netterfield | 2009-06-05 12:01:08 -0400 (Fri, 05 Jun 2009) | 6 lines
- Start 'new tab' ui work in curve placement widget.
- set version number for libraries, to allow kst2 to be installed
with kst1 on certain systems.
------------------------------------------------------------------------
r977552 | fenton | 2009-06-04 12:06:53 -0400 (Thu, 04 Jun 2009) | 3 lines
Convert to region based tick label spacing validation.
Add font autoscaling for tick labels.
------------------------------------------------------------------------
r977363 | netterfield | 2009-06-03 18:57:42 -0400 (Wed, 03 Jun 2009) | 2 lines
New Tab related options in the data wizard.
------------------------------------------------------------------------
r977202 | fenton | 2009-06-03 10:54:05 -0400 (Wed, 03 Jun 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r977188 | fenton | 2009-06-03 10:40:04 -0400 (Wed, 03 Jun 2009) | 2 lines
Remove dialog delete code.
------------------------------------------------------------------------
r977178 | fenton | 2009-06-03 10:35:52 -0400 (Wed, 03 Jun 2009) | 2 lines
Fix Dialog ListWidget growing indefinitely.
------------------------------------------------------------------------
r976770 | fenton | 2009-06-02 11:29:44 -0400 (Tue, 02 Jun 2009) | 2 lines
Add automatic minor tick count.
------------------------------------------------------------------------
r976467 | fenton | 2009-06-01 14:47:41 -0400 (Mon, 01 Jun 2009) | 2 lines
Update PlotItemDialog saveRange to correctly save if in Axis Log mode.
------------------------------------------------------------------------
r976456 | fenton | 2009-06-01 14:14:04 -0400 (Mon, 01 Jun 2009) | 2 lines
Update buglist and unmark tab based bugs.
------------------------------------------------------------------------
r976406 | netterfield | 2009-06-01 11:51:05 -0400 (Mon, 01 Jun 2009) | 4 lines
Update bug list
start to implement new page in data wizard.
------------------------------------------------------------------------
r976392 | fenton | 2009-06-01 10:48:12 -0400 (Mon, 01 Jun 2009) | 2 lines
Fix legend being parented incorrectly when creating plots from the DataWizard.
------------------------------------------------------------------------
r976253 | fenton | 2009-06-01 08:05:54 -0400 (Mon, 01 Jun 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r976251 | fenton | 2009-06-01 08:02:21 -0400 (Mon, 01 Jun 2009) | 2 lines
Update Bug list.
------------------------------------------------------------------------
r975318 | fenton | 2009-05-29 16:39:45 -0400 (Fri, 29 May 2009) | 2 lines
Fix update delay on log axis changes.
------------------------------------------------------------------------
r974858 | fenton | 2009-05-29 14:07:15 -0400 (Fri, 29 May 2009) | 2 lines
Add zoom update on relation being removed from plot.
------------------------------------------------------------------------
r974522 | fenton | 2009-05-29 11:37:42 -0400 (Fri, 29 May 2009) | 2 lines
Add multiple edit support for PlotItems.
------------------------------------------------------------------------
r974166 | fenton | 2009-05-28 12:10:42 -0400 (Thu, 28 May 2009) | 2 lines
Warning cleanup.
------------------------------------------------------------------------
r974165 | fenton | 2009-05-28 12:09:27 -0400 (Thu, 28 May 2009) | 2 lines
Warning cleanup.
------------------------------------------------------------------------
r973265 | fenton | 2009-05-26 14:07:33 -0400 (Tue, 26 May 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r973254 | fenton | 2009-05-26 13:31:21 -0400 (Tue, 26 May 2009) | 3 lines
Fix inability to control plot rect / tick colours.
Add tracking of pen change for redraw.
------------------------------------------------------------------------
r973206 | netterfield | 2009-05-26 10:36:27 -0400 (Tue, 26 May 2009) | 4 lines
Add Nicolas's bugs
Move some feature requests from Bugs to Wishlist
------------------------------------------------------------------------
r973200 | fenton | 2009-05-26 10:26:17 -0400 (Tue, 26 May 2009) | 2 lines
Fix jump when editing DataSourceSelector text field.
------------------------------------------------------------------------
r973178 | netterfield | 2009-05-26 10:13:42 -0400 (Tue, 26 May 2009) | 3 lines
Fix color selection bug in data wizard.
------------------------------------------------------------------------
r972953 | netterfield | 2009-05-26 00:46:21 -0400 (Tue, 26 May 2009) | 3 lines
Implement default X vectors...
------------------------------------------------------------------------
r972772 | fenton | 2009-05-25 12:41:39 -0400 (Mon, 25 May 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r972758 | fenton | 2009-05-25 11:50:16 -0400 (Mon, 25 May 2009) | 2 lines
Add ContentTab double click actions. Fix multiple selection.
------------------------------------------------------------------------
r972746 | netterfield | 2009-05-25 11:03:19 -0400 (Mon, 25 May 2009) | 3 lines
Fix crash from improperly enabled/disabled edit buttons in vector selector.
------------------------------------------------------------------------
r972743 | netterfield | 2009-05-25 10:42:31 -0400 (Mon, 25 May 2009) | 5 lines
Add default X vector field for new vectors.
Fix some button activation bugs in the vector dialog.
Report a new bug.
------------------------------------------------------------------------
r971520 | fenton | 2009-05-22 11:39:12 -0400 (Fri, 22 May 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r971517 | fenton | 2009-05-22 11:34:05 -0400 (Fri, 22 May 2009) | 2 lines
Fix proximity to zero double bug for major ticks.
------------------------------------------------------------------------
r971512 | fenton | 2009-05-22 11:18:57 -0400 (Fri, 22 May 2009) | 2 lines
Fix compile warning.
------------------------------------------------------------------------
r970803 | fenton | 2009-05-20 16:43:27 -0400 (Wed, 20 May 2009) | 2 lines
Add Axis Label rotation support.
------------------------------------------------------------------------
r970234 | fenton | 2009-05-19 15:55:05 -0400 (Tue, 19 May 2009) | 2 lines
Buglist update.
------------------------------------------------------------------------
r970204 | fenton | 2009-05-19 14:38:32 -0400 (Tue, 19 May 2009) | 2 lines
Add new Base/Offset mode settings and logic.
------------------------------------------------------------------------
r968549 | netterfield | 2009-05-15 23:58:20 -0400 (Fri, 15 May 2009) | 4 lines
Fix a couple more bugs.
Report another bug.
------------------------------------------------------------------------
r968501 | netterfield | 2009-05-15 17:16:53 -0400 (Fri, 15 May 2009) | 4 lines
Fix Don's line width big
Fix Don's range tab apply bug
------------------------------------------------------------------------
r968485 | fenton | 2009-05-15 16:13:49 -0400 (Fri, 15 May 2009) | 2 lines
Fix cursor drifting when resizing / rotating objects.
------------------------------------------------------------------------
r968065 | fenton | 2009-05-14 16:50:22 -0400 (Thu, 14 May 2009) | 2 lines
Fix MatrixSelector not maximizing correctly.
------------------------------------------------------------------------
r968056 | fenton | 2009-05-14 16:35:12 -0400 (Thu, 14 May 2009) | 2 lines
Standardize and fix alignment issues in the CSD, Equation, Image and PowerSpectrum dialogs.
------------------------------------------------------------------------
r967955 | netterfield | 2009-05-14 10:39:14 -0400 (Thu, 14 May 2009) | 4 lines
Label and Name work...
Fix one of Don's bugs (current name not given in dialogs)
------------------------------------------------------------------------
r967950 | fenton | 2009-05-14 10:06:11 -0400 (Thu, 14 May 2009) | 2 lines
Add saving of View size and resizing of ViewItem if View size does not match on reload.
------------------------------------------------------------------------
r967553 | fenton | 2009-05-13 10:31:21 -0400 (Wed, 13 May 2009) | 2 lines
Fix item drift on rotated objects.
------------------------------------------------------------------------
r967184 | fenton | 2009-05-12 15:58:50 -0400 (Tue, 12 May 2009) | 2 lines
Extend ArrowItem shape to include ArrowHead/Tail.
------------------------------------------------------------------------
r967112 | fenton | 2009-05-12 11:52:23 -0400 (Tue, 12 May 2009) | 3 lines
Merge in changes made in beta release branch.
Clean up lib line changes to be windows/unix specific.
------------------------------------------------------------------------
r967096 | fenton | 2009-05-12 10:21:18 -0400 (Tue, 12 May 2009) | 2 lines
Update bugs.
------------------------------------------------------------------------
r966686 | fenton | 2009-05-11 14:08:08 -0400 (Mon, 11 May 2009) | 2 lines
Rename Notes.
------------------------------------------------------------------------
r966606 | fenton | 2009-05-11 11:51:02 -0400 (Mon, 11 May 2009) | 2 lines
Add Notes and update release information.
------------------------------------------------------------------------
r964961 | fenton | 2009-05-07 14:30:30 -0400 (Thu, 07 May 2009) | 1 line
Add windows icon.
------------------------------------------------------------------------
r963438 | fenton | 2009-05-04 14:38:37 -0400 (Mon, 04 May 2009) | 2 lines
Fix qmake failure in windows.
------------------------------------------------------------------------
r963436 | fenton | 2009-05-04 14:34:45 -0400 (Mon, 04 May 2009) | 2 lines
Config cleanup.
------------------------------------------------------------------------
r963433 | fenton | 2009-05-04 14:34:25 -0400 (Mon, 04 May 2009) | 2 lines
Update Install note version.
------------------------------------------------------------------------
r963431 | fenton | 2009-05-04 14:32:18 -0400 (Mon, 04 May 2009) | 2 lines
Fix windows build error and segfault.
------------------------------------------------------------------------
r963421 | fenton | 2009-05-04 14:24:11 -0400 (Mon, 04 May 2009) | 2 lines
Fix windows build error.
------------------------------------------------------------------------
r963351 | fenton | 2009-05-04 11:29:27 -0400 (Mon, 04 May 2009) | 2 lines
Prevent error on Windows build when processing empty .pro.
------------------------------------------------------------------------
r963299 | fenton | 2009-05-04 09:13:01 -0400 (Mon, 04 May 2009) | 2 lines
Claim bug.
------------------------------------------------------------------------
r962627 | netterfield | 2009-05-02 14:57:38 -0400 (Sat, 02 May 2009) | 4 lines
Fix arrow bug;
update bug list.
------------------------------------------------------------------------
r962066 | netterfield | 2009-05-01 08:58:28 -0400 (Fri, 01 May 2009) | 5 lines
More accelerators.
Bug update.
------------------------------------------------------------------------
r961847 | fenton | 2009-04-30 15:57:07 -0400 (Thu, 30 Apr 2009) | 2 lines
Add configurable dirfile maker.
------------------------------------------------------------------------
r961799 | fenton | 2009-04-30 13:57:10 -0400 (Thu, 30 Apr 2009) | 2 lines
Remove old signal.
------------------------------------------------------------------------
r961798 | fenton | 2009-04-30 13:56:43 -0400 (Thu, 30 Apr 2009) | 2 lines
Fix Scalar test.
------------------------------------------------------------------------
r961777 | fenton | 2009-04-30 13:32:39 -0400 (Thu, 30 Apr 2009) | 2 lines
Warning cleanup.
------------------------------------------------------------------------
r961715 | fenton | 2009-04-30 10:56:56 -0400 (Thu, 30 Apr 2009) | 2 lines
Add dirty flag for PlotAxis to pickup changes made directly in PlotAxis dialog requiring a redraw.
------------------------------------------------------------------------
r961253 | netterfield | 2009-04-29 15:07:37 -0400 (Wed, 29 Apr 2009) | 4 lines
Update bug list
dialog accelerators
------------------------------------------------------------------------
r960557 | fenton | 2009-04-28 12:25:17 -0400 (Tue, 28 Apr 2009) | 2 lines
Add benchmarking for update process.
------------------------------------------------------------------------
r960510 | fenton | 2009-04-28 11:03:07 -0400 (Tue, 28 Apr 2009) | 2 lines
Fix update process not correctly updating scalars / strings of Primitives / DataObjects.
------------------------------------------------------------------------
r958850 | fenton | 2009-04-24 16:40:59 -0400 (Fri, 24 Apr 2009) | 4 lines
Eliminate large number of calls to update() on objects during update process.
Cleanup of unneeded dirty flag and checks for dirty.
Add save/restore for RealTimeAutoBin for Histograms.
------------------------------------------------------------------------
r958729 | fenton | 2009-04-24 10:27:59 -0400 (Fri, 24 Apr 2009) | 2 lines
Fix saving of PlotRenderItems and add saving of child viewItems.
------------------------------------------------------------------------
r958274 | netterfield | 2009-04-23 12:44:51 -0400 (Thu, 23 Apr 2009) | 4 lines
More accelerators
fix a crash case.
------------------------------------------------------------------------
r958249 | netterfield | 2009-04-23 11:58:51 -0400 (Thu, 23 Apr 2009) | 5 lines
New bug
Some accelerator work
header file changes for cfitsio to make it work w/ SUSE.
------------------------------------------------------------------------
r957557 | fenton | 2009-04-22 08:59:43 -0400 (Wed, 22 Apr 2009) | 2 lines
Update Bug List.
------------------------------------------------------------------------
r957358 | netterfield | 2009-04-21 17:08:05 -0400 (Tue, 21 Apr 2009) | 2 lines
More bugs and wishes
------------------------------------------------------------------------
r957356 | netterfield | 2009-04-21 17:07:11 -0400 (Tue, 21 Apr 2009) | 3 lines
Fix up some dialogs; add whatsthis.
------------------------------------------------------------------------
r957269 | fenton | 2009-04-21 13:53:30 -0400 (Tue, 21 Apr 2009) | 2 lines
Fix PlotItem failing to update on label change based standardization.
------------------------------------------------------------------------
r956839 | fenton | 2009-04-20 14:54:05 -0400 (Mon, 20 Apr 2009) | 2 lines
Update bug list.
------------------------------------------------------------------------
r956812 | fenton | 2009-04-20 13:21:09 -0400 (Mon, 20 Apr 2009) | 2 lines
Add saving of reference point and offset status.
------------------------------------------------------------------------
r955464 | fenton | 2009-04-17 13:59:37 -0400 (Fri, 17 Apr 2009) | 3 lines
Add caching of rendered label details.
Fix label alignment issues in Plots.
------------------------------------------------------------------------
r955448 | netterfield | 2009-04-17 12:55:32 -0400 (Fri, 17 Apr 2009) | 3 lines
More bugs and wishes.
------------------------------------------------------------------------
r954946 | netterfield | 2009-04-16 11:13:59 -0400 (Thu, 16 Apr 2009) | 6 lines
Update bug list:
Add some bugs
Report performance bug as fixed
Add 'wishlist' for features to be implememnted.
------------------------------------------------------------------------
r954944 | fenton | 2009-04-16 11:07:57 -0400 (Thu, 16 Apr 2009) | 2 lines
Cleanup compile warnings.
------------------------------------------------------------------------
r953795 | fenton | 2009-04-14 10:47:01 -0400 (Tue, 14 Apr 2009) | 2 lines
Remove pixmap based caching of labels. Add caching of parsed label.
------------------------------------------------------------------------
r953663 | fenton | 2009-04-14 09:06:45 -0400 (Tue, 14 Apr 2009) | 2 lines
Fix typo.
------------------------------------------------------------------------
r951617 | fenton | 2009-04-09 15:43:49 -0400 (Thu, 09 Apr 2009) | 2 lines
Cache entire PlotItem into pixmap.