forked from marc-lorber/oregano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
995 lines (628 loc) · 29.7 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
Thu, 17 May 2012 Marc Lorber <[email protected]>
* Replacement of obsolete code in sheet.c: gtk_widget_get_pointer.
The creplaced code is based on what has been implemented in evince.
Sun, 13 May 2012 Marc Lorber <[email protected]>
* Modification of part-browser.c to fix a warning while quitting
oregano
* Modification of schematic-view.c to complete g_application_
services involvement
* Modification of schematic-view.c to reintegrate a patch from
gnumeric increasing the size of the sheet.
* Modification of sheet.c to exchange gtk_widget_get_pointer
becoming obsolete i gtk-3.4
Tue, 8 May 2012 Marc Lorber <[email protected]>
* Fix a bug in schematic.c: unref a data useful in the program.
* Simplification of code for wire.c
* Simplification of code for create-wire.c
* Simplification of code for sheet-item.c
* Simplification of code wire-item.c
Mon, 7 May 2012 Marc Lorber <[email protected]>
* Update POTFILES.in to manage page-properties.ui & oregano.c
* Add POTFILES.skip (patch from Maximiliano Curia)
* Modification of item-data.c & part.c & part-item.c to fix the
node management
* Modification of sheet-item.c to simplify the code
* Modification of sheet.c to correct way of coding (removal of
gpointer in interface)
Tue, 1 May 2012 Marc Lorber <[email protected]>
* schematic-view.c modified to fix a bug
* part-item.c modified to fix a bug regarding location of a part
* configure.ac modified to fix warnings
* node-store.c modified to remove an useless warning
* part.c modified to simplify code
Sat, 29 Apr 2012 Marc Lorber <[email protected]>
* TAG 0.81
* Verification of all the xml files for gtk_builder to be consistent with
gtk-3.0.
* Implementation of gsettings
* Update header file to refer to github
* Update "main" process to feature g_application_run
Sat, 10 Mar 2012 Marc Lorber <[email protected]>
* TAG 0.80
* Portage of oregano under gtk-3.0 & goocanvas
Fri, 18 Jun 2010 Marc Lorber <[email protected]>
* TAG 0.73
* Add option-DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED \
-DGTK_DISABLE_DEPRECATED \
-DG_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES \
-DGTK_DISABLE_SINGLE_INCLUDEs to Makefile.am
* Perform the corrections requested by the herebove options
* Prepare to switch from gnome_canvas to goo_canvas
Sun, 9 May 2010 Marc Lorber <[email protected]>
* TAG 0.72
* Removal of libglade and replacement by gtk_builder
* Update the files header
* Prepare switch to gnome 3.0
Sun, 17 Jan 2010 Marc Lorber <[email protected]>
* TAG 0.71
* Creation of some new Libraries to ease the finding of some parts:
-Ground ==> creation of ground.oreglib
-power devides ==> creation of power.oreglib
-passive parts (Resistor, Capacitor,...) ==> creation of
passive-components.oreglib
-source inputs parts ==> creation of source-input.oreglib
* Upgrade of the oregano help
* Clear separation of header file for libraries between external interface
and internal interfaces:*
==> Creation of engine-internal.h
==> Creation of gplot-internal.h
* Rename netlist.c in netlist-helper.c since the primitives provided by netlist.c
have a prefix with netlist_helper_<>
* Modification of ngspice.c to stand the specificities of ngspice: ngspice is limited
while using rawfile option. In fact, Fourier is not accessible through rawfile option.
Therefore the output of ngspice is ascii and no more binary.
==> Split of ngspice.c to separate preparation of command file for ngspice from
analysis of ngspice output.
* Cleanup to isolate deprecated gnome libraries:
==> remove of <gnome.h> everywhere when feasible
* Main introduction of Fourier analysis with the associated dialogs
==> Modification of load-schematic.c
==> Modification of save-schematic.c
==> Modification of sim-settings.c
* Suppression of gnome-window:
==> Modification of plot.c
* Modification of gplot to allow the drawing of pulse (Fourier analysis)
Tue, 14 Apr 2009 Marc Lorber <[email protected]>
* TAG 0.70
* Installation of Makefile to allow full useability of anjuta:
-Creation of ./autogen.sh
-creation of ./Makefile.am
-creation of ./data/models/Makefile.am
-creation of ./data/mime/Makefile.am
-creation of ./data/examples/Makefile.am
-creation of ./data/glade/Makefile.am
-creation of ./data/Makefile.am
-creation of ./data/libraries/Makefile.am
-creation of ./src/engines/Makefile.am
-creation of ./src/Makefile.am
-creation of ./src/pixmaps/Makefile.am
-creation of ./src/model/Makefile.am
-creation of ./src/sheet/Makefile.am
-creation of ./src/stock/Makefile.am
-creation of ./src/gplot/Makefile.am
-creation of ./docs/Makefile.am
-creation of ./help/fr/Makefile.am
-creation of ./help/es/Makefile.am
-creation of ./help/Makefile.am
-creation of ./help/C/Makefile.am
* Glade file are moved from directory dialogs to glade
* Glade files have their extension chaged from glade2 to glade
* Various cleanup to answer makefile warnings:
-cleanup of gnucap.c
-cleanup of ngspice.c
-deletion of unused code in idem-data.c
-correction of bug regarding addition of a new part into an existing schema:
the part refdes restart at 1: modification of part.c
-cleanup of schematic.c
-cleanup of file.c
-cleanup of part-browser.c
* Addition of Contextual menu to avoid warning in execution!
-Modification of part-item.c
-Modification of sheet-item.c
-Modification of sheet-item.h
-Modification of textbox-item.c
-Modification of plot.c
* Addition of 2 new services in dialog.c and dialogs.h
to provide warning windows
* Removal of gnome_about_new in dialog.c
* Add a contextual dialog for the plot-add-function in
plot-add-function.c
* Improve localisation of menu by modification of schematic-view-menu.h
* Add contextual recent edited files in schematic-view.c
* Add a test of availability of splash.glade in splash.c
Tue, 14 Aug 2007 03:05:24 Ricardo Markiewicz <[email protected]>
* TAG 0.69.0
Tue, 14 Aug 2007 03:05:00 Ricardo Markiewicz <[email protected]>
* New development release
Wed, 18 Jul 2007 03:57:14 [email protected]
* settings-set-default-engine
Always set default engine in settings dialog. This fix supresses the
extra warning message
Wed, 18 Jul 2007 03:51:21 [email protected]
* bugfix-942
Fix bug 942. If a user closes the settings dialog using "Window
elements" act as if the user had pressed the "Close button" (this
saves settings).
Tue, 17 Jul 2007 17:31:44 [email protected]
* increase-plot-border
Increase the size of the border around the plot axis to fix bug #945.
Fri, 13 Jul 2007 19:06:06 [email protected]
* install-1N4148
Make sure 1N4148.model really gets installed too.
Fri, 13 Jul 2007 15:40:48 [email protected]
* add-1N4148
Add missing 1N4148.model that examples/simple2.oregano uses. This fix
was suggested by marga on #lugfi. A bug report is also available at
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432997
Sun, 21 Jan 2007 21:42:44 Ricardo Markiewicz <[email protected]>
* Remove verbosity.
Fri, 19 Jan 2007 20:32:31 Ricardo Markiewicz <[email protected]>
* Set labels color when printing and set proper default colors.
Fri, 19 Jan 2007 20:15:11 Ricardo Markiewicz <[email protected]>
* Missing parameter to g_print.
Fri, 19 Jan 2007 20:14:51 Ricardo Markiewicz <[email protected]>
* Use c as short argument for "convert".
Mon, 25 Dec 2006 23:03:39 Ricardo Markiewicz <[email protected]>
* Added command line option to convert schematics.
Now we can use Oregano to batch convert Schematics file into
PDF, PS, SVG or PNG with the --convert command line option.
Additionally we can set the width and height of the output using
--width and --height.
Mon, 25 Dec 2006 22:58:00 Ricardo Markiewicz <[email protected]>
* Lower-case package name.
Sun, 03 Dec 2006 18:33:02 Ricardo Markiewicz <[email protected]>
* Let the user change print colors in the print dialog.
Now the user can change all the default colors when printing. The color are
stored per session right now, so they will be reset to default colors the
next time that oregano run.
Sun, 03 Dec 2006 18:31:40 Ricardo Markiewicz <[email protected]>
* Fix a bug in rotation code.
Tue, 12 Sep 2006 17:13:47 Ricardo Markiewicz <[email protected]>
* Modularize rotule printing.
Tue, 12 Sep 2006 16:03:04 Ricardo Markiewicz <[email protected]>
* Basic rotule.
Tue, 12 Sep 2006 14:36:31 Ricardo Markiewicz <[email protected]>
* Added Background options to export.
Tue, 12 Sep 2006 14:14:45 Ricardo Markiewicz <[email protected]>
* Draw dots when printing or exporting.
Thu, 07 Sep 2006 20:46:41 Ricardo Markiewicz <[email protected]>
* Change GtkFileChooserButton that can't be used as Save dialog.
Wed, 06 Sep 2006 21:36:49 Ricardo Markiewicz <[email protected]>
* Bump cairo version to 1.2.0.
Wed, 06 Sep 2006 21:10:45 Ricardo Markiewicz <[email protected]>
* Fix problems when exporting, caused by lack of includes.
Wed, 06 Sep 2006 20:20:46 Ricardo Markiewicz <[email protected]>
* Pass correct format to export's function.
Wed, 06 Sep 2006 19:56:55 Ricardo Markiewicz <[email protected]>
* Added Schematic export.
The export dialog let the user choose one export format based
on the features supported by Cairo.
Wed, 06 Sep 2006 16:41:47 Ricardo Markiewicz <[email protected]>
* Split render and printing code.
With this now I add a new schematic_export function.
Wed, 06 Sep 2006 16:41:27 Ricardo Markiewicz <[email protected]>
* Fix return value.
Wed, 06 Sep 2006 02:33:24 Ricardo Markiewicz <[email protected]>
* Port printing code to GtkPrint.
Now the print engine is based on GtkPrint and Cairo.
Gtk+ version bump to 2.10
Thu, 19 Oct 2006 11:46:11 [email protected]
* .desktop update, thanks to Jordi Mallach
Thu, 19 Oct 2006 11:39:51 [email protected]
* Change electrical to electronic
Mon, 02 Oct 2006 15:52:52 Ricardo Markiewicz <[email protected]>
* Install missing icon.
Also, use the SVG version of the icon.
Fri, 08 Dec 2006 02:26:52 Ricardo Markiewicz <[email protected]>
* Show the model definition in the part-properties window.
By now is read only. I'll add the ability to modify and save the custom model
in the schematic.
Fri, 08 Dec 2006 02:26:16 Ricardo Markiewicz <[email protected]>
* Remove unused declarations.
Sat, 30 Sep 2006 01:44:31 [email protected]
* TAG 0.60.0
Sat, 30 Sep 2006 01:43:59 [email protected]
* Preparing for new release.
Thu, 28 Sep 2006 17:00:17 Ricardo Markiewicz <[email protected]>
* Fix the ngspice parser to proper parse multiple analysis.
This also add a lot of verbosity about what the parser is doing, to help
find bugs and debug the parser.
Wed, 27 Sep 2006 11:09:45 Ricardo Markiewicz <[email protected]>
* Added NgSpice model support.
Wed, 27 Sep 2006 11:02:18 Ricardo Markiewicz <[email protected]>
* Change unit step to 3.
Wed, 27 Sep 2006 00:47:08 Ricardo Markiewicz <[email protected]>
* NgSpice is working again.
Tue, 26 Sep 2006 23:10:46 Ricardo Markiewicz <[email protected]>
* Remove unnecesary goto.
Tue, 26 Sep 2006 22:57:22 Ricardo Markiewicz <[email protected]>
* Improve parsing non-binary data.
Still lack parsin binary data.
Tue, 26 Sep 2006 22:17:44 Ricardo Markiewicz <[email protected]>
* Initial NgSpice parser.
Is not fully functional!
Tue, 26 Sep 2006 15:20:55 Ricardo Markiewicz <[email protected]>
* Print label unit as text.
Mon, 25 Sep 2006 17:08:32 Ricardo Markiewicz <[email protected]>
* Fix wire union.
This close bug #319
Mon, 25 Sep 2006 16:46:22 Ricardo Markiewicz <[email protected]>
* Ask to save changes when File->Quit is requested.
This close bug# 514.
Mon, 25 Sep 2006 15:35:28 Ricardo Markiewicz <[email protected]>
* Tree cleanup.
Fri, 22 Sep 2006 17:00:54 Ricardo Markiewicz <[email protected]>
* Change Object properties sensitivity based on the selection.
Fri, 22 Sep 2006 16:59:30 Ricardo Markiewicz <[email protected]>
* New method to check if an ItemData has properties.
This methos is useful to change the sensitivity of the menu and
toolbars items.
Fri, 22 Sep 2006 16:03:19 Ricardo Markiewicz <[email protected]>
* Fix compilation warnings.
Fri, 22 Sep 2006 15:54:42 Ricardo Markiewicz <[email protected]>
* Release simulation data when engine is destroyed.
Fri, 22 Sep 2006 15:53:55 Ricardo Markiewicz <[email protected]>
* Port to GOptions.
Thu, 14 Sep 2006 22:39:32 Ricardo Markiewicz <[email protected]>
* Disable unused menus
Thu, 14 Sep 2006 01:50:38 Ricardo Markiewicz <[email protected]>
* Improve axis drawing in GPlot.
Wed, 13 Sep 2006 16:44:17 Ricardo Markiewicz <[email protected]>
* Enabling Plot Functions again.
Wed, 13 Sep 2006 16:26:16 Ricardo Markiewicz <[email protected]>
* Reset next_color on each plot.
Wed, 13 Sep 2006 01:17:44 Ricardo Markiewicz <[email protected]>
* Enabling plot colors again.
Tue, 12 Sep 2006 23:59:26 Ricardo Markiewicz <[email protected]>
* Fix memory leak and possible crash.
Tue, 12 Sep 2006 01:01:53 Ricardo Markiewicz <[email protected]>
* New build Target : update-pot.
Tue, 12 Sep 2006 01:01:11 Ricardo Markiewicz <[email protected]>
* New Build option Debug.
Set Debug=yes if you want compile with debug symbols.
Tue, 12 Sep 2006 01:00:09 Ricardo Markiewicz <[email protected]>
* SUBCKT can't use 0 as pin ID.
Because 0 is the global ground.
Tue, 12 Sep 2006 00:52:17 Ricardo Markiewicz <[email protected]>
* Install examples.
Tue, 12 Sep 2006 00:43:58 Ricardo Markiewicz <[email protected]>
* Unregister ItemData before start moving.
This close bug #320
Mon, 11 Sep 2006 21:15:39 Ricardo Markiewicz <[email protected]>
* Added Flip option in component popup menu.
This close bug #323.
Mon, 11 Sep 2006 21:14:23 Ricardo Markiewicz <[email protected]>
* Fix potential crash while flipping components.
Mon, 11 Sep 2006 03:11:18 Ricardo Markiewicz <[email protected]>
* Added gettext template (.pot)
Mon, 11 Sep 2006 02:47:50 Ricardo Markiewicz <[email protected]>
* Update translations.
Mon, 11 Sep 2006 02:47:30 Ricardo Markiewicz <[email protected]>
* Added missing files for translations.
Mon, 11 Sep 2006 01:50:45 Ricardo Markiewicz <[email protected]>
* Merged Settings and Edit menu.
Mon, 11 Sep 2006 01:10:03 Ricardo Markiewicz <[email protected]>
* Improved Schematic's error log.
Now the Schematic use a GtkTextBuffer to save error reports, and
use Tag to highlite critical errors.
Sat, 09 Sep 2006 01:44:41 lucas.chiesa[_\c2_]@gmail.com
* Fix selected label colors.
Closes bug #322
Sat, 09 Sep 2006 01:43:44 lucas.chiesa[_\c2_]@gmail.com
* Fix shortcuts in Edit menu
Sat, 09 Sep 2006 01:08:14 lucas.chiesa[_\c2_]@gmail.com
* Moved Tools -> View Netlist to View -> Netlist
Fri, 08 Sep 2006 17:31:39 Ricardo Markiewicz <[email protected]>
* Added VAC symbol.
This close bug #24[1], thanks Diego Essaya.
[1]: https://gforge.lug.fi.uba.ar/tracker/index.php?func=detail&aid=24&group_id=11&atid=132
Thu, 07 Sep 2006 12:39:10 Ricardo Markiewicz <[email protected]>
* Fix Translation.
Thu, 07 Sep 2006 02:13:11 Ricardo Markiewicz <[email protected]>
* Check for engine availability.
Also, improve settings dialog with a graphical alert if the
engine is not fully available.
Mon, 04 Sep 2006 19:44:26 Ricardo Markiewicz <[email protected]>
* Added new example.
The Full-wave bridge rectifier example show the magic behind
the new model usage.
Mon, 04 Sep 2006 19:28:36 Ricardo Markiewicz <[email protected]>
* Include models in the netlist.
The models are included using the .include command, referencing a .model
file installed in PREFIX/share/oregano/models.
Mon, 04 Sep 2006 19:26:11 Ricardo Markiewicz <[email protected]>
* Modify library to use the new Diode Bridge model.
Mon, 04 Sep 2006 19:25:49 Ricardo Markiewicz <[email protected]>
* Added a new Model : Diode Bridge.
Mon, 04 Sep 2006 19:24:46 Ricardo Markiewicz <[email protected]>
* Install Spice/GnuCap models.
Mon, 04 Sep 2006 01:56:20 Ricardo Markiewicz <[email protected]>
* Hide unused button in the toolbar.
Mon, 04 Sep 2006 01:39:35 Ricardo Markiewicz <[email protected]>
* Removed old code that cause glib warnings.
Mon, 04 Sep 2006 01:16:38 Ricardo Markiewicz <[email protected]>
* Emit Aborted signal if there was no analysis.
Tue, 29 Aug 2006 23:30:29 Ricardo Markiewicz <[email protected]>
* Implement stop method in OreganoGnuCap.
Tue, 29 Aug 2006 22:24:05 Ricardo Markiewicz <[email protected]>
* Added aborted signal to OreganoEngine.
Tue, 29 Aug 2006 11:01:22 Ricardo Markiewicz <[email protected]>
* Let the UI responds better during the simulation.
Tue, 29 Aug 2006 10:59:51 Ricardo Markiewicz <[email protected]>
* Show current operation in the progress dialog.
Tue, 29 Aug 2006 02:20:53 Ricardo Markiewicz <[email protected]>
* Update settings dialog and config options.
Tue, 29 Aug 2006 02:19:20 Ricardo Markiewicz <[email protected]>
* Use EngineFactory.
Tue, 29 Aug 2006 01:34:01 Ricardo Markiewicz <[email protected]>
* Added Engine Factory.
Tue, 29 Aug 2006 01:33:48 Ricardo Markiewicz <[email protected]>
* Missing argument.
Mon, 28 Aug 2006 10:53:17 Ricardo Markiewicz <[email protected]>
* Oregano should compile again.
Fix compilation (many features are broken at this moment!).
Also, fix many gcc warnings.
Mon, 28 Aug 2006 01:05:05 Ricardo Markiewicz <[email protected]>
* Plot window now functional again.
Mon, 28 Aug 2006 01:04:24 Ricardo Markiewicz <[email protected]>
* schematic_log_append really append now.
Mon, 28 Aug 2006 01:03:41 Ricardo Markiewicz <[email protected]>
* Temporal place for helpers.
Mon, 28 Aug 2006 01:02:25 Ricardo Markiewicz <[email protected]>
* GnuCap parser complete.
Mon, 28 Aug 2006 01:01:32 Ricardo Markiewicz <[email protected]>
* Added a method to retrievesimulation results to engines.
Sun, 27 Aug 2006 21:51:27 Ricardo Markiewicz <[email protected]>
* Fix callback name.
Sun, 27 Aug 2006 21:44:11 Ricardo Markiewicz <[email protected]>
* Make sure to read all output of backend.
Sun, 27 Aug 2006 21:09:42 Ricardo Markiewicz <[email protected]>
* GnuCap I/O private refactoring.
Sun, 27 Aug 2006 21:07:52 Ricardo Markiewicz <[email protected]>
* Fix method parameters.
Sun, 27 Aug 2006 14:38:15 Ricardo Markiewicz <[email protected]>
* Add I/O watches to read GnuCap stdout.
Sun, 27 Aug 2006 02:49:14 Ricardo Markiewicz <[email protected]>
* Removed unneeded external parsing script.
Sun, 27 Aug 2006 02:46:09 Ricardo Markiewicz <[email protected]>
* Fix some includes problems.
Sun, 27 Aug 2006 02:45:14 Ricardo Markiewicz <[email protected]>
* Remove simulate.h.
Sun, 27 Aug 2006 02:44:11 Ricardo Markiewicz <[email protected]>
* Fix NetlistData initialization.
Sun, 27 Aug 2006 02:19:08 Ricardo Markiewicz <[email protected]>
* Added GnuCap engine and netlist generation.
This break source code compilation and there are many
things to do before get Oregano working again.
The netlist generation was split into Netlist Helper functions
and Engine specific output formating.
Sat, 26 Aug 2006 22:17:11 Ricardo Markiewicz <[email protected]>
* Initial engine modularization.
We'll provide an unified interface to access multiple spice-like engines.
This will cause that it's simpler to add other simulation engines.
Sat, 26 Aug 2006 16:26:22 Ricardo Markiewicz <[email protected]>
* Move dialogs dir to a better place.
Sat, 26 Aug 2006 15:54:47 Ricardo Markiewicz <[email protected]>
* SConstruct cleanup.
* Install .desktop file in the correct place.
* Run update-mime-database only after installing.
* Coding style fixes.
Thu, 24 Aug 2006 17:37:51 Ricardo Markiewicz <[email protected]>
* Fix possible crash when editing part properties.
Thu, 24 Aug 2006 01:04:05 Ricardo Markiewicz <[email protected]>
* Instant-Apply properties dialogs.
Thu, 24 Aug 2006 00:53:56 Ricardo Markiewicz <[email protected]>
* Instant-Apply simulation settings dialog.
Thu, 24 Aug 2006 00:44:22 Ricardo Markiewicz <[email protected]>
* Instant-Apply settings dialog.
Thu, 24 Aug 2006 00:43:25 Ricardo Markiewicz <[email protected]>
* Missing Widget cast.
Thu, 24 Aug 2006 00:30:54 Ricardo Markiewicz <[email protected]>
* New command-line options.
* RunUpdateMimeDatabase=[yes|no] to enable or disable running
update-mime-database
* Now -h show full help text
Wed, 23 Aug 2006 23:30:15 Ricardo Markiewicz <[email protected]>
* Replace the deprecated GnomeEntry with GtkFileChooserButton.
Wed, 23 Aug 2006 22:49:09 Ricardo Markiewicz <[email protected]>
* Add some #DEFINE and includes to enable Gtk+ gettext support.
Tue, 25 Jul 2006 11:43:40 Ricardo Markiewicz <[email protected]>
* TAG 0.50.1
Tue, 25 Jul 2006 11:43:05 Ricardo Markiewicz <[email protected]>
* Final touches for the new release.
Tue, 25 Jul 2006 10:21:40 Ricardo Markiewicz <[email protected]>
* Strip / from begin of PREFIX path.
Tue, 25 Jul 2006 10:12:37 Ricardo Markiewicz <[email protected]>
* Merge SCons modifications.
Tue, 25 Jul 2006 09:04:03 Ricardo Markiewicz <[email protected]>
* More [_\c3_]SCons fixes.
Wed, 31 May 2006 21:29:23 Ricardo Markiewicz <[email protected]>
* Some fix to build system.
The first fix set default SourceSignature to timestamp, to avoid scons
create .sconssing files everywhere when using MD5 signatures.
The second fix prevent scons to check DESTDIR in build time, and check for
DESTDIR on install.
Wed, 24 May 2006 00:09:33 Ricardo Markiewicz <[email protected]>
* TAG 0.50.0
Wed, 24 May 2006 00:08:14 Ricardo Markiewicz <[email protected]>
* Update copyright year.
Tue, 23 May 2006 23:56:32 Ricardo Markiewicz <[email protected]>
* Remove more unused close.
Tue, 23 May 2006 23:44:42 Ricardo Markiewicz <[email protected]>
* Adjust axis unit label.
We find the best divisor for the current window, and adjustthe labels text
to show.
For example new want show a mark with value "10" and an axis label "10e2 Hz",
instead a mark of value "1000" with an axis label "Hz".
Tue, 23 May 2006 22:58:35 Ricardo Markiewicz <[email protected]>
* Remove unused code.
Sun, 21 May 2006 16:39:53 Ricardo Markiewicz <[email protected]>
* Fix problems with ngspice backend.
Patch sent by Marc Lorber (Lorber.Marc at wanadoo dot fr.
Sun, 14 May 2006 19:21:15 Ricardo Markiewicz <[email protected]>
* Some coding style fixes.
Sun, 14 May 2006 19:19:32 Ricardo Markiewicz <[email protected]>
* Fix clean function.
Sun, 14 May 2006 19:11:18 Ricardo Markiewicz <[email protected]>
* Correct display when width == 0 or heught == 0.
Sun, 14 May 2006 19:10:09 Ricardo Markiewicz <[email protected]>
* Update bbox first.
Sun, 14 May 2006 19:08:56 Ricardo Markiewicz <[email protected]>
* Fix list destruction.
Sat, 06 May 2006 01:43:04 Ricardo Markiewicz <[email protected]>
* Add unit's labels to the plot.
Sat, 06 May 2006 01:10:03 Ricardo Markiewicz <[email protected]>
* Finals touches in Scons scripts.
Sat, 06 May 2006 01:07:08 Ricardo Markiewicz <[email protected]>
* Update dependencies versions.
Please report if you find that Oregano compile with an older version of any
dependency.
Mon, 01 May 2006 23:04:36 Ricardo Markiewicz <[email protected]>
* Install additional files.
Wed, 26 Apr 2006 23:48:01 Ricardo Markiewicz <[email protected]>
* Do not update .po files on build.
Wed, 26 Apr 2006 23:19:03 Ricardo Markiewicz <[email protected]>
* Add gettext support.
Wed, 26 Apr 2006 22:20:17 Ricardo Markiewicz <[email protected]>
* Drop autotools in favor of SCons.
SCons[1] is an Open Source software construction tool.
[1] : http://www.scons.org/
Sun, 23 Apr 2006 21:04:54 Ricardo Markiewicz <[email protected]>
* Show cursor value in plot window.
Sun, 23 Apr 2006 21:03:44 Ricardo Markiewicz <[email protected]>
* Fix events propagation.
Sun, 23 Apr 2006 21:03:07 Ricardo Markiewicz <[email protected]>
* Mapping user and device coords.
Sun, 23 Apr 2006 20:22:55 Ricardo Markiewicz <[email protected]>
* Code clean up.
Sun, 23 Apr 2006 20:17:12 Ricardo Markiewicz <[email protected]>
* Added Stock icons for zoom toolbar in the plot window.
Tue, 11 Apr 2006 21:25:48 Ricardo Markiewicz <[email protected]>
* Update dependencies.
Tue, 11 Apr 2006 21:14:48 Ricardo Markiewicz <[email protected]>
* Prevent joining wires if a node exists.
Tue, 11 Apr 2006 20:52:28 Ricardo Markiewicz <[email protected]>
* Delete unused file.
The ChangeLog file will be generated using `darcs changes` in
each release.
Tue, 11 Apr 2006 20:00:41 Ricardo Markiewicz <[email protected]>
* TAG 0.40.9
Tue, 11 Apr 2006 19:59:30 Ricardo Markiewicz <[email protected]>
* Marking version as 0.50.0-beta!
Tue, 11 Apr 2006 19:59:12 Ricardo Markiewicz <[email protected]>
* Replaced GtkCairoPlot with GPlot.
This is the first fase of the port. Not all functionalities was done yet.
Fri, 03 Mar 2006 01:10:43 Ricardo Markiewicz <[email protected]>
* label's anchor improvement.
Sun, 11 Dec 2005 16:29:22 Ricardo Markiewicz <[email protected]>
* improvement of the plotting window.
Mon, 05 Dec 2005 14:33:20 Ricardo Markiewicz <[email protected]>
* Improved anchor adjustment when flipping.
Sun, 04 Dec 2005 14:21:37 Ricardo Markiewicz <[email protected]>
* Part Property dialog renewed.
Sun, 04 Dec 2005 02:37:27 [email protected]
* Fix Wire's resizers rotation.
Sat, 03 Dec 2005 16:15:28 [email protected]
* Fix flip code.
This patch fix the buggy flipping code. It's not perfect but works reasonably.
Fri, 18 Nov 2005 02:00:20 [email protected]
* Use the mouse wheel to change sheet's zoom.
Tue, 08 Nov 2005 13:30:48 Ricardo Markiewicz <[email protected]>
* Fix several compiler warnings.
This patch replace strcmp by xmlStrcmp in XML functions
to ensure properly UTF-8 management.
Also add BAD_CAST macro whenever is required to avoid
that the compiler emit a warning.
Mon, 07 Nov 2005 00:56:47 [email protected]
* Checked if parser and engine exists before simulation is made.
This patch close the bug #50.
Sun, 06 Nov 2005 19:24:04 [email protected]
* Fix Makefile's
Sun, 30 Oct 2005 13:56:46 [email protected]
* Update schematic title after saving circuit.
This close the bug #53.
Sat, 22 Oct 2005 21:50:36 [email protected]
* Updated sv.po
Thu, 20 Oct 2005 22:04:30 [email protected]
* HIG violation fix.
This patch close the bug #48 that fix a HIG problem in the Save file dialog.
Thanks to Gregory Leblanc <[email protected]> for
this patch.
Wed, 19 Oct 2005 16:11:03 Ricardo Markiewicz <[email protected]>
* Placing more than 1 component on the schematic.
This close the bug #52.
To add more than one component you should hold control down and
then place.
I don't implement as Seth Nickell and Gregory Leblanc suggests, because there
is no way to know if you click in a non-blank area (Not without looking for in
all the list of components).
Wed, 19 Oct 2005 14:51:50 Ricardo Markiewicz <[email protected]>
* Typing in a component name and pressing 'enter' allow to add the first match in schematic.
This patch fix the bug #51 [1]
Tue, 18 Oct 2005 14:51:56 Ricardo Markiewicz <[email protected]>
* Missing Makefile.am
Tue, 18 Oct 2005 14:37:13 Ricardo Markiewicz <[email protected]>
* Translations Update.
Mon, 17 Oct 2005 14:06:51 [email protected]
* Fixing typos and warning messages
Sat, 03 Sep 2005 13:19:52 [email protected]
* Added a couple of comments.
Mon, 17 Oct 2005 13:31:33 Ricardo Markiewicz <[email protected]>
* Reorganize source Tree.
Sun, 11 Sep 2005 22:06:00 [email protected]
* Added the possibility of changing the wire's size.
This add the ability to change wire's size. To do this we
add a small rectangle on the corners when it is selected,
and you can drag from there.
Thu, 08 Sep 2005 13:06:07 [email protected]
* Re-updated ru.po with complete translation
Tue, 06 Sep 2005 23:31:52 [email protected]
* Updated and completed ru.po
Sat, 03 Sep 2005 14:14:02 [email protected]
* Fixed the text of the temporary file warning.
Sat, 03 Sep 2005 14:01:48 [email protected]
* Updated sv.po
Sat, 03 Sep 2005 14:00:41 [email protected]
* Updated ru.po
Sat, 03 Sep 2005 14:00:10 [email protected]
* Updated ro.po
Sat, 03 Sep 2005 13:58:33 [email protected]
* Updated pt_BR.po
Sat, 03 Sep 2005 13:56:49 [email protected]
* Updated ja.po
Sat, 03 Sep 2005 13:56:10 [email protected]
* Updated it.po
Sat, 03 Sep 2005 13:55:19 [email protected]
* Updated fr.po
Sat, 03 Sep 2005 13:53:07 [email protected]
* Updated de.po
Sat, 03 Sep 2005 13:49:53 [email protected]
* Updated and fixed es.po
Sat, 03 Sep 2005 13:48:29 [email protected]
* Updated ca.po
Sat, 03 Sep 2005 13:22:41 [email protected]
* Added simulate.c to the POTFILES
Sat, 03 Sep 2005 16:02:26 [email protected]
* Fix return value
Sat, 03 Sep 2005 13:31:08 [email protected]
* Update de.po
Sat, 03 Sep 2005 13:29:10 [email protected]
* Update ca.po
Sat, 27 Aug 2005 15:17:12 [email protected]
* Allow for gettext to work on the user preferences dialog.
Sat, 27 Aug 2005 14:52:42 [email protected]
* Updated sv.po
Sat, 27 Aug 2005 14:52:26 [email protected]
* Updated ru.po
Sat, 27 Aug 2005 14:52:05 [email protected]
* Updated ro.po
Sat, 27 Aug 2005 14:51:03 [email protected]
* Updated pt_BR.po
Sat, 27 Aug 2005 14:49:45 [email protected]
* Updated ja.po
Sat, 27 Aug 2005 14:49:22 [email protected]
* Updated it.po
Sat, 27 Aug 2005 14:48:06 [email protected]
* Updated fr.po
Sat, 27 Aug 2005 14:46:41 [email protected]
* Updated de.po