-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
7655 lines (4758 loc) · 205 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
2017-01-25 23:50 dan
* configure.ac, gtk-wcalc/Makefile.am: turn dependency tracking
back on and subdir-objects off
2017-01-25 23:32 dan
* .cvsignore, INSTALL, doc/.cvsignore, docs/coax/.cvsignore,
fastlc/.cvsignore, fastlc/cpw_fastcap, htdocs/.cvsignore,
include/.cvsignore, m4/.cvsignore, po/.cvsignore: add several
cvsignores to clean up my diff output
2017-01-25 23:32 dan
* libwcalc/Makefile.am: update for newer automake (INCLUDES ->
AM_CPPFLAGS)
2017-01-25 23:31 dan
* ABOUT-NLS, config.rpath, m4/codeset.m4, m4/iconv.m4,
po/Makefile.in.in: bump gettext
2017-01-25 23:28 dan
* utils/format_tab: quote /dev/stderr for NetBSDs awk
2017-01-25 23:24 dan
* Makefile.am, autogen.sh, configure.ac, cgi-wcalc/Makefile.am,
gtk-wcalc/Makefile.am, mex-wcalc/Makefile.am,
sci-wcalc/Makefile.am, stdio-wcalc/Makefile.am: Update to more
recent autotools
2017-01-12 22:46 dan
* cgi-wcalc/.cvsignore, cgi-wcalc/run_tests.sh,
cgi-wcalc/run_weblint, gtk-wcalc/.cvsignore, libwcalc/.cvsignore,
mex-wcalc/.cvsignore, octave-wcalc/.cvsignore,
pixmaps/.cvsignore, sci-wcalc/.cvsignore, stdio-wcalc/.cvsignore,
utils/.cvsignore, win32/.cvsignore: add many .cvsignore files so
my diffs do not get lost in ??. Also add a couple of wip scripts
2017-01-12 22:26 dan
* sci-wcalc/microstrip_compare.sce: add a script for doing some
microstrip comparisons
2012-04-02 14:46 dan
* references/Wan_IEEE_MTT_Vol44_No1_Jan1996.pdf: add another
coupled microstrip reference
2012-03-19 11:52 dan
* references/: Jansen_MTT26_N2.pdf,
Kirschning_and_Jansen_MTT32_N1.pdf,
Kirschning_and_Jansen_MTT33_N3.pdf: add some coupled microstrip
references
2012-03-19 06:57 dan
* sci-wcalc/Makefile.am: add missing wcalc.xml to the distfile
2012-03-16 12:10 dan
* cgi-wcalc/copying.html, gtk-wcalc/about.c, mex-wcalc/copyright.m,
octave-wcalc/copyright.m, sci-wcalc/sciman.mk,
sci-wcalc/wcalc.xml: update copyright dates
2012-03-16 12:09 dan
* mex-wcalc/Makefile.am, octave-wcalc/Makefile.am: add an overview
help page for wcalc
2012-03-16 12:09 dan
* octave-wcalc/runoctave.in: allow overriding octave with $OCTAVE
2012-03-14 22:38 dan
* mex-wcalc/runmatlab.in: support overriding the name of the matlab
program. Also update license
2012-03-14 19:41 dan
* sci-wcalc/microstrip_calc.c: add missing math.h for log10 and exp
2012-03-14 17:52 dan
* octave-wcalc/Makefile.am: remove OCTINCLUDEDIR which snuck in
2012-03-14 17:51 dan
* octave-wcalc/Makefile.am: make this parallel make safe and also
avoid building alert.o multiple times.
2012-03-14 12:13 dan
* sci-wcalc/: air_coil_calc.dia.ref, air_coil_calc.tst,
air_coil_syn.dia.ref, air_coil_syn.tst: expand the air coil tests
for better coverage
2012-03-14 00:27 dan
* sci-wcalc/: air_coil_calc.dia.ref, air_coil_calc.tst,
air_coil_syn.dia.ref, air_coil_syn.tst: update test suite after
adding wire diameter
2012-03-13 23:55 dan
* sci-wcalc/: air_coil_calc.c, air_coil_syn.c: fix a couple of
typos in previous
2012-03-13 23:54 dan
* octave-wcalc/Makefile.am: install the .m help files into the same
location as the .mex files. This is how recent (3.6.1 for sure)
versions of octave behave
2012-03-13 23:27 dan
* cgi-wcalc/air_coil.cgi.c, cgi-wcalc/air_coil.html,
gtk-wcalc/air_coil_gui.c, gtk-wcalc/air_coil_gui.h,
octave-wcalc/Makefile.am, sci-wcalc/air_coil_calc.c,
sci-wcalc/air_coil_calc.xml, sci-wcalc/air_coil_syn.c,
sci-wcalc/air_coil_syn.xml, stdio-wcalc/air_coil.dat,
stdio-wcalc/air_coil.ref, stdio-wcalc/main.c:
Allow the air coil functions to specify wire diameter as well as
wire size in AWG for the benefit of some non-US users who may not
deal with AWG. Reported/requested in bug #3410395
2012-03-13 12:16 dan
* TODO, gtk-wcalc/air_coil_gui.c: use x,y variables to keep track
of position in the form. Makes modification much easier.
2012-03-08 11:59 dan
* stdio-wcalc/: air_coil.dat, air_coil.ref, bars.ref: add tests at
100 kHz, 10 kHz, and 1 kHz to exercise the low frequency
resistance code
2012-03-07 12:02 dan
* libwcalc/: air_coil.c, air_coil.h, air_coil_loadsave.c,
defaults.c: allow specifying wire size by diameter instead of AWG
if desired
2012-03-07 12:02 dan
* libwcalc/misc.c: dia2awg(): do not round to the nearest integer.
Leave that to the calling function
2012-03-07 12:02 dan
* libwcalc/coupled_stripline.c: add a bunch of comments and some
more debug output
2012-03-05 16:58 dan
* libwcalc/air_coil.c: The formulation from the Geffe article
assumes the coil is operating in the skin effect region when it
comes to Q calculation. This may or may not be a good assumption
always. Usually it is, but we might as well try to handle some
corner cases. To deal with this, find the skin effect resistance
and also the DC resistance. Then interpolate between the two and
use the result to find an interpolated Q which should be valid at
any frequency. Even if it isn't exact, it should be close
enough.
Pointed out by Sven Wilhelmsson in SF Bug #1397739.
2012-03-05 12:33 dan
* htdocs/coupled_stripline.shtml: add a reference (Cohn, 1954)
2012-03-05 12:29 dan
* libwcalc/stripline.c: add a comment
2011-09-16 08:15 dan
* configure.ac, octave-wcalc/Makefile.am: update these to work
correctly with more modern octave. Seems to work with
octave-3.2.4
2011-09-16 07:52 dan
* stdio-wcalc/bars.dat: add a test case for the 2nd bar to the left
of the first instead of to the right of it. Should get the same
answer.
2010-09-20 22:00 dan
* libwcalc/bars.c: fix calculation when bar 2 is placed to the left
or below bar 1 (E<0 or P<0)
2009-11-23 22:18 dan
* configure.ac: Add Darwin and ia64 entries into the list of mex
suffixes
2009-11-23 21:47 dan
* configure.ac, mex-wcalc/mexlink, mex-wcalc/mexopts.sh.in:
Hopefully repair building of mex-wcalc under release 14 of matlab
while hopefully not breaking release 12 or release 13. Since I
have no way of testing any of these, I'm relying on bug reports.
2009-11-23 18:23 dan
* configure.ac: add matlab .mexa64 suffix for x86_64 Linux
2009-11-23 18:20 dan
* configure.ac: remove some garbage characters that accidentally
crept in
2009-11-23 18:20 dan
* po/nl.po: update nl translation from Bert Timmerman
2009-10-22 23:13 dan
* sci-wcalc/: coplanar_calc.dia.ref,
coupled_microstrip_calc.dia.ref, microstrip_calc.dia.ref: update
some loss results after the loss calculation corrections of
2009-01
2009-10-22 21:31 dan
* libwcalc/mathutil.c: add some comments about the nature of K(k) /
Kprime(k) (k_over_kp(k))
2009-10-22 21:30 dan
* libwcalc/coupled_stripline.c: - use an initial guess for the
synthesis based on a single stripline. This seems to give a
much better starting guess than trying to use the coupled
microstrip initial guess formulae.
- add lots of extra debugging output
- make use of stripline_line_new() and stripline_line_free()
instead of something on the stack. This is because the _new
and _free functions do a bit of extra initialization and
freeing.
This helps to address a bug report about the synthesis hanging
for some semi-extreme cases.
2009-10-22 21:25 dan
* libwcalc/stripline.c: add some extra debug output
2009-10-22 21:23 dan
* sci-wcalc/: Makefile.am, coupled_stripline_calc.dem,
stripline_calc.dem, wcalc-demo.dem: add demos for single and
coupled stripline structures
2009-10-22 18:34 dan
* stdio-wcalc/: coupled_stripline.dat, coupled_stripline.ref: add a
new test from a bug report submission. regen the golden file due
to minor synthesis numerical differences (very very tiny
differences)
2009-10-19 17:47 dan
* stdio-wcalc/run_tests.sh: fix copyright (GPLv2 from BSD), add
usage output, add -l|--list-tests option
2009-10-18 19:00 dan
* README-to-release: update the name of the win32 installer
2009-03-01 18:45 dan
* po/nl.po: wcalc-1.1 update from Bert
2009-02-28 23:47 dan
* utils/: Makefile.am, build_sf: add script to build the
sourceforge site
2009-02-28 21:26 dan
* configure.ac: set rev for 1.1 release and also remove the "devel
only" flag.
2009-02-28 21:01 dan
* configure.ac: welcome to 1.1A (after 1-1 branch)
2009-02-28 20:24 dan
* po/: es.po, nl.po, wcalc.pot: update for 1.1
2009-02-28 20:22 dan
* ChangeLog: update for release 1.1
2009-02-28 20:03 dan
* libwcalc/Makefile.am: bump library rev for 1.1 release
2009-02-28 19:55 dan
* README-to-release: update instructions a bit
2009-02-27 22:35 dan
* autogen.sh: s/gerbv/wcalc in one spot
2009-02-27 22:33 dan
* htdocs/left_column.incl: add a link to the sf project page
2009-02-27 22:32 dan
* htdocs/projects.shtml: update some gtk1 vs gtk2 comments
2009-02-27 22:26 dan
* NEWS: add news items for improved/new/corrrected
cuopled_microstrip and microstrip conductor losses and
conductance in the microstrip model
2009-02-27 22:26 dan
* sci-wcalc/microstrip_calc.c: update for alpha_c and alpha_d being
in nepers/meter instead of dB/meter
2009-02-27 22:21 dan
* htdocs/coax.shtml: add comments about the TE10 calculation
2009-02-27 22:21 dan
* htdocs/coplanar.shtml: add some comments about typos in wadells
book
2009-02-27 22:20 dan
* htdocs/faq.shtml: add a few more notes about what OS I care about
and bug reports
2009-02-27 22:19 dan
* htdocs/news.shtml: add more news about microstrip and coupled
microstrip loss calculation improvements
2009-02-27 22:19 dan
* htdocs/microstrip.shtml: add reference for incremental inductance
and also add some comments about loss
2009-02-27 22:14 dan
* stdio-wcalc/: coupled_microstrip.ref, microstrip.dat,
microstrip.ref: regen after fixing loss calculations
2009-02-27 22:14 dan
* stdio-wcalc/main.c: account for alpha_c and alpha_d being in
nepers/meter now instead of dB/meter
2009-02-27 22:13 dan
* libwcalc/microstrip.c: Fix a bug in the conductor loss
calculation where I was using a characteristic impedance based on
er=1 (left over from the incremental inductance calculation)
instead of the correct impedance. This produced a incremental
series resistance which was too large.
2009-02-27 22:11 dan
* libwcalc/coupled_microstrip.c: Implement conductor loss via
Wheelers incremental inductance method.
2009-02-27 00:25 dan
* libwcalc/coplanar.c: bump copyright date missed on last commit
2009-02-27 00:23 dan
* libwcalc/coplanar.c: fix some bugs in the loss calculations
2009-02-27 00:23 dan
* libwcalc/stripline.c: add a comment about dielectric loss
2009-02-27 00:22 dan
* libwcalc/microstrip.c: correctly use the dielectric fill factor
for the dielectric loss calculation
2009-02-27 00:22 dan
* libwcalc/coupled_microstrip.c: start work on getting the loss
calculations going
2009-02-26 21:31 dan
* references/: Gopinath_MTT_1982_coplanar_loss.pdf,
coplanar_conductor_loss.pdf: add a few more references
2009-02-21 00:20 dan
* gtk-wcalc/: menus.c, newprint.c, newprint.h: - add an export to
pdf menu item (for gtk-2.10.x and newer) - set the default page
size to US Letter. Is there a better way? - add a half inch
margin on the pages.
2009-02-13 21:11 dan
* htdocs/coax.shtml: start on some comments about coax waveguide
modes
2009-02-13 21:11 dan
* gtk-wcalc/: menus.c, newprint.c, newprint.h: add (for now) a page
setup menu
2009-02-13 21:09 dan
* gtk-wcalc/coax_gui.c: s/TE11/TE10
2009-02-13 21:08 dan
* docs/coax/: Makefile, bib.tex, coax_waveguide.tex, refs.bib:
start on some notes about coax waveguide modes
2009-02-13 21:08 dan
* docs/htmltex: indent
2009-02-11 20:35 dan
* htdocs/news.shtml: fix a markup typo
2009-02-11 20:32 dan
* cgi-wcalc/parallel_rl.html: fix one last sed induced typo
2009-02-11 20:05 dan
* libwcalc/coax.h: fix a comment
2009-02-11 17:34 dan
* NEWS, cgi-wcalc/Makefile.am, cgi-wcalc/parallel_rl.cgi.c,
cgi-wcalc/parallel_rl.html, gtk-wcalc/Makefile.am,
gtk-wcalc/parallel_rc.wc, gtk-wcalc/parallel_rl.wc,
gtk-wcalc/parallel_rl_gui.c, gtk-wcalc/parallel_rl_gui.h,
gtk-wcalc/wcalc.c, htdocs/Makefile.am, htdocs/cgi-wcalc.shtml,
htdocs/left_column.incl, htdocs/news.shtml,
htdocs/parallel_rc.shtml, htdocs/parallel_rl.shtml,
libwcalc/Makefile.am, libwcalc/defaults.c, libwcalc/defaults.h,
libwcalc/make_defaults.c, libwcalc/parallel_rl.c,
libwcalc/parallel_rl.h, libwcalc/parallel_rl_loadsave.c,
libwcalc/parallel_rl_loadsave.h, libwcalc/wcalc_loadsave.c,
libwcalc/wcalc_loadsave.h, sci-wcalc/Makefile.am,
sci-wcalc/mex.mk, sci-wcalc/parallel_rc.dem,
sci-wcalc/parallel_rl.dem, sci-wcalc/parallel_rl_p2s.c,
sci-wcalc/parallel_rl_p2s.dia.ref, sci-wcalc/parallel_rl_p2s.tst,
sci-wcalc/parallel_rl_p2s.xml, sci-wcalc/parallel_rl_s2p.c,
sci-wcalc/parallel_rl_s2p.dia.ref, sci-wcalc/parallel_rl_s2p.tst,
sci-wcalc/parallel_rl_s2p.xml, sci-wcalc/see_also.xml,
stdio-wcalc/Makefile.am, stdio-wcalc/main.c,
stdio-wcalc/parallel_rl.dat, stdio-wcalc/parallel_rl.ref,
stdio-wcalc/tests.list: add parallel/series RL network
calculator. Fix a few other minor bugs (in parallel_rc) while
here
2009-02-10 21:43 dan
* stdio-wcalc/Makefile.am: add missing parallel_rc test input
2009-02-10 19:52 dan
* libwcalc/parallel_rc.c: fix a major bug in the parallel to series
conversion
2009-02-10 19:51 dan
* gtk-wcalc/: parallel_rc.wc, parallel_rc_gui.c: finish up the
parallel_rc gui
2009-02-10 19:02 dan
* NEWS: add some NEWS about the parallel_rc module
2009-02-10 19:00 dan
* sci-wcalc/Makefile.am, sci-wcalc/mex.mk,
sci-wcalc/parallel_rc.dem, sci-wcalc/parallel_rc_p2s.c,
sci-wcalc/parallel_rc_p2s.dia.ref, sci-wcalc/parallel_rc_p2s.tst,
sci-wcalc/parallel_rc_p2s.xml, sci-wcalc/parallel_rc_s2p.c,
sci-wcalc/parallel_rc_s2p.dia.ref, sci-wcalc/parallel_rc_s2p.tst,
sci-wcalc/parallel_rc_s2p.xml, sci-wcalc/see_also.xml,
sci-wcalc/wcalc_test.sci.in, stdio-wcalc/main.c,
stdio-wcalc/parallel_rc.dat, stdio-wcalc/parallel_rc.ref,
stdio-wcalc/tests.list: add parallel_rc
2009-02-10 19:00 dan
* htdocs/about.shtml, htdocs/air_coil.shtml, htdocs/bars.shtml,
htdocs/bugs.shtml, htdocs/coax.shtml, htdocs/coplanar.shtml,
htdocs/coupled_microstrip.shtml, htdocs/coupled_stripline.shtml,
htdocs/gtk-wcalc.shtml, htdocs/ic_microstrip.shtml,
htdocs/index.shtml, htdocs/microstrip.shtml, htdocs/news.shtml,
htdocs/parallel_rc.shtml, htdocs/projects.shtml,
cgi-wcalc/Makefile.am, cgi-wcalc/air_coil.html,
cgi-wcalc/bars.html, cgi-wcalc/coax.html,
cgi-wcalc/coplanar.html, cgi-wcalc/coupled_microstrip.html,
cgi-wcalc/coupled_stripline.html, cgi-wcalc/ic_microstrip.html,
cgi-wcalc/microstrip.html, cgi-wcalc/parallel_rc.cgi.c,
cgi-wcalc/parallel_rc.html, cgi-wcalc/stripline.html: - update
all the image sizes after I went and touched them all (ugh).
- add web pages and cgi front end for the parallel_rc module.
2009-02-10 07:10 dan
* gtk-wcalc/parallel_rc.wc, gtk-wcalc/parallel_rc_gui.c,
libwcalc/defaults.c, libwcalc/defaults.h, libwcalc/parallel_rc.c,
libwcalc/parallel_rc.h, libwcalc/parallel_rc_loadsave.c,
libwcalc/wcalc_loadsave.c: allow different units for series and
parallel resistance. Also fix some top level parallel_rc
integration
2009-02-10 00:00 dan
* README.newmodel, gtk-wcalc/Makefile.am, gtk-wcalc/parallel_rc.wc,
gtk-wcalc/parallel_rc_gui.c, gtk-wcalc/parallel_rc_gui.h,
gtk-wcalc/utils.h, gtk-wcalc/wcalc.c, htdocs/Makefile.am,
htdocs/cgi-wcalc.shtml, htdocs/left_column.incl,
htdocs/parallel_rc.shtml, libwcalc/Makefile.am,
libwcalc/defaults.c, libwcalc/libwcalc.h,
libwcalc/make_defaults.c, libwcalc/parallel_rc.c,
libwcalc/parallel_rc.h, libwcalc/parallel_rc_loadsave.c,
libwcalc/parallel_rc_loadsave.h, libwcalc/wcalc_loadsave.h: start
on the parallel RC calculator
2009-02-09 21:36 dan
* README: note some of the new models
2009-02-09 21:36 dan
* NEWS: start on 1.1 release notes
2009-02-09 21:36 dan
* README-to-release: do not forget the shared library versioning
2009-02-09 21:33 dan
* configure.ac: correctly search for the cairo driver in pstoedit
2009-02-09 21:32 dan
* ChangeLog: update for 2 years of commits
2009-02-09 14:43 dan
* pixmaps/: air_coil.obj, bars_fig.obj, coax.obj, coax_model.obj,
coplanar.obj, coplanar_model.obj, coupled_microstrip.obj,
coupled_stripline.obj, ic_microstrip.obj,
ic_microstrip_model.obj, microstrip.obj, microstrip_model.obj,
rc.obj, rl.obj, splash.obj, stripline.obj, stripline_model.obj:
remove RCS ids from the figures
2009-02-08 09:42 dan
* configure.ac, gtk-wcalc/Makefile.am, gtk-wcalc/newprint.h,
gtk-wcalc/runwcalc.in, sci-wcalc/sciman.mk: Several minor build
fixes.
- repair building on gtk1 (for that matter, any gtk prior to
gtk-2.10 which is when gtkprint showed up).
- add a missing AM_CONDITIONAL on no w3m (or links or lynx)
available. Avoids trying to execute "notfound"
2009-02-07 16:22 dan
* configure.ac: start the test for pstoedit having cairo
2009-02-07 10:10 dan
* libwcalc/: bars.c, air_coil.c: mark a few strings for translation
2009-02-07 10:03 dan
* po/nl.po: fill in missing Project-Id-Version field and get rid of
a few ^M
2009-02-07 00:34 dan
* README.newmodel: note that bars is the latest gui
2009-02-06 23:10 dan
* ps_header.c: fix a few more WaveCalc->Wcalc
2009-02-06 23:10 dan
* INSTALL: note the need for GNU make
2009-02-06 23:09 dan
* configure.ac, pixmaps/Makefile.am: clean up build system stuff
for pstoedit
2009-02-06 18:02 dan
* po/: LINGUAS, es.po, nl.po, wcalc.pot: add dutch translation from
Bert Timmerman
2009-02-06 18:02 dan
* gtk-wcalc/: air_coil_gui.c, coax_gui.c, coplanar_gui.c,
coupled_microstrip_gui.c, coupled_stripline_gui.c,
ic_microstrip_gui.c, microstrip_gui.c, newprint.c,
stripline_gui.c, symbols.h: use greek letters as appropriate in
the hardcopy output
2009-02-05 21:24 dan
* gtk-wcalc/newprint.c: remove obsolete header
2009-02-05 20:56 dan
* gtk-wcalc/Makefile.am: add some dependencies and replace a .o
with .$(OBJEXXT)
2009-02-05 20:36 dan
* gtk-wcalc/: Makefile.am, coax_gui.c, symbols.h: add some greek
symbols
2009-02-05 17:15 dan
* gtk-wcalc/: Makefile.am, air_coil_gui.c, bars_gui.c, coax_gui.c,
coplanar_gui.c, coupled_microstrip_gui.c,
coupled_stripline_gui.c, ic_microstrip_gui.c, menus.c,
microstrip_gui.c, newprint.c, stripline_gui.c: fix a handful of
minor bugs in the new print output
2009-02-05 17:14 dan
* pixmaps/: Makefile.am, air_coil.obj, coplanar.obj,
ic_microstrip.obj, stripline.obj: bring some text back to the
front after the pattern fill removal
2009-02-05 07:13 dan
* pixmaps/: bars_fig.obj, coax.obj, coplanar.obj,
coupled_microstrip.obj, coupled_stripline.obj, ic_microstrip.obj,
microstrip.obj, stripline.obj: move to solid colors instead of
pattern fills as the latter doesn't play so well with pstoedit
because they use the postscript 'imagemask' function.
2009-02-05 07:12 dan
* pixmaps/Xdefaults.tgif: add some shades of gray
2009-02-05 00:42 dan
* gtk-wcalc/: air_coil_gui.c, bars_gui.c, coax_gui.c,
coplanar_gui.c, coupled_microstrip_gui.c,
coupled_stripline_gui.c, ic_microstrip_gui.c, microstrip_gui.c,
stripline_gui.c: teach all the guis how to use newprintgmake!
2009-02-04 18:34 dan
* gtk-wcalc/newprint.c: even more print progress
2009-02-03 20:55 dan
* gtk-wcalc/newprint.c: more print clean up. still need to deal
with pagination
2009-02-03 20:37 dan
* gtk-wcalc/: bars_gui.c, newprint.c: teach the print system how to
deal with figures.
2009-02-03 17:37 dan
* gtk-wcalc/: bars_gui.c, newprint.c, newprint.h: more printing
progress
2009-01-26 23:08 dan
* gtk-wcalc/: bars_gui.c, newprint.c, newprint.h: change function
names like wc_add_double_print to wc_print_add_double as the
latter makes more logical sense. Start to pave the way for
adding graphics to the printing.
2009-01-21 00:05 dan
* configure.ac: switch to the newer AC_PROG_LIBTOOL from
AM_PROG_LIBTOOL
2009-01-21 00:01 dan
* win32/build_wcalc: do not build stdio-wcalc under windows
2009-01-15 10:54 dan
* gtk-wcalc/newprint.c: fix up the printing of values in the
requested units and print out the units as well. Also add a ton
of coomments and show some of how to get graphics into the print
output.
2009-01-15 10:52 dan
* gtk-wcalc/: wcalc.c, air_coil_gui.c, bars_gui.c, coax_gui.c,
coplanar_gui.c, coupled_microstrip_gui.c,
coupled_stripline_gui.c, ic_microstrip_gui.c, microstrip_gui.c,
stripline_gui.c: properly control the state of
wcalc->values_in_sync so I can use it to gate if printing is
allowed.
2009-01-13 21:46 dan
* gtk-wcalc/: bars_gui.c, newprint.c, newprint.h: progress towards
getting real output from newprint!
2009-01-13 15:35 dan
* gtk-wcalc/: bars_gui.c, newprint.c, newprint.h, wcalc.c, wcalc.h:
a little more progress towards the new printing world order
2009-01-13 09:36 dan
* gtk-wcalc/: Makefile.am, menus.c, newprint.c, newprint.h,
wcalc.c: start work on using gtkprint!
2009-01-13 08:46 dan
* cgi-wcalc/bars_id.h: this is a build time created file
2009-01-12 23:44 dan
* cgi-wcalc/bars.html: rearrange the form a little to clean it up
2009-01-12 21:20 dan
* gtk-wcalc/bars.wc: clean up the defaults
2009-01-12 21:20 dan
* libwcalc/defaults.c: regen
2009-01-12 21:10 dan
* cgi-wcalc/bars.html: fix a html ordering problem
2009-01-12 21:02 dan
* htdocs/faq.shtml: update the section on binaries and also bug
reports
2009-01-12 18:32 dan
* win32/: Makefile.am, build_wcalc, wcalc.nsi.in: make sure we
properly install COPYING.txt and Readme.txt and get the startmenu
links pointing to the right places.
Also create a DOS batch file for launching the installer under
vista to make it quicker to run when testing via cygwin.
2009-01-12 14:31 dan
* configure.ac: restore lost changes (initialization update)
2009-01-12 11:27 dan
* mex-wcalc/Makefile.am: prevent parallel builds in this directory.
matlab mex is not parallel safe
2009-01-11 22:53 dan
* pixmaps/: regen.mk, regen_files: add a script to rebuild some
generated files. This will let me check those generated files
into cvs which will make it easier to build on systems without
all the tools.
2009-01-11 22:47 dan
* configure.ac, octave-wcalc/Makefile.am: Newer versions (late
2.9something and with the 3.0 release) of octave added a --mex
argument to mkoctfile and that replaces the mex script that was
part of octave-forge. Expand the configure tests to look for
that. This appears to get octave support working again.
2009-01-11 13:30 dan
* htdocs/octave-wcalc.shtml: note octave versions and mex
2009-01-11 13:05 dan
* libwcalc/Makefile.am: Get rid of the -no-undefine. libwcalc
expects that each frontend will provide an alert() function.
This may be a log window for gtk, popup for cgi, printf to stderr
for stdio, etc.
2009-01-11 11:35 dan
* configure.ac: modernize the initialization a bit
2009-01-11 11:27 dan
* mex-wcalc/copyright.m, octave-wcalc/copyright.m: more copyright
updates
2009-01-11 11:09 dan
* COPYING: switch to GPLv2
2009-01-11 11:07 dan
* htdocs/: Makefile.am, common-man.mk: add some extra dependencies
to try and make sure we rebuild some files if the .incl files
change. Also correct some logic in the MISSING_XSLT conditional.
2009-01-11 10:57 dan
* gtk-wcalc/: Makefile.am, bars_gui.c, utils.c, utils.h: pull out
the code for helping to build the forms into utils so other
models can use it too.
2009-01-11 10:56 dan
* gtk-wcalc/bars.wc: use some nicer defaults
2009-01-11 10:26 dan
* po/: es.po, wcalc.pot: update to latest
2009-01-11 10:23 dan
* htdocs/tech.shtml: fix a typo
2009-01-11 10:22 dan
* configure.ac, cgi-wcalc/Makefile.am, htdocs/Makefile.am,
htdocs/common-man.mk, htdocs/shtml.mk: convert some homegrown
condidionals to use AM_CONDITIONAL.
2009-01-11 02:56 dan
* sci-wcalc/: bars_calc.c, bars_calc.dia.ref: fix the calculation
and update the ref file
2009-01-11 02:28 dan
* sci-wcalc/Makefile.am: update copyright date
2009-01-11 02:26 dan
* sci-wcalc/bars_calc.dia.ref: L1 and L2 should be identical so for
now put it that way in the reference file. k and M aren't right
yet.
2009-01-11 02:23 dan
* sci-wcalc/: bars_calc.dia.ref, bars_calc.tst: update the tests
for bars and make sure it is working
2009-01-11 02:21 dan
* sci-wcalc/wcalc_test.sci.in: add bars to the test suite
2009-01-11 02:15 dan
* sci-wcalc/bars_calc.c: get this to compile
2009-01-11 01:58 dan
* stdio-wcalc/: bars.dat, bars.ref: regen
2009-01-11 01:56 dan
* cgi-wcalc/bars.cgi.c: fill in some missing code
2009-01-11 01:42 dan
* cgi-wcalc/bars.cgi.c: get this to compile
2009-01-11 01:16 dan
* stdio-wcalc/main.c: fix typo that prevented compiling
2009-01-11 00:49 dan
* stdio-wcalc/: Makefile.am, bars.dat, bars.ref, main.c,
stdio-wcalc.1, tests.list: first pass at adding bars_calc
2009-01-11 00:40 dan
* COPYING: update copyright date
2009-01-11 00:39 dan
* cgi-wcalc/index.html: remove obsolete file
2009-01-11 00:37 dan
* cgi-wcalc/: air_coil.html, coax.html, coplanar.html,
copying.html, coupled_microstrip.html, coupled_stripline.html,
footer.html, ic_microstrip.html, microstrip.html, stripline.html:
switch a bunch of other files from BSD to GPL
2009-01-11 00:30 dan
* cgi-wcalc/: Makefile.am, bars.cgi.c, bars.html, bars_id.h: first
pass at bars cgi
2009-01-10 23:22 dan
* sci-wcalc/: air_coil_calc.dem, air_coil_syn.dem, demo.sce,
mex.mk, sciman.mk, wcalc-demo.dem: switch to GPLv2 on a bunch of
files I missed before
2009-01-10 23:10 dan
* sci-wcalc/: Makefile.am, bars_calc.c, bars_calc.dem,
bars_calc.dia.ref, bars_calc.tst, bars_calc.xml, demo.sce,
mex.mk, sciman.mk, see_also.xml, wcalc-demo.dem: first pass at
adding the bars_calc function
2009-01-10 16:11 dan
* htdocs/: Makefile.am, bars.shtml, cgi-wcalc.shtml,
left_column.incl, tech.shtml: add bars
2009-01-10 16:05 dan
* htdocs/coax.shtml: fix typo
2009-01-10 15:56 dan
* libwcalc/: bars.c, bars.h, bars_loadsave.c, defaults.c: add some
error checking and also use just one unit for dimensions
2009-01-10 15:56 dan
* gtk-wcalc/: bars.wc, bars_gui.c: get the bars gui working
2009-01-10 15:27 dan
* pixmaps/bars_fig.obj: fix labeling of the E dimension
2009-01-07 23:14 dan
* gtk-wcalc/: start.c: fix copyright date
2009-01-07 22:43 dan
* libwcalc/Makefile.am: fix a typo
2009-01-07 22:38 dan
* gtk-wcalc/: alert.c, print.c, wcwindow.c: bump copyright date and
s/WaveCalc/Wcalc in a few spots
2009-01-07 22:38 dan
* gtk-wcalc/runwcalc.in: add some LD_PRELOAD hacks in case there is
an already-installed libwcalc in the way
2009-01-07 22:38 dan
* gtk-wcalc/wcalc.c: remove debug define
2008-12-04 23:27 dan
* libwcalc/Makefile.am: clean up usage of the maintainer mode
conditional
2008-12-04 23:26 dan
* libwcalc/Makefile.am: add -no-undefined to the libtool link line
2008-12-03 18:46 dan
* configure.ac, gtk-wcalc/Makefile.am: check for windres as a build
tool to better support cross compiling
2008-11-30 09:42 dan
* gtk-wcalc/wcalc.c: add a FIXME about some env variables
2008-11-30 08:57 dan