forked from kwalus/QCADesigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8370 lines (5742 loc) · 260 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
2006-08-12 17:45 nix
* src/objects/QCADCell.c: When scaling all cells in the design,
make sure their properties reflect the new sizes.
2006-07-21 01:44 nix
* docs/reference/Makefile.am, docs/reference/QCADesigner-docs.sgml,
src/objects/QCADLayer.c, src/objects/QCADLayersCombo.c,
src/objects/QCADLayersCombo.h,
src/objects/QCADPropertyUIDouble.c,
src/objects/QCADPropertyUIInt.c,
src/objects/QCADPropertyUIText.c: More gtk-doc-umentation.
2006-07-20 17:13 nix
* docs/reference/Makefile.am,
docs/reference/QCADesigner-sections.txt,
docs/reference/QCADesigner.types, src/Makefile.am: Do not add .c
files to the list of files to link into a gtkdoc-scanner.
2006-07-19 09:38 nix
* docs/manual.src/create_import_block.html: Corrected duplicate
duplicate.
2006-07-19 09:17 nix
* docs/manual.src/hacking.html: More clarity as to where CVS
download instructions are located.
2006-07-19 09:12 nix
* docs/manual.src/installation.html: QCADesigner package metaname
fixups.
2006-07-19 09:08 nix
* docs/manual.src/installation.html: Typo.
2006-07-17 06:15 nix
* src/vector_table.c: Ignore NULLs in VectorTable_fill.
2006-07-17 06:14 nix
* src/: main_batch_sim.c, vector_table.c: Use VectorTable_fill
whenever starting a new simulation.
2006-07-17 06:01 nix
* src/main_batch_sim.c: Include decision to run
EXHAUSTIVE_VERIFICATION/VECTOR_TABLE in printf.
2006-07-17 02:28 nix
* src/main_batch_sim.c: When there's a vector table, set the
simulation type to VECTOR_TABLE.
2006-07-11 04:25 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/Makefile.am, src/main_batch_sim.c: Vector
table support for batch_sim.
2006-07-11 04:01 nix
* src/: Makefile.inc, graph_dialog_interface.c,
vector_table_options_dialog_callbacks.c,
vector_table_options_dialog_interface.c,
objects/QCADScrolledWindow.c, objects/QCADScrolledWindow.h:
Removed QCADScrolledWindow.
2006-07-10 01:51 nix
* src/: callbacks.c, interface.c: - Minor cosmetic tweaks. -
Disable "Start Simulation" while simulation is going on.
2006-06-30 20:44 nix
* src/: graph_dialog.c, graph_dialog_callbacks.c,
graph_dialog_data.c, graph_dialog_data.h,
graph_dialog_interface.c, graph_dialog_interface.h: Fixed graph
dialog resize bug.
2006-06-30 20:05 nix
* src/selection_undo.c: Added some comments.
2006-06-11 23:31 nix
* src/: callbacks.c, selection_undo.c, selection_undo.h: Use
design_selection_objects_foreach when ndoing/redoing
in(de)crement clock.
2006-06-11 22:21 nix
* src/: selection_renderer.c, selection_renderer.h: Added some doc
to selection_renderer.
2006-06-11 22:13 nix
* src/: selection_undo.c, actions/select.c,
objects/QCADDesignObject.c, objects/QCADLayer.c: [no log message]
2006-06-02 02:18 nix
* src/callbacks.c: Fixed rotation problem. In action button
clicked, replace gtk_toggle_button_get_active with g_object_get
(G_OBJECT (widget), "active", ...) That way, it's
type-independent.
2006-05-31 00:45 nix
* src/actions/select.c: Make Ctrl+click deselect object if
hit-tested.
2006-05-31 00:01 nix
* src/objects/QCADDesignObject.c: Fixing Ctrl+Select.
2006-05-28 20:37 nix
* docs/reference/Makefile.am,
docs/reference/QCADesigner-sections.txt, src/exp_pixmap.c,
src/exp_pixmap.h, src/actions/select.c, src/objects/QCADLabel.c,
src/objects/QCADLabel.h, src/objects/QCADToggleToolButton.c:
gtk-doc mods.
2006-05-26 15:47 nix
* src/objects/QCADDesignObject.c: Fixed(?) overlap of exactly
adjacent cells.
2006-05-22 21:03 nix
* src/objects/: QCADUndoEntry.c, QCADUndoEntry.h: Added gtk-doc to
QCADUndoEntry.
2006-05-22 20:00 nix
* src/objects/QCADUndoEntry.c: Trying to get QCADUndoEntry::apply
working ...
2006-05-15 22:36 nix
* src/: graph_dialog.c, graph_dialog_callbacks.c,
graph_dialog_callbacks.h, graph_dialog_data.c,
graph_dialog_data.h, graph_dialog_interface.c,
graph_dialog_interface.h: Moved to GtkSizeGroup from my hacky
make-all-graphs-same-cy solution.
2006-05-13 21:20 nix
* src/: bistable_simulation.c, design.c, design.h: Removed
REDUCE_DEREF from bistable sim.
2006-05-04 13:00 nix
* docs/reference/QCADesigner-sections.txt, src/objects/QCADCell.c:
Fixed the cell to display its polarization when set to FIXED.
2006-04-30 19:55 nix
* src/: print.c, objects/QCADDesignObject.c,
objects/QCADRectangleElectrode.c: Express "nmx" and "nmy" in
terms of "nm". That way, the scale can be adjusted with only one
modification.
2006-04-30 16:16 nix
* src/interface.c: Added "Copy" menu item to make Ctrl+C work.
2006-04-30 15:54 nix
* src/translate_selection_dialog.c: Fixed minor segfaults (forgot
NULL g_object_new terminator) in the translate selection dialog.
2006-04-30 14:58 nix
* src/: design.c, design.h, objects/QCADCell.c, objects/QCADCell.h:
Commented out stuff related to setting host names on cells.
2006-04-29 14:10 nix
* src/: callbacks.c, design.c, objects/QCADCell.c: Removed
"cell-function-changed" signal. "notify::function" is sufficient.
2006-04-28 02:37 nix
* ChangeLog: cvs2cl-ized the ChangeLog. Looks great!
2006-04-28 02:03 nix
* src/: callbacks.c, design.c, objects/QCADCell.c,
objects/QCADCell.h: Removed qcad_cell_set_display_mode. Use
g_object_set (G_OBJECT (cell), "mode", new_mode, NULL) ;
2006-04-27 14:40 nix
* docs/reference/QCADesigner-sections.txt,
src/objects/QCADDesignObject.c, src/objects/QCADLabel.c:
reference changes + QCADLabel get_PostScript_instance check.
2006-04-26 14:36 nix
* src/: print.c, actions/select.c, objects/QCADCell.c,
objects/QCADDesignObject.c, objects/QCADDesignObject.h: Converted
PostScript_preamble to a class function.
2006-04-23 22:19 nix
* src/main_combo_test.c: Minot changes to the combo test.
2006-04-23 03:10 nix
* docs/reference/QCADesigner-sections.txt, src/objects/QCADLayer.c,
src/objects/QCADLayer.h: Moved ALLOW_UNSERIALIZE_OVERLAP into
QCADLayer.c and out of QCADLayer.h.
2006-04-23 02:47 nix
* src/objects/: QCADCell.c, QCADPropertyUIGroup.c: Added to
QCADPropertyUIGroup.c the debug ability to colour in areas
between widgets. Changed order of QCADCell properties.
2006-04-21 23:49 nix
* docs/manual.src/hacking.html: Mention "ed" in the Windoze
section.
2006-04-21 22:40 nix
* docs/manual.src/hacking.html: More minor mods ...
2006-04-21 22:24 nix
* docs/manual.src/hacking.html: Minor mod ...
2006-04-21 22:23 nix
* docs/manual.src/hacking.html: Finished (?) manual hacking page.
2006-04-21 13:46 nix
* docs/manual.src/hacking.html: Progress on creating hacking
instructions for the various platforms.
2006-04-20 16:46 nix
* docs/: Makefile.inc, manual.src/hacking.html,
manual.src/menu.html: Added manual section about hacking.
2006-04-20 14:04 nix
* docs/reference/QCADesigner-docs.sgml: Quotes around signal names
are not part of the link.
2006-04-19 16:59 nix
* docs/reference/QCADesigner-docs.sgml: Fixed back code examples in
QCADPropertyUIs.html.
2006-04-19 14:16 nix
* docs/reference/QCADesigner-sections.txt, src/objects/QCADCell.c,
src/objects/QCADCell.h, src/objects/QCADComboBox.c,
src/objects/QCADObject.c, src/objects/QCADPrintDialog.c,
src/objects/QCADPrintDialog.h, src/objects/QCADPropertyUI.c,
src/objects/QCADPropertyUI.h,
src/objects/QCADPropertyUIBoolean.c,
src/objects/QCADPropertyUIEnum.c,
src/objects/QCADPropertyUIGroup.c,
src/objects/QCADPropertyUIInt.c,
src/objects/QCADPropertyUISingle.c: Documentation additions.
2006-04-19 10:43 nix
* src/: callbacks.c, coherence_vector.c, objects/QCADObject.c,
objects/QCADPropertyUI.c, objects/QCADPropertyUI.h,
objects/QCADPropertyUIGroup.c, objects/QCADPropertyUIGroup.h,
objects/QCADPropertyUIObjectList.c,
objects/QCADPropertyUISingle.c, objects/QCADPropertyUISingle.h:
Changes ...
2006-04-18 16:59 nix
* docs/reference/Makefile.am: Explain in the reference Makefile.am
how webdocs transforms the HTML generated by gtk-doc.
2006-04-18 16:27 nix
* docs/Makefile.inc, docs/reference/Makefile.am,
src/graph_dialog_widget_data.c: Add "Last Modified:" SSI tags and
shortcut icon to html-web/*.html. Minor fix in
graph_dialog_widget_data.c (Use dbg0 as index, not Nix).
2006-04-18 14:10 nix
* docs/manual.src/QCADesigner.ico: Removed
manual.src/QCADesigner.ico - I should be using
../pixmaps/QCADesigner.ico.
2006-04-17 01:57 nix
* Makefile.am, autogen.sh: Updated autogen.sh to be nicer ...
2006-04-17 01:36 nix
* src/: graph_dialog_interface.c, graph_dialog_widget_data.c,
graph_dialog_widget_data.h, main_batch_sim.c: Fixing
graph_dialog_widget_data bug.
2006-04-15 16:02 nix
* autogen.sh, configure.in, docs/reference/Makefile.am:
Automagically comment out GTK_DOC_CHECK if gtkdocize fails ...
2006-04-15 14:44 nix
* Makefile.am, docs/reference/Makefile.am,
docs/reference/QCADesigner-sections.txt,
docs/reference/QCADesigner.types,
src/objects/QCADCellRendererLayerList.c,
src/objects/QCADCellRendererLayerList.h: More gtk-doc-motivated
mods.
2006-04-15 03:00 nix
* docs/reference/QCADesigner-docs.sgml,
docs/reference/QCADesigner-sections.txt, src/callback_helpers.h,
src/callbacks.c, src/actions/select.c,
src/objects/QCADCellRendererText.c, src/objects/QCADComboBox.c,
src/objects/QCADObject.c, src/objects/QCADObject.h,
src/objects/QCADRadioButton.c, src/objects/QCADRadioButton.h,
src/objects/QCADRadioToolButton.c, src/objects/QCADSubstrate.c,
src/objects/QCADToggleToolButton.c,
src/objects/QCADToggleToolButton.h: Introduced some grouping into
the doc sections.
2006-04-14 16:41 nix
* src/objects/QCADStretchyObject.c: Doc updates.
2006-04-14 16:40 nix
* Makefile.am: Better filtering for files not to get rid of in
docs/reference
2006-04-14 09:44 nix
* docs/reference/Makefile.am,
docs/reference/QCADesigner-sections.txt,
docs/reference/QCADesigner.types, src/objects/QCADCell.c,
src/objects/QCADCellRendererText.c,
src/objects/QCADCellRendererText.h, src/objects/QCADComboBox.c,
src/objects/QCADComboBox.h, src/objects/QCADDesignObject.c,
src/objects/QCADLayersCombo.c, src/objects/QCADObject.c,
src/objects/QCADPrintDialog.c, src/objects/QCADPropertyUIGroup.c,
src/objects/QCADPropertyUIObjectList.c,
src/objects/QCADPropertyUISingle.c,
src/objects/QCADRadioButton.h,
src/objects/QCADToggleToolButton.h: Make workaround classes be
empty if the appropriate version of GTK is present.
2006-04-11 18:54 nix
* Makefile.am, docs/reference/Makefile.am,
docs/reference/QCADesigner-docs.sgml,
docs/reference/QCADesigner-sections.txt,
docs/reference/QCADesigner.types, src/design.c, src/design.h,
src/exp_array.h, src/print.h, src/objects/QCADCell.c,
src/objects/QCADDesignObject.c, src/objects/QCADFlexiCombo.h:
gtk-doc mods, including sed-ing hrefs to send people to
http://developer.gnome.org/doc/API/2.0 Added documentation to
QCADDesignObject ...
2006-04-11 05:00 nix
* Makefile.am, autogen.sh, configure.in, docs/Makefile.am,
docs/reference/Makefile.am, docs/reference/QCADesigner-docs.sgml,
docs/reference/QCADesigner-sections.txt,
docs/reference/QCADesigner.types, docs/reference/gtkdoc.h,
src/Makefile.am, src/design.c, src/design.h,
src/graph_dialog_widget_data.h, src/print.h,
src/simulation_data.h, src/objects/QCADCell.c,
src/objects/QCADCell.h, src/objects/QCADElectrode.h,
src/objects/QCADLayersCombo.h, src/objects/QCADObject.c,
src/objects/QCADRectangleElectrode.h: Initial gtk-doc support.
2006-04-10 20:49 nix
* src/objects/: QCADLayer_priv.c, QCADLayer_priv.h,
QCADLayer_properties.c, QCADLayer_properties.h: Removed some
ancient files.
2006-04-09 17:54 nix
* src/: callbacks.c, graph_dialog_callbacks.c, print.c, print.h,
print_graph.c, print_graph_properties_dialog.c,
print_properties_dialog.c, print_properties_dialog_interface.c,
print_properties_dialog_interface.h, objects/QCADLabel.c,
objects/QCADPrintDialog.c, objects/QCADPrintDialog.h,
objects/QCADSubstrate.c: More PostScript stuff needed converting
from %lf to %s + g_ascii_dtostr ...
2006-04-07 03:32 nix
* src/objects/: QCADPrintDialog.c, QCADPrintDialog.h: Added a
double to QCADPrintDialog::units_changed.
2006-04-06 17:15 nix
* src/: print_properties_dialog.c,
print_properties_dialog_callbacks.h, objects/QCADPrintDialog.c,
objects/QCADPrintDialog.h: Updated the
QCADPrintDialog::units_changed signal to include the conversion
factor for old_units -> new_units as a parameter.
2006-04-06 15:25 nix
* src/interface.c: Restored ruler creation to a full g_object_new
call with casts in front of double args as advised in
http://bugzilla.gnome.org/show_bug.cgi?id=337315
2006-04-05 23:09 nix
* src/: graph_dialog.c, print.c, print_graph.c,
print_properties_dialog.c, print_properties_dialog_interface.c,
print_util.c, print_util.h, objects/QCADElectrode.c,
objects/QCADLabel.c: Unified graph and design printing somewhat.
Updated PostScript text placement to include character descent.
2006-04-05 03:34 nix
* src/interface.c: [no log message]
2006-04-05 03:18 nix
* src/: about.c, interface.c: Moving stuff over to g_object_new ...
2006-04-05 02:50 nix
* TODO: [no log message]
2006-04-05 00:54 nix
* src/: custom_widgets.c, custom_widgets.h,
vector_table_options_dialog_callbacks.c,
objects/QCADFlexiCombo.c: Queue column autosize when values
edited. Can't do this inline, inside vector_value_edited, because
it might result in the column being destroyed.
2006-04-05 00:16 nix
* src/: callbacks.c, print.c, print.h, print_properties_dialog.c,
print_properties_dialog_callbacks.h,
print_properties_dialog_interface.c,
print_properties_dialog_interface.h: Changed print dialog layer
list to a GtkTreeView.
2006-04-03 22:45 nix
* src/: design.c, interface.c, preamble.c: Removed layer_stock_id
array.
2006-04-03 19:25 walus
* src/: three_state_coherence.c, objects/QCADElectrode.c: fixed
phase calculation in QCADElectrode
2006-04-03 17:56 nix
* src/: vector_table_options_dialog_callbacks.c,
objects/QCADFlexiCombo.c: Disable dialog when switching from
vector table to exhaustive and vice versa, because it takes a
long time to update the UI and the user must not click things
during that time.
2006-04-03 15:06 nix
* src/: main_combo_test.c, objects/QCADFlexiCombo.c,
objects/QCADLayersCombo.c, objects/QCADPropertyUIInt.c: Doesn't
look quite right on clearlooks, but QCADLayersCombo looks OK.
2006-04-03 03:59 nix
* src/: interface.h, main_combo_test.c: Fixed combo_test not to use
layers combo.
2006-04-03 03:56 nix
* src/: Makefile.am, file_selection_window.c, layers_combo.c,
layers_combo.h, objects/QCADCellRendererText.c,
objects/QCADTreeViewCombo.c, objects/QCADTreeViewCombo.h: Removed
old layers combo-related files.
2006-04-03 03:38 nix
* src/objects/: QCADCellRendererLayerList.c,
QCADCellRendererText.c: Making "sensitive" work ...
2006-04-03 02:43 nix
* src/: Makefile.am, about.c, callbacks.c, callbacks.h,
custom_widgets.c, custom_widgets.h, design.c, interface.c,
interface.h, layer_mapping_dialog.c, main_combo_test.c,
objects/QCADCellRendererLayerList.c,
objects/QCADCellRendererLayerList.h,
objects/QCADCellRendererText.c, objects/QCADCellRendererText.h,
objects/QCADCellRendererVT.c, objects/QCADCellRendererVT.h,
objects/QCADFlexiCombo.c, objects/QCADFlexiCombo.h,
objects/QCADLayersCombo.c, objects/QCADLayersCombo.h,
objects/QCADTreeViewCombo.c: Added QCADCellRendererText.
2006-04-02 04:40 nix
* src/: Makefile.am, main_combo_test.c, objects/QCADFlexiCombo.c,
objects/QCADFlexiCombo.h, objects/QCADLayersCombo.c,
objects/QCADLayersCombo.h: Added QCADFlexiCombo and
QCADLayersCombo.
2006-04-01 21:52 nix
* TODO: How do you load a vector table if you have editable input
traces.
2006-03-30 17:18 nix
* pixmaps/QCADesigner-logo.svg: Added the SVG logo to CVS once and
for all.
2006-03-29 16:53 nix
* src/preamble.c: Added new png stock icons.
2006-03-29 16:42 nix
* pixmaps/: exhaustive_verification.png, no_show_potential.png,
no_show_potential.svg, show_potential.png, show_potential.svg,
vector_table_simulation.png: PNG files for the new stock icons.
2006-03-29 15:42 nix
* src/: vector_table_options_dialog.c,
vector_table_options_dialog_callbacks.c,
vector_table_options_dialog_callbacks.h,
vector_table_options_dialog_interface.c: Only update tree view
columns when the widget is realized.
2006-03-29 15:12 nix
* src/vector_table_options_dialog_callbacks.c: queue resize when
you edit the vector table value.
2006-03-29 13:12 mazur
* autogen.sh: Replaced /all/ instances of "[" with "test".
2006-03-29 13:10 mazur
* autogen.sh: Replaced "[" - based test with "test".
2006-03-28 19:42 nix
* src/objects/QCADPropertyUIInt.c: Hopefully I fixed malfunction of
QCADPropertyUIInt.GtkComboBox.
2006-03-28 18:53 nix
* src/objects/QCADPropertyUIInt.c: /Always/ create model for
QCADPropertyUIInt combo box, but leave it with no rows if
render_as is not GTK_TYPE_COMBO_BOX.
2006-03-28 15:41 nix
* src/: Makefile.inc, objects/QCADComboBox.c,
objects/QCADComboBox.h, objects/QCADPropertyUIEnum.c,
objects/QCADPropertyUIInt.c: Added another workaround ... lovely
...
2006-03-27 16:14 nix
* src/vector_table_options_dialog_callbacks.c: Fixed results of
adding "path" to QCADCellRendererVT "toggled" signal.
2006-03-27 15:54 nix
* pixmaps/Makefile.am, pixmaps/exhaustive_verification.svg,
pixmaps/vector_table_simulation.svg, src/preamble.c,
src/qcadstock.h, src/support.c,
src/vector_table_options_dialog_interface.c: Added stock icons
for exhaustive and vector table.
2006-03-27 13:07 nix
* src/objects/QCADPropertyUIGroup.c: Set default action for
QCADPropertyUIGroup.
2006-03-27 05:08 nix
* src/: Makefile.am, Makefile.snippet: Make Windoze builds slightly
faster by storing dependencies.
2006-03-26 23:19 nix
* src/layer_order_dialog.c: Did gtk_window_present for the layer
order dialog.
2006-03-26 23:07 nix
* po/it.po, src/objects/QCADPrintDialog.c: Fixed print dialog
preview as well as a string.
2006-03-26 22:45 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/bistable_properties_dialog.c,
src/coherence_vector_properties_dialog.c, src/preamble.c: Fixed
the phase shift messages.
2006-03-26 18:41 nix
* src/: main_batch_sim.c, main_graph_dialog.c, preamble.c: Windoze
mods, and removed test code.
2006-03-26 18:29 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/main_batch_sim.c,
src/main_graph_dialog.c, src/preamble.c,
src/waveform_interpretation_dialog.c: Using setlocale when not
GTK_GUI
2006-03-26 17:22 nix
* src/Makefile.mingw: Minor change.
2006-03-26 16:40 nix
* po/: QCADesigner.pot, de.po, fr.po, hu.po, it.po, pl.po, ro.po:
Added batch_sim usage string to QCADesigner.pot et. al.
2006-03-26 16:33 nix
* Makefile.am: Make src last.
2006-03-26 16:22 nix
* src/print_properties_dialog.c: Removed some warnings.
2006-03-26 16:15 nix
* src/: preamble.c, objects/QCADPrintDialog.c,
objects/QCADPrintDialog.h: Win32 mods ...
2006-03-26 16:04 nix
* src/: bus_layout_dialog.c, callbacks.c,
coherence_vector_properties_dialog.c, custom_widgets.c,
interface.c, print_properties_dialog.c,
print_properties_dialog_interface.c, qcadstock.h, recent_files.c,
sim_engine_setup_dialog.c,
ts_coherence_vector_properties_dialog.c, objects/QCADCell.c,
objects/QCADPrintDialog.c, objects/QCADPrintDialog.h,
objects/QCADPropertyUIEnum.c, objects/QCADPropertyUIInt.c:
ABOLISH DEPRECATION !
2006-03-25 21:47 nix
* src/: gtk_preamble.c, gtk_preamble.h, preamble.c, preamble.h:
Renamed gtk_preamble to preamble.
2006-03-25 21:42 nix
* src/: Makefile.am, Makefile.mingw, main.c, main_batch_sim.c,
main_combo_test.c, main_graph_dialog.c,
objects/QCADTreeViewCombo.c: Factored preamble out of
gtk_preamble.
2006-03-25 17:59 nix
* src/: generic_utils.c, generic_utils.h,
objects/QCADPropertyUIEnum.c, objects/QCADPropertyUIInt.c,
objects/QCADPropertyUIText.c: Replaced property UI option menus
with combo boxes.
2006-03-24 19:42 nix
* po/it.po: Esci /da/ QCADesigner
2006-03-24 19:33 nix
* po/de.po: "Icons", not "icons" in German.
2006-03-24 16:23 nix
* src/Makefile.am: libs for combo_test
2006-03-24 16:20 nix
* src/combo_test-icon.rc: Forgot rc file.
2006-03-24 16:19 nix
* po/it.po: Minor changes (removed some infinitives).
2006-03-24 16:11 nix
* src/main_combo_test.c: Nix
2006-03-24 15:54 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/main_batch_sim.c, src/main_combo_test.c:
[no log message]
2006-03-24 15:33 nix
* po/QCADesigner.pot, src/Makefile.am, src/main_batch_sim.c: [no
log message]
2006-03-24 15:24 nix
* src/: Makefile.am: [no log message]
2006-03-24 15:12 nix
* src/objects/QCADTreeViewCombo.c: need .. for objects/ files
2006-03-24 15:08 nix
* src/objects/QCADTreeViewCombo.c: #include "../intl.h"
2006-03-24 12:09 nix
* src/main_batch_sim.c: Marked main_batch_sim strings for
translation.
2006-03-24 02:54 nix
* po/it.po: Minor changes ...
2006-03-24 02:02 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/sim_engine_setup_dialog.c,
src/actions/select.c, src/objects/QCADTreeViewCombo.c: More
language stuff, including new strings. Restored grabbing.
2006-03-23 23:05 nix
* po/: QCADesigner.pot, de.po, fr.po, hu.po, it.po, pl.po, ro.po:
Added Marco's translation.
2006-03-23 16:45 nix
* src/: Makefile.am, callbacks.c, interface.c, layers_combo.c,
main_combo_test.c, objects/QCADTreeViewCombo.c: Removed
reorderability from the layers tree view.
2006-03-22 21:13 nix
* src/: Makefile.am, callbacks.c, callbacks.h, design.c, design.h,
gtk_preamble.c, interface.c, interface.h, layer_mapping_dialog.c,
layers_combo.c, layers_combo.h,
vector_table_options_dialog_callbacks.c,
objects/QCADTreeViewCombo.c: Merged stuff from QCADTreeViewCombo.
2006-03-22 20:37 nix
* src/: Makefile.am, callbacks.c, callbacks.h, design.c, design.h,
gtk_preamble.c, interface.c, interface.h, layer_mapping_dialog.c,
layers_combo.c, layers_combo.h, main_combo_test.c,
vector_table_options_dialog_callbacks.c,
objects/QCADTreeViewCombo.c, objects/QCADTreeViewCombo.h: [no log
message]
2006-03-22 18:46 nix
* src/: layers_combo.c, layers_combo.h: Factored out layers combo
2006-03-22 06:27 nix
* src/: Makefile.am, objects/QCADTreeViewCombo.c: Going back to my
branch.
2006-03-22 04:21 nix
* src/: interface.c, objects/QCADTreeViewCombo.c,
objects/QCADTreeViewCombo.h: Re-introduced size_allocate
2006-03-22 03:54 nix
* src/: Makefile.am, callbacks.c, callbacks.h, custom_widgets.c,
custom_widgets.h, interface.c, interface.h, main_combo_test.c,
objects/QCADCellRendererVT.c, objects/QCADLayer.c,
objects/QCADLayer.h, objects/QCADTreeViewCombo.c,
objects/QCADTreeViewCombo.h: QCADTreeViewCombo should now work.
2006-03-22 03:07 nix
* src/: callbacks.c, custom_widgets.c, custom_widgets.h,
objects/QCADCellRendererVT.c, objects/QCADTreeViewCombo.c: Final
commit (?)
2006-03-21 19:16 nix
* src/: Makefile.am, callbacks.c, callbacks.h, interface.c,
interface.h, main_combo_test.c, objects/QCADLayer.c,
objects/QCADLayer.h, objects/QCADTreeViewCombo.c,
objects/QCADTreeViewCombo.h: Progress on integrating the
QCADTreeViewCombo as the layers_combo.
2006-03-21 17:02 nix
* src/: Makefile.am, callbacks.c, interface.c, main_combo_test.c,
objects/QCADTreeViewCombo.c: Turning combo_test back on.
2006-03-21 16:28 nix
* src/: Makefile.am, callbacks.c, callbacks.h, interface.c,
interface.h, objects/QCADTreeViewCombo.c,
objects/QCADTreeViewCombo.h: Need to work on QCADTreeViewCombo
2006-03-20 23:05 nix
* src/: Makefile.am, layer_order_dialog.c: Minor fixes ...
2006-03-20 22:56 nix
* src/objects/: QCADTreeViewContainer.c, QCADTreeViewContainer.h:
Removed QCADTreeViewContainer
2006-03-20 22:54 nix
* src/objects/: QCADTreeViewCombo.c, QCADTreeViewCombo.h: Added
QCADTreeViewCombo ...
2006-03-20 13:31 nix
* po/it.po: Don't mess with languages you don't speak.
2006-03-20 13:02 nix
* QCADesigner-win32-gtk.iss.in, QCADesigner-win32.iss.in,
src/Makefile.mingw, src/file_selection_window.c: Minor
Windoze-necessary changes plus a file_selection_window bugfix.
2006-03-20 03:18 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/Makefile.inc, src/about.c,
src/bus_layout_dialog.c, src/callbacks.c, src/custom_widgets.c,
src/custom_widgets.h, src/file_selection_window.c,
src/file_selection_window.h, src/generic_utils.c,
src/generic_utils.h, src/graph_dialog_callbacks.c,
src/graph_dialog_callbacks.h, src/graph_dialog_interface.c,
src/graph_dialog_widget_data.c, src/interface.c,
src/three_state_coherence.c, src/vector_table_options_dialog.c,
src/vector_table_options_dialog_callback_helpers.h,
src/vector_table_options_dialog_callbacks.c,
src/vector_table_options_dialog_callbacks.h,
src/vector_table_options_dialog_data.c,
src/vector_table_options_dialog_data.h,
src/vector_table_options_dialog_interface.c,
src/vector_table_options_dialog_interface.h,
src/objects/QCADCellRendererVT.c,
src/objects/QCADCellRendererVT.h,
src/objects/QCADClockingLayer.c, src/objects/QCADLayer.c,
src/objects/QCADScrolledWindow.c: Merged new vector table dialog,
plus switch to GtkFileChooser, plus translation improvements.
2006-03-20 02:37 nix
* po/QCADesigner.pot, po/de.po, po/fr.po, po/hu.po, po/it.po,
po/pl.po, po/ro.po, src/file_selection_window.c,
src/graph_dialog_interface.c, src/vector_table_options_dialog.c,
src/vector_table_options_dialog_callbacks.c,
src/vector_table_options_dialog_interface.c,
src/vector_table_options_dialog_interface.h,
src/objects/QCADClockingLayer.c, src/objects/QCADLayer.c: Minor
changes.
2006-03-20 00:30 nix
* src/: Makefile.inc, vector_table_options_dialog_data.c,
vector_table_options_dialog_data.h: Removed
vector_table_options_dialog_data.[ch] .
2006-03-20 00:12 nix
* src/: file_selection_window.c, file_selection_window.h,
graph_dialog_interface.c,
vector_table_options_dialog_callbacks.c,
vector_table_options_dialog_interface.c: Finished (?) vector
table options dialog.
2006-03-19 01:39 nix
* src/: bus_layout_dialog.c, graph_dialog_callbacks.c,
vector_table_options_dialog.c,
vector_table_options_dialog_callbacks.c: More work on vtod.
2006-03-19 00:28 nix
* po/it.po: Added preamble to Italian translation.
2006-03-18 01:41 nix
* src/: vector_table_options_dialog.c,
vector_table_options_dialog_callbacks.c,
vector_table_options_dialog_interface.c: Trying to insert a
right-pad.
2006-03-18 00:12 nix
* po/fr.po, po/it.po, src/Makefile.inc, src/about.c,
src/callbacks.c, src/custom_widgets.c, src/custom_widgets.h,
src/file_selection_window.c, src/generic_utils.c,
src/generic_utils.h, src/graph_dialog_callbacks.c,
src/graph_dialog_callbacks.h, src/graph_dialog_interface.c,
src/graph_dialog_widget_data.c, src/interface.c,
src/three_state_coherence.c, src/vector_table_options_dialog.c,
src/vector_table_options_dialog_callback_helpers.h,
src/vector_table_options_dialog_callbacks.c,
src/vector_table_options_dialog_callbacks.h,
src/vector_table_options_dialog_interface.c,
src/vector_table_options_dialog_interface.h,
src/objects/QCADCellRendererVT.c,
src/objects/QCADCellRendererVT.h,
src/objects/QCADScrolledWindow.c: Committing changes to this tag.
2006-03-16 16:58 nix
* src/vector_table_options_dialog_callback_helpers.h: Things that
are in _callbacks.c but also used in
vector_table_options_dialog_*.c
2006-03-14 12:52 nix
* configure.in: Added Italian support.
2006-03-14 12:52 nix
* po/: QCADesigner.pot, de.po, fr.po, hu.po, it.po, pl.po, ro.po:
Added italian support and some minor mods.
2006-03-13 15:45 nix
* TODO: How shall we render parameter ranges ?
2006-03-13 15:41 nix
* TODO: Added Marco's idea about a parameter analysis tool to TODO.
2006-03-13 15:33 nix
* src/: bistable_properties_dialog.c, bistable_simulation.c,
bistable_simulation.h, coherence_vector.c, coherence_vector.h,
coherence_vector_properties_dialog.c, fileio.c: Contributed by
Marco Ottavi of Northeastern University: - Introduce ability to
phase shift clocks by a user-specified percentage of Pi / 2.
The four phase shifts are recorded in the simulation options
structure and they are applied when clock_data is constructed
during simulation. The phase shifts are implemented for the
bistable and coherence vector engines and they are accessible
via the respective simulation options GUIs.
2006-03-08 15:57 nix
* src/bus_layout_dialog.c: Fixed situation where bus name is "".
2006-03-07 15:42 nix
* src/main_batch_sim.c: [no log message]
2006-03-07 14:57 nix
* src/Makefile.mingw: Forgot to set the CFLAGS back to -O2...
2006-03-07 14:56 nix
* src/: Makefile.mingw, fileio_helpers.c, main_batch_sim.c:
Tinkered with main_batch_sim to make it work in Windoze.
2006-03-07 13:44 nix
* src/: fileio_helpers.c, fileio_helpers.h: Added flush_fprintf
function.
2006-03-07 05:30 nix
* po/de.po, src/graph_dialog_callbacks.c,
src/graph_dialog_interface.c, src/layer_order_dialog.c,
src/translate_selection_dialog.c: Minor cosmetic fixes ...
2006-03-07 04:23 nix
* autogen.sh: Minor autogen.sh mod.