-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathChangeLog
2010 lines (1338 loc) · 64.2 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
2011-03-18 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (slotOpenContent): Allowing double click on .vhd files.
* schematic_file.cpp (saveSymbolCpp): Including terminal centers
into computation of the boundig box when exporting the C++ code
for the symbol.
* qucsdigilib.bat, qucsdigi.bat: Fixing digital simulation
scripts.
2011-03-10 Stefan Jahn <stefan@lkcc.org>
* dialogs/settingsdialog.cpp (SettingsDialog): Fixed position of
data display and dataset input text fields.
2011-03-09 Stefan Jahn <stefan@lkcc.org>
* diagrams/graph.cpp (getSelected): Fixed out-of-bounds access for
diagrams with invalid (empty) graphs clicking into the diagram for
selecting.
2011-03-08 Stefan Jahn <stefan@lkcc.org>
* dialogs/settingsdialog.cpp (SettingsDialog): Added script
setting to simulations. The script can be enabled to be run after
simulation.
2011-03-07 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (slotFileSettings), textdoc.cpp (createPopupMenu):
Disabling document settings dialog for Octave files.
2011-03-06 Stefan Jahn <stefan@lkcc.org>
* qucs_de.ts: Updated German translations.
2011-03-05 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (saveSymbolCpp): Fixed bounding box
calculation for generated C++ symbol code.
* syntax.cpp: Added syntax highlighting for Octave files.
2011-03-04 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (openProject): When changing projects, also change
Octave current directory.
* octave/getQucsVariable.m, octave/showQucsDataSet.m,
octave/loadQucsDataSet.m: Added default scripts.
* octave_window.cpp (OctaveWindow): Setting fixed-width font for
Octave window. Adding Octave script path location for default
scripts.
* paintings/graphictext.cpp (saveCpp): Fixed text rotation of
generated Text() component.
2011-03-03 Stefan Jahn <stefan@lkcc.org>
* octave_window.cpp (startOctave): First implementation of
GNU Octave connection to qucs. Thank you very much Michael!
2011-03-01 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (QucsApp): Fixed usage for "qucs <filename>" on command
line.
* dialogs/simmessage.cpp (startSimulator): Avoid outputting file
names of library file include names into the netlist.
2010-04-14 Stefan Jahn <stefan@lkcc.org>
* schematic.cpp (setName): Handling schematic etc. filenames with
a '.' (dot) in the filename correctly.
2010-03-28 Stefan Jahn <stefan@lkcc.org>
* qucs_actions.cpp (slotSelect): Avoid going to select mode when
in wiring mode. Just goto new wiring mode with current path
deleted.
* diagrams/diagramdialog.cpp (DiagramDialog): Allowing to
double-click on "Graph" list to remove the graph. Consistent to
double-click on "Dataset" to add a graph.
* mouseactions.cpp (rightPressMenu): Added hierarchy menu items to
right-click menu when appropriate.
2009-11-08 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (slotSetCompView, fillComboBox, slotSelectComponent):
Using new module/category interface for filling the component view
and instantiating components for use on the schematic.
* module.cpp: New components are now registered in
registerModules() function for static linking. This is now the
only location where to tell the application about such a
component.
* module.h (class Module): Implemented new module and category
classes for use as dynamic lists for available components seen in
the component tab.
2009-10-27 Stefan Jahn <stefan@lkcc.org>
* paintings/rectangle.cpp, paintings/portsymbol.cpp,
paintings/id_text.cpp, paintings/graphictext.cpp,
paintings/graphicline.cpp, paintings/ellipsearc.cpp,
paintings/ellipse.cpp, paintings/arrow.cpp (saveCpp): Added
support functions for saving drawing as C++ code snippet.
* dialogs/vasettingsdialog.cpp (VASettingsDialog): Added new
property dialog for Verilog-A files.
* textdoc.cpp (getModuleName): Added function to obtain
module/entity name of a text file (e.g. Verilog or VHDL).
(saveSettings): Saving additional settings for Verilog-A text
files.
* schematic_file.cpp (saveSymbolCpp): Added code to save C++
symbol drawing code into the dataset of a schematic.
(saveDocument): Usin above function to save C++ code of a symbol
drawing document associated with a Verilog-A file.
* schematic.cpp (adjustPortNumbers): Creating/updating Verilog-A
text file's default symbol when switching to symbol page.
2009-10-25 Stefan Jahn <stefan@lkcc.org>
* dialogs/qucssettingsdialog.cpp (QucsSettingsDialog): Added
syntax highlighting color settings for directives and tasks.
2009-10-24 Stefan Jahn <stefan@lkcc.org>
* syntax.cpp (highlightParagraph): Added syntaxhighlighting for
Verilog-A sources.
* qucs.cpp (initContentListView): Added new 'Verilog-A' file
content tab. VA files can now be edited in builtin text editor.
* textdoc.cpp (becomeCurrent): Changing menu entry for skeleton
inserting depending on the language.
(commentSelected): Disabling code depending on language.
(insertSkeleton): Inserting module/entity prototype depending on
language.
* qucsdoc.cpp: Added helper functions for document file suffix and
basename extraction.
* qucs.cpp (slotCMenuDelGroup): Additionally removing '*.sym'
files during group removal.
2009-10-23 Stefan Jahn <stefan@lkcc.org>
* syntax.cpp (highlightParagraph): Added support for (* *)
comments in Verilog-HDL files. Also nested comments are allowed.
* schematic.cpp (adjustPortNumbers): Support for creation of
Verilog-HDL text file's default symbol.
2009-10-22 Stefan Jahn <stefan@lkcc.org>
* syntax.cpp (markWord): Syntax highlighting now depends on the
language of the displayed language. Added support for
Verilog-HDL.
* textdoc.cpp (TextDoc): Setting up current (computer) language
when loading a document and passing it to the syntax highlighter.
* qucs.cpp (slotOpenContent): Allowing Verilog-HDL (.v) files to
be double-clicked in Content-Tab, which opens the file in builtin
text editor.
2009-10-19 Stefan Jahn <stefan@lkcc.org>
* textdoc.cpp: Moved syntax highligther class into 'syntax.cpp'
file.
* schematic.cpp (adjustPortNumbers): If symbol for text file is
requested, then create default symbol for VHDL files.
* qucs.cpp (slotSymbolEdit): Allowing to edit symbols for text
documents.
2009-10-11 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (startSimulator): Simulation of VHDL
files are now able to reference into pre-compiled modules, i.e.
libraries.
2009-10-09 Stefan Jahn <stefan@lkcc.org>
* qucsdigilib: Putting all modules into a library when creating a
new module.
2009-10-06 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (startSimulator): Implemented module
pre-compilation for VHDL files.
2009-10-05 Stefan Jahn <stefan@lkcc.org>
* dialogs/importdialog.cpp (slotImport): Added new Matlab file
format to the list of output file formats.
2009-05-17 Stefan Jahn <stefan@lkcc.org>
* Makefile.am (TRANSLATIONS): Added Kazakh translations.
2009-05-13 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (fillComboBox): Applied a patch making it easier to
deal with switching between component groups.
2009-05-04 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createSubNetlistPlain): Allow equations to
be put into Verilog and VHDL netlists.
2009-04-17 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createSubNetlistPlain): Create parameter
lists in Verilog-HDL subcircuits.
2009-04-16 Stefan Jahn <stefan@lkcc.org>
* dialogs/labeldialog.cpp (LabelDialog): Allow input of global
nodes such as "subst!".
* paintings/id_dialog.cpp (ID_Dialog): Added new 'Type' property
for subcircuit parameters.
* schematic_file.cpp (createSubNetlistPlain): Using new 'Type'
property for subcircuit parameters for passing them to generic
VHDL parameters.
2009-04-13 Stefan Jahn <stefan@lkcc.org>
* qucs_jp.ts: Updated Japanese translation. Thanks to Ishikawa!
2009-04-07 Stefan Jahn <stefan@lkcc.org>
* qucs_ru.ts: Updated Russian translations.
* textdoc.cpp (createPopupMenu): Added "Document properties" to
the right click popup menu in text editor files.
* schematic_file.cpp (createSubNetlistPlain): Using generic()
definitions for subcircuit parameters in VHDL.
* qucs_ar.ts: Updated arabic translations. Thanks to Chabane!
2009-03-30 Stefan Jahn <stefan@lkcc.org>
* diagrams/tabdiagram.cpp (calcDiagram): Fixed a segfault bug
occurring when an dependent variable without data points is meant
to be displayed.
2009-03-29 Stefan Jahn <stefan@lkcc.org>
* diagrams/timingdiagram.cpp (calcDiagram): Fixed display of
negative real numbers. For complex numbers we use magnitude.
2009-03-28 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (startSimulator): Fixed bug for netlist
creation from library components with library includes.
* dialogs/librarydialog.cpp (slotNext): Fixed "endless loop" bug
during library creation.
2009-03-17 Stefan Jahn <stefan@lkcc.org>
* dialogs/importdialog.cpp (slotImport): Dialog can now also
export data. It's a complete frontend for the QucsConv command
line tool.
2009-03-12 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp: Some code cleanup. Also fixed a problem
with subcircuits containing VHDL files: passing signal types up
also when more than one instance of the subcircuit is on the
schematic.
2009-03-10 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createSubNetlistPlain): Adjusting type
specifiers of VHDL subcircuits according to arbitrary signal types
in VHDL files.
2008-11-27 Stefan Jahn <stefan@lkcc.org>
* dialogs/vtabbutton.cpp (drawButton): Adjusted code to work with
MacOSX as well. Thanks to Gopala.
* bitmaps/Makefile.am (MACICONS): Added MacOSX icons.
* main.cpp (main): Initial position is centered on the screen.
2008-11-05 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createSubNetlistPlain): Fixed netlist bug
occurring when subcircuit port numbers are missing.
2008-10-25 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* schematic.cpp (paintFrame): Added US letter formats for the
schematic frame.
2008-09-25 Stefan Jahn <stefan@lkcc.org>
* qucsdigi (LIBTOOL): Using new 'freehdl-config --linker' command
to obtain system libtool program.
2008-08-06 Stefan Jahn <stefan@lkcc.org>
* dialogs/digisettingsdialog.cpp (slotOk): Transfering digital
setting into the appropriate textdoc.
* textdoc.cpp (saveSettings, loadSettings): Implemented load/save
functionality for digital setting (e.g. simulation time).
2008-05-05 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (saveAs): Using single directory variable for both Open
and SaveAs as last directory.
2008-04-16 Stefan Jahn <stefan@lkcc.org>
* dialogs/digisettingsdialog.cpp (DigiSettingsDialog): Started to
add settings for pre-compiled digital simulation modules.
2008-03-25 Stefan Jahn <stefan@lkcc.org>
* schematic.cpp (save), textdoc.cpp (save): Fixed save timestamp
"bug". Only occurred on Win32...
* qucs_tr.ts, qucs_ru.ts: Updated russian and turkish
translations.
2008-03-08 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (prepareNetlist): Fixed bug occuring with
verilog-hdl subcircuits including delays (timescale must be set
previously).
2008-03-01 Stefan Jahn <stefan@lkcc.org>
* viewpainter.cpp, schematic.cpp: Fixed printing (font sizes)
under Win32 using some work-arounds.
2008-02-17 Stefan Jahn <stefan@lkcc.org>
* qucsdigi: Using libtool instead of freehdl-libtool for linking
FreeHDL binaries.
2008-02-15 Stefan Jahn <stefan@lkcc.org>
* Fixed some compile warnings for g++ 4.3 version.
2008-02-09 Stefan Jahn <stefan@lkcc.org>
* paintings/graphictextdialog.cpp (GraphicTextDialog): Hotkey for
OK (Alt-O) and Cancel (Alt-C) button added.
2008-02-01 Stefan Jahn <stefan@lkcc.org>
* diagrams/graph.cpp (paint): Using 'PrinterScale' to magnify line
thickness of graphs correctly.
* viewpainter.cpp (drawTextMapped): Introduced 'PrinterScale'
property and thus are able to print subscript and superscript
correctly.
2008-01-28 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp: Using "std_logic" instead of "bit" as
representation of a wire during VHDL simulations.
2008-01-24 Stefan Jahn <stefan@lkcc.org>
* bitmaps/Makefile.am: Added pnp_therm.png and pnpsub_therm.png
icons.
* qucs.cpp: Removed verilog-a devices from non-linear components
tab.
2008-01-21 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp: Added new "verilog-a devices" component tab.
2008-01-16 Stefan Jahn <stefan@lkcc.org>
* bitmaps/vfile.png, bitmaps/ifile.png: Fixed alpha channels.
2008-01-12 Stefan Jahn <stefan@lkcc.org>
* paintings/graphictext.cpp (paint): It's now possible to use
^{super] and _{sub} in the graphic text widget.
2007-12-20 Stefan Jahn <stefan@lkcc.org>
* qucs_es.ts, qucs_fr.ts, qucs_uk.ts: Updated translations.
2007-12-10 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (regionCode): Fixed small clipping bug.
2007-11-20 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (getAxisLimits): Fixed a segfault bug when
recomputing invalid graph data is requested.
2007-10-27 Stefan Jahn <stefan@lkcc.org>
* bitmaps/Makefile.am (XPMS): Added ifile icon. Thanks to
Gunther.
* qucs_fr.ts: Fixed translations for CCVS and VCCS. Also updated
the translations. Thanks to Vincent.
2007-09-28 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (slotCMenuRename): Fixed behaviour of rename context
menu callback.
2007-08-20 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (getAxisLimits): Fixed segfault bug in
3D-cartesian diagram.
* dialogs/savedialog.cpp (saveSelectedClicked): Fixed a bug
causing the GUI to crash on Win32 when saving selected unsaved
schematics at end dialog.
2007-08-16 Stefan Jahn <stefan@lkcc.org>
* schematic.cpp (print): Fixed a compile issue which strangely
occurred with some gcc versions (3.3.3 and 3.3.1).
* dialogs/importdialog.cpp (slotBrowse): Added CSV file type to
the list of possible data import file formats.
2007-06-11 Stefan Jahn <stefan@lkcc.org>
* qucs.cpp (QucsApp): Allowing URIs (file:/path/file.sch) as
command line files.
2007-06-03 Stefan Jahn <stefan@lkcc.org>
* qucs_pl.ts: Updated Polish translations. Thanks to Darek.
2007-05-31 Stefan Jahn <stefan@lkcc.org>
* qucs_uk.ts: Updated Ukrainian translations.
2007-05-26 Stefan Jahn <stefan@lkcc.org>
* qucs_ru.ts: Updated Russian translations. Thanks to Igor.
2007-05-23 Stefan Jahn <stefan@lkcc.org>
* qucsveri.bat: Added wrapper script for digital Verilog-HDL
simulations for Win32.
2007-05-17 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (giveNodeNames): Using QPtrListIterator for
iterating the DocComps list. This is because the current item of
the list itself may be modified during iteration in the
drawContents() method due to a repaint event.
2007-05-15 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (recalcGraphData): When removing a graph
from a diagram means to delete one of it axes as well, then this
axis is now also visually removed.
2007-05-14 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (loadGraphData): Fixed a bug which skipped
reloading of newly computed graphs in a diagram. Thanks to
Michael.
2007-05-11 Stefan Jahn <stefan@lkcc.org>
* dialogs/librarydialog.cpp (LibraryDialog): Added
"Select/Deselect All" buttons.
(slotNext): Reversed order of include files (important for VHDL
simulations).
2007-05-10 Stefan Jahn <stefan@lkcc.org>
* dialogs/librarydialog.cpp (slotNext): Library creation now
includes file handling. Separate subcircuit files (VHDL, Verilog,
Qucs-Subcircuit, SPICE) used by library elements are stored in an
extra sub-directory.
* schematic_file.cpp (giveNodeNames): Saving included files in a
different manner in the global list.
(createSubNetlistPlain): Allow subcircuit files to be stored in a
dedicated file. Used during library file creations.
* main.cpp (properAbsFileName, properFileName): Added two new
helper functions for file name mangling.
2007-05-09 Stefan Jahn <stefan@lkcc.org>
* qucs_uk.ts, qtgeneric_uk.ts: Updated Ukrainian translations.
Thanks to Hse?
* schematic_file.cpp (giveNodeNames): Allow library component to
emit analog as well as digital netlist code.
2007-05-08 Stefan Jahn <stefan@lkcc.org>
* dialogs/librarydialog.cpp (slotNext): Beside analog models now
also verilog and vhdl models are saved.
* schematic_file.cpp (giveNodeNames): Using new file component
netlist creators.
2007-05-04 Stefan Jahn <stefan@lkcc.org>
* dialogs/qucssettingsdialog.cpp (QucsSettingsDialog): Made "start
wiring when clicking open node" configurable.
2007-04-26 Stefan Jahn <stefan@lkcc.org>
* qucs_actions.cpp (slotApplyCompText): Allowing '=' character
while editing property values on schematic and in component
dialog.
* mouseactions.cpp (MPressElement): Fixed sticky rotation for
elements with an initial rotation (e.g. AC voltage source).
2007-04-15 Stefan Jahn <stefan@lkcc.org>
* dialogs/packagedialog.cpp (slotCreate): Adding ".qucs" extension
if not already given.
(extractPackage): Fixed bug inhibiting packages without file
extension.
* dialogs/importdialog.cpp (ImportDialog): Fixed odd behaviour of
the dialog (import button disabled when saying no at overwrite
message box).
2007-04-14 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (loadVarData): Fixed locale problem
due to a bug in SCIM (libscim) which Qt is linked to.
2007-04-11 Stefan Jahn <stefan@lkcc.org>
* element.h: Added 'over' and 'under' properties to texts.
2007-04-10 Stefan Jahn <stefan@lkcc.org>
* textdoc.cpp (print): Also fixed print scale for text
documents.
* schematic.cpp (print): Fixed print scale for schematics. It
assumed a screen resolution of 72dpi.
* mouseactions.cpp (rotateElements): Made rotation sticky while
placing elements from the component tab as well as when pasting
elements from the clipboard into the schematic.
2007-04-05 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (throughAllNodes): Skip nodeset netlist
entries during digital simulations.
2007-03-31 Stefan Jahn <stefan@lkcc.org>
* textdoc.cpp (TextDoc): Using mono-spaced font in text
editor.
* schematic_file.cpp (giveNodeNames): Fixed loading of
Verilog files during VHDL run and vice versa.
* qucs.cpp (initContentListView): Added verilog files in
content tab.
2007-03-29 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (FinishSimulation): Improved some
translatable strings.
2007-03-28 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createNetlist): Fixed a bug in
determining the simulation time of digital simulations
occurring when there are other disabled simulations
placed on the schematic.
(createSubNetlist): Implemented subcircuit modules for
Verilog simulations.
2007-03-26 Stefan Jahn <stefan@lkcc.org>
* qucsveri: New digital simulation wrapper for Icarus
verilog added.
* schematic_file.cpp (prepareNetlist): Started to implement
Verilog HDL interface.
2007-03-22 Stefan Jahn <stefan@lkcc.org>
* diagrams/rect3ddiagram.cpp, diagrams/psdiagram.cpp,
diagrams/polardiagram.cpp, diagrams/rectdiagram.cpp,
diagrams/smithdiagram.cpp: Including <ieeefp.h> when available.
Fix for finite() function on Solaris.
2007-03-18 Stefan Jahn <stefan@lkcc.org>
* qucs_fr.ts: Updated french translations. Thanks to Vincent!
2007-03-17 Stefan Jahn <stefan@lkcc.org>
* Makefile.am (%.qm): Also renamed cz -> cs. Thanks Marek
for pointing this out!
* dialogs/qucssettingsdialog.cpp (QucsSettingsDialog): Renamed
cz -> cs for the Czech translations.
2007-03-13 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug of disappearing elements at moving and multiple clicks
* fixed crash when double-clicking diagrams with markers
2007-03-13 Stefan Jahn <stefan@lkcc.org>
* qucs_ru.ts: Updated Russian translations.
* qucs_it.ts: Updated Italian translations.
2007-03-12 Stefan Jahn <stefan@lkcc.org>
* qucs_init.cpp (initActions): Made icon texts and some status
bar tips translatable. Thanks Igor for pointing this out.
2007-03-11 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug in selecting ellipse arc
2007-03-08 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug loading old schematics with diodes
* fixed bug loading FBH HBT
2007-03-03 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* set marker painting precisely
* fixed bug in painting diagram selection frame
* added diode property: Ikf
2007-02-24 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* marker pointer with precize graph position at zoom >1
* fixed bug setting marker on 2D graph in 3D diagram
* fixed bug with nan values in diagrams
* enter wire mode when clicking on circuit node
2007-01-12 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* correct position for graph style "circles"
* somewhat fixed shorten for digital components
* some restructuring
* own bitmaps for HICUM and FBH HBT
* default graph style "arrows" for HB variables
2007-01-22 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* better resizing at zoom levels <> 1
* better selecting at zoom levels <> 1
* correct cursor cross before starting new wire
2006-12-22 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new components: twisted-pair transmission line, bond wire
* new symbol for 4-port transmission line
* fixed bug on subcircuit parameters without description
2006-12-06 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed small bug on creating paintings
* new capacitor property: symbol neutral/polar
* new diode property: symbol normal/Schottky/Zener
* fixed bug in wrong scrollbar position
* minimized flicker on scrollbar moving
* limit diagram size to scrollbar
* LaTeX symbols in text of schematic frame
2006-11-25 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new symbol for ideal transmission line and coax line
* new component: 4-port transmission line
2006-11-05 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new main menu: Positioning
* New actions: center horizontally and vertically
* keep mouse position during zoom
* move tabular scroll bar directly with mouse
2006-10-28 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* improved component/wire move algorithm
* fixed bug in distributing paintings
2006-10-21 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* set cursor keys free in id_text dialog
* fixed bug in loading components without properties
* fixed bug in viewport position of schematic after loading
2006-10-13 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* put equations also in subcircuit netlists
* added parameters to subcircuits
2006-09-18 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (loadGraphData): Fixed a minor bug in
computation of the diagram limits. Thanks to Michael.
2006-09-03 Stefan Jahn <stefan@lkcc.org>
* qtgeneric_cz.ts, qucs_cz.ts: Added Czech translations.
2006-08-30 Stefan Jahn <stefan@lkcc.org>
* main.cpp (main): Using ASCODIR environment variable (if set)
in order to locate the ASCO binary. Otherwise it must be
somewhere in the executable PATH.
* dialogs/simmessage.cpp (startSimulator): Running ASCO
appropriately and evaluating results.
2006-08-29 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug printing text painting
2006-08-26 Stefan Jahn <stefan@lkcc.org>
* qucsdigi.bat: Closing stdin when running the simulator.
* qtgeneric_tr.ts, qucs_tr.ts: Updated Turkish translations.
Thanks to Ozgur.
* Makefile.am (bin_SCRIPTS): Care about the host system when
installing the qucsdigi script.
2006-08-19 Stefan Jahn <stefan@lkcc.org>
* qucs_hu.ts: Updated Hungarian translations. Thanks to
Joszef Bus.
* qucsdigi: Closing stdin when simulating.
* qucs_de.ts: Updated German translations.
* dialogs/importdialog.cpp (slotBrowse): Added 'mdl' file type
to the available data import data formats.
2006-08-12 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* no schematic frame during symbol edit
* fixed bug showing "changed" after change to symbol edit mode
* fixed bug in rectangular clipping algorithm
* simulate VHDL file taken from memory
2006-08-09 Stefan Jahn <stefan@lkcc.org>
* qucs_es.ts: Updated spanish translations. Thanks to Jose.
* qucs_de.ts: Updated german translations.
2006-08-08 Stefan Jahn <stefan@lkcc.org>
* qucsdigi.bat: Unquoting the TIME argument correctly.
* dialogs/simmessage.cpp: Using short path equivalent to pass
it to the freehdl batch file under Win32. This is a workaround
because of the limited quoting abilities for these batch files.
2006-07-31 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* update content list after changing the project
* prevent entering empty string in graphic text dialog
* change library component per component properties
2006-07-29 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* wire label frame becomes red if initial voltage is set
* update content list when expanding ListViewItem
* dialog for optimization component (still unfinished)
* fixed segfault after dropping document on untitled page
2006-07-19 Stefan Jahn <stefan@lkcc.org>
* schematic.cpp (contentsDropEvent): Fixed file name conversion
from URI object.
2006-07-18 Stefan Jahn <stefan@lkcc.org>
* qucsdigi, qucsdigi.bat: Added -q argument to enable quiet
mode of the simulation binary.
2006-07-15 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new import file format: ZVR ASCII format
* resize rectangles are scale-independent
* number of print copies
* label dialog rejects two "_" together
* several frame formats
2006-07-15 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug at "zoom 1" on empty page
* new document property: schematic page frame
* browse window on left-hand side is dockable
* fixed segfault on drag n'drop library components
2006-07-03 Stefan Jahn <stefan@lkcc.org>
* diagrams/diagram.cpp (loadVarData): Fixed compile time error.
2006-07-02 Stefan Jahn <stefan@lkcc.org>
* main.cpp (main): Setting up locale to "C" for numeric
values, such that strtod() does not fail.
2006-06-19 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug showing no scrollbar
* support file extension "vhd" as VHDL text file
* fixed bug creating wrong version on loading library components
* library components can be placed onto the schematic via drag n'drop
* rework digital diagram data (vector length > 16 now possible)
* digital diagrams can display analog variables
* tabular can display digital data
* fixed bug in y-Smith chart with |r| > 1
* tried to compensate aliasing in round diagrams
* new action: import data file using qucsconv
* mstee and mscross with port numbers (can also be hidden)
* new action: export graph data to CSV file
* user can create project packages for data exchange
* fixed bug corrupting diagram scrollbar
* remembered last directory the same for most dialogs
* fixed bug missing symbol at second SPICE component
* also delete projects if there are subdirectories
* workaround to catch if SPICE file doesn't exit
* new function: print fit to page
* new print scaling (maybe print problems under MacOS are fixed ???)
* colours for VHDL syntax highlighting changeable in settings dialog
2006-06-10 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* row and column in VHDL editor start with one
* user libraries can be deleted and renamed with library tool
* syntax highlighting for VHDL data types and attributes
* digital diagrams can display nine-valued logic
2006-06-06 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (startSimulator): Applying correct
command line for Win32 systems as well.
* dialogs/digisettingsdialog.cpp: Checking for correct
simulation time settings.
2006-06-04 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* speed up 3D calculation
* reload diagram graphes only if dataset is newer
* fixed bug scrolling with cursor down key
* fixed small bug setting wrong changed status
* fixed bug loosing some mouse actions
* new feature: creating user library from subcircuits
2006-05-31 Stefan Jahn <stefan@lkcc.org>
* dialogs/simmessage.cpp (startSimulator): Investigation
about path names under Win32. It looks like only one
argument can be quoted on the command line of a batch
file. Do not know (yet) if this also applies to other
binaries (*.exe files).
* qucsdigi (IEEELIBS): Linking with IEEE libraries. Thus
it is now possible to the IEEE libraries shipped with
FreeHDL as well. Also made this modification in the
'qucsdigi.bat' batch file for Win32.
* main.cpp (checkVersion): Added a convenience function for
version checks which was broken due to the 0.0.10 bump.
Using the function several times throughout the code.
2006-05-25 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed several bugs of disappearing node labels
2006-05-22 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed segfault by clicking on component name
* fixed bug: disappearing labels on aligning
2006-05-22 Stefan Jahn <stefan@lkcc.org>
* textdoc.cpp (markWord): Fixed segfault bug in syntax
highlighter.
* qucs_jp.ts: Updated Japanese translations. Thanks to
Toyoyuki.
2006-05-20 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new action: select all markers
* action "new text" is now "CTRL+SHIFT+V"
* action "print selection" is "CTRL+SHIFT+P"
* move markers only if no other element selected
* scrollbar of diagrams a little bit more beautiful
* added new mathematical functions to online help
* avoid wrong multiple-choice values in changedialog.cpp
2006-05-18 Stefan Jahn <stefan@lkcc.org>
* diagrams/graph.cpp (paintLines): Fixed a segfault bug
occuring when last line is hidden (3d diagram).
2006-05-17 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed segfault with stars/circles in rect3ddiagram
* characters "[" and "]" can be entered in property edit
* avoid deselecting wires during wire-splitting
2006-05-15 Stefan Jahn <stefan@lkcc.org>
* Makefile.am (%.qm): Changed 'lrelease' step so that it can
be made using 'make -j 8'.
* qucs_init.cpp, qucs.cpp, dialogs/searchdialog.cpp: Some
changes for backward compatibility with Qt < 3.2.
2006-05-14 Stefan Jahn <stefan@lkcc.org>
* diagrams/rect3ddiagram.cpp (calcData): Fixed a memory
overflow when computing the 3D diagram data.
* qucsdigi: Set time raster for VCD file to 1ps.
* qucs_ru.ts: Updated Russian translations. Thanks to Igor.
* qucs_actions.cpp, diagrams/rect3ddiagram.cpp: Added "#include
<limits.h>" where necessary for SuSE installation.
2006-05-11 Stefan Jahn <stefan@lkcc.org>
* qucs_sv.ts, qucs_fr.ts: Applied translation updates.
2006-05-09 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed segfault of clicking on copy/cut toolbar of text editor
* fixed rotation problem for subcircuit etc. after loading
* fixed bug mirroring text in component symbols
* new VDHL name convention also for subcircuit output signal
* don't show text behind property edit on schematic
2006-05-06 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* in diagram dialog: only show variables without '_' at beginning
* name node name system for digital simulation
* fixed bug setting wrong diagram boundings
* fixed bug enabling/disabling undo/redo icons
* match with of property edit on schematic with its text
2006-05-03 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* replace function for text editor
* mark component as short circuit
* fixed bug forgetting to activate undo button
* subcircuit component in component listview
2006-04-24 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed problem with VHDL file starting with comment
* correct cursor marking after load and "enter entity"
* new property for transient simulation "relaxTSR"
* new class for components that change their symbol
2006-04-20 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* fixed bug of disappearing wires after component update
* fixed bug omitting first character of VHDL entity
* new action: go into VHDL file
* *.vhdl/*.vhd suffix for component dialog (browse)
2006-04-15 Stefan Jahn <stefan@lkcc.org>