forked from danieljprice/giza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3700 lines (2620 loc) · 165 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
2018-03-05 Daniel Price <[email protected]>
* docs/documentation/api.html,
docs/documentation/cpgplot-status.html: [web-bot] updated
auto-generated documentation
2018-03-05 Daniel Price <[email protected]>
* doc/api.pl: (web) updated links in api script
2018-03-05 Daniel Price <[email protected]>
* docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <[email protected]>
* docs/documentation/api.html,
docs/documentation/gettingstarted.html,
docs/documentation/installation.html: (web) updated links
2018-03-05 Daniel Price <[email protected]>
* docs/contact/index.html, docs/documentation/index.html,
docs/download/index.html, docs/news/index.html,
docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <[email protected]>
* docs/contact/index.html, docs/documentation/index.html,
docs/download/index.html, docs/index.html, docs/news/index.html,
docs/samples/index.html: (web) updated links
2018-03-05 Daniel Price <[email protected]>
* docs/contact/index.html, docs/documentation/api-ref.html,
docs/documentation/api.html, docs/documentation/api.shtml,
docs/documentation/cpgplot-status.html,
docs/documentation/gettingstarted.c,
docs/documentation/gettingstarted.html,
docs/documentation/index.html,
docs/documentation/installation.html,
docs/documentation/pgplot-status.html,
docs/documentation/pgplot.shtml, docs/download/index.html,
docs/news/index.html, docs/samples/index.html: (giza) added website for github pages build
2018-03-05 Daniel Price <[email protected]>
* docs/index.html, docs/style.css: (web) test github pages
2017-11-23 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-box.c: (giza_box) bug fix with drawing major axis only; also with drawing
grid (iaxis=1) git-svn-id: https://svn.code.sf.net/p/giza/code@533
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* .gitignore: updated .gitignore to ignore .lo and .la files git-svn-id: https://svn.code.sf.net/p/giza/code@532
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-viewport.c, src/giza-window.c: fix compiler warning in
giza-viewport/giza-window git-svn-id: https://svn.code.sf.net/p/giza/code@531
952f94de-64c9-43ce-8081-c12abd9885bf
2017-09-07 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-box.c: (giza_box) bug fix with spacing between box and numbers when numbers
written on top of box git-svn-id: https://svn.code.sf.net/p/giza/code@530
952f94de-64c9-43ce-8081-c12abd9885bf
2017-07-22 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-print-id.c: fix string allocation (thanks to Ole
Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@529
952f94de-64c9-43ce-8081-c12abd9885bf
2017-04-24 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-error-bars.c: bug fix with shaded error bars git-svn-id: https://svn.code.sf.net/p/giza/code@528
952f94de-64c9-43ce-8081-c12abd9885bf
2016-07-23 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: Fix off-by-one in string definition (thanks to
Ole Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@527
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-05 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-xw.c: (giza_driver_xw) blank screen issue on Linux fixed (thanks to Ole
Streicher); also enabled XW error handling routine git-svn-id: https://svn.code.sf.net/p/giza/code@526
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-scanner.l, src/lex.yy.c: (giza-scanner) declared internal functions static; recompiled flex
file git-svn-id: https://svn.code.sf.net/p/giza/code@525
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-band.c, src/giza-colour-index.c: (libgiza) build failures from previous commit fixed git-svn-id: https://svn.code.sf.net/p/giza/code@524
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-band.c, src/giza-colour-index.c, src/giza-cpgplot.c,
src/giza-warnings.c: (libgiza) shared variables declared static where possible (thanks to
Ole Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@523
952f94de-64c9-43ce-8081-c12abd9885bf
2016-06-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-save.c: (giza_save) shared variables declared static (thanks to Ole
Streicher) git-svn-id: https://svn.code.sf.net/p/giza/code@522
952f94de-64c9-43ce-8081-c12abd9885bf
2016-05-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-cpgplot.c: (cpgplot) typo in cpgplot interface fixed (cpghi2D->cpghi2d); thanks
to Ole Streicher git-svn-id: https://svn.code.sf.net/p/giza/code@521
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-19 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.am, Makefile.in, src/Makefile.am, src/Makefile.in: Move
directive .NOTPARALLEL to the correct location git-svn-id: https://svn.code.sf.net/p/giza/code@520
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.am, Makefile.in: bug fix: .NOTPARALLEL: instead of
.NOTPARALLEL (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@519
952f94de-64c9-43ce-8081-c12abd9885bf
2016-01-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.am, Makefile.in: added .NOTPARALLEL to avoid build
problems git-svn-id: https://svn.code.sf.net/p/giza/code@518
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-27 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* README: update postal address of the FSF git-svn-id: https://svn.code.sf.net/p/giza/code@517
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-22 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* COPYING: update to current GPLv2 git-svn-id: https://svn.code.sf.net/p/giza/code@516
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-12 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/Makefile.am, src/Makefile.in: Install giza.mod in the module
directory git-svn-id: https://svn.code.sf.net/p/giza/code@515
952f94de-64c9-43ce-8081-c12abd9885bf
2015-12-12 jfrieben <jfrieben@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-points.c: Draw correct symbol for marker type -4 git-svn-id: https://svn.code.sf.net/p/giza/code@514
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-20 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.in, aclocal.m4, configure, configure.ac,
src/Makefile.in, test/C/Makefile.in, test/F90/Makefile.in,
test/Makefile.in: use AM_MAINTAINER_MODE([disable]) to avoid
problems with timestamps if exported from svn git-svn-id: https://svn.code.sf.net/p/giza/code@513
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/Makefile.am, src/Makefile.in: added .h files to Makefile.am so
that make dist works git-svn-id: https://svn.code.sf.net/p/giza/code@512
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* AUTHORS, ChangeLog, NEWS: 0.9.4 git-svn-id: https://svn.code.sf.net/p/giza/code@511
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-13 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-points.c: patch for negative marker indices; now matches
expected PGPLOT behaviour; contributed by Joachim Frieben git-svn-id: https://svn.code.sf.net/p/giza/code@510
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* INSTALL: updated INSTALL instructions git-svn-id: https://svn.code.sf.net/p/giza/code@509
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* configure, configure.ac: added fallback options for cairo and x11
on OS/X if pkg-config not available git-svn-id: https://svn.code.sf.net/p/giza/code@508
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-03 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/Makefile.am, src/Makefile.in: libpgplot and libcpgplot link to
libgiza instead of including .o files; faster build (thanks to
Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@507
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-02 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/Makefile.am, src/Makefile.in: build libgiza before libcpgplot;
also copy giza-fortran.F90 to include directory git-svn-id: https://svn.code.sf.net/p/giza/code@506
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* configure, configure.ac: update libtool version info + added
comments git-svn-id: https://svn.code.sf.net/p/giza/code@505
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/{ => C}/test-error-bars-2.c: test-error-bars-2.c -> test/C
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@504
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* INSTALL: updated INSTALL instructions for autotools build (thanks
to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@503
952f94de-64c9-43ce-8081-c12abd9885bf
2015-11-01 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* : removed obsolete dirs in svn (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@502
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-character-size.c: typo in giza_set_character_height_float
doc string (missing _float) git-svn-id: https://svn.code.sf.net/p/giza/code@500
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.in, aclocal.m4, configure, configure.ac,
src/Makefile.am, src/Makefile.in, test/C/Makefile.in,
test/F90/Makefile.in, test/Makefile.in: updated build to use
pkg-config to find X11 and cairo libs git-svn-id: https://svn.code.sf.net/p/giza/code@499
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* configure.ac, src/giza-version.h.in: added versioning of
giza-version.h to configure stuff git-svn-id: https://svn.code.sf.net/p/giza/code@498
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/compile, build/config.guess, build/config.sub,
build/depcomp, build/install-sh, build/ltmain.sh, build/missing,
build/test-driver: added autoconf scripts to build dir git-svn-id: https://svn.code.sf.net/p/giza/code@497
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile.in, config.h.in, configure, src/Makefile.in,
test/C/Makefile.in, test/F90/Makefile.in, test/Makefile.in: added
autotools-generated files for distribution (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@496
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile.am: replaced Makefiles with automake and autoconf
scripts (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@495
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile, Makefile.am, aclocal.m4, build/Makefile, configure.ac,
m4/libtool.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
m4/lt~obsolete.m4, src/Makefile.am, test/C/Makefile.am,
test/F90/Makefile.am, test/Makefile: replaced Makefiles with
automake and autoconf scripts (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@494
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-band-private.h, src/giza-band.c,
src/giza-colour-index.c, src/giza-colour-private.h,
src/giza-drivers.c, src/giza-private.h: bug fixes with variables
defined in headers; now uses extern and declared in .c files git-svn-id: https://svn.code.sf.net/p/giza/code@493
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/cpgplot.pc.in, src/giza.pc.in, src/pgplot.pc.in: added
pkg-config metadata files (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@492
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* ChangeLog, CHANGES => NEWS: CHANGES->NEWS and added ChangeLog
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@491
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* include/.gitignore, lib/.gitignore: removed include and lib dirs
(thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@490
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* doc/cpgplot_status.pl, doc/get-fortran-params.pl,
doc/pgplot_status.pl: perl scripts updated to point to ../src
instead of ../interface (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@489
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* {include => src}/cpgplot.h, {include => src}/giza-shared.h,
{include => src}/giza.h: include/*.h->src (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@488
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* {interface => src}/giza-cpgplot.c, {interface =>
src}/giza-fortran.F90, {interface => src}/giza-pgplot.f90:
interface/*->src (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@487
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-2D.f90, test/test-XOpenDisplay.c, test/test-arrow.c,
test/test-band.c, test/test-box.c, test/test-cairo-xw.c,
test/test-change-page.c, test/test-circle.c,
test/test-colour-index.c, test/test-contour.c,
test/test-environment.c, test/test-error-bars.c,
test/test-format-number.c, test/test-fortran.f90,
test/test-giza-xw.c, test/test-line-cap.c, test/test-line-style.c,
test/test-openclose.c, test/test-pdf.c, test/test-pgaxis.f90,
test/test-pgncur.f90, test/test-png.c, test/test-points.c,
test/test-qtext.c, test/test-rectangle.c, test/test-render.c,
test/test-set-line-width.c, test/test-svg.c, test/test-vector.c,
test/test-window.c: test->test/C test/F90 (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@486
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/C/test-XOpenDisplay.c, test/C/test-arrow.c,
test/C/test-band.c, test/C/test-box.c, test/C/test-cairo-xw.c,
test/C/test-change-page.c, test/C/test-circle.c,
test/C/test-colour-index.c, test/C/test-contour.c,
test/C/test-environment.c, test/C/test-error-bars.c,
test/C/test-format-number.c, test/C/test-giza-xw.c,
test/C/test-line-cap.c, test/C/test-line-style.c,
test/C/test-openclose.c, test/C/test-pdf.c, test/C/test-png.c,
test/C/test-points.c, test/C/test-qtext.c, test/C/test-rectangle.c,
test/C/test-render.c, test/C/test-set-line-width.c,
test/C/test-svg.c, test/C/test-vector.c, test/C/test-window.c,
test/F90/test-2D.f90, test/F90/test-fortran.f90,
test/F90/test-pgaxis.f90, test/F90/test-pgncur.f90: test->test/C
test/F90 (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@485
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-30 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* {docs => doc}/api.pl, {docs => doc}/cpgplot_status.pl, {docs =>
doc}/get-fortran-params.pl, {docs => doc}/get-source-files.pl,
{docs => doc}/pgplot_status.pl: docs->doc (thanks to Joachim
Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@484
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* include/giza.h: added giza_rectangle_rounded and
giza_rectangle_rounded_float functions declarations git-svn-id: https://svn.code.sf.net/p/giza/code@483
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-error-bars-2.c: added test-error-bars-2.c file for all
direction values (included shaded mode) git-svn-id: https://svn.code.sf.net/p/giza/code@482
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-29 lolo-2 <lolo-2@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-error-bars.c: fix error bars bug in shaded region mode
(dir = 9) git-svn-id: https://svn.code.sf.net/p/giza/code@481
952f94de-64c9-43ce-8081-c12abd9885bf
2015-10-20 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: (os/x) fixed X11 library path for OS/X El Capitan git-svn-id: https://svn.code.sf.net/p/giza/code@480
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* README: updated readme git-svn-id: https://svn.code.sf.net/p/giza/code@479
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES: Changelog updated for 0.9.3 git-svn-id: https://svn.code.sf.net/p/giza/code@478
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: version bumped to 0.9.3 git-svn-id: https://svn.code.sf.net/p/giza/code@477
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: add -I$(PREFIX)/include/cairo to include flags git-svn-id: https://svn.code.sf.net/p/giza/code@476
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-io.c: flushing achieved with fflush instead of getchar to
avoid unnecessary hangs git-svn-id: https://svn.code.sf.net/p/giza/code@475
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-io.c: flush stdin after giza prompt to avoid repeated
device tries git-svn-id: https://svn.code.sf.net/p/giza/code@474
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c, src/giza-io.c, src/giza-private.h: BUG FIX
with long device names; string length increased to 256 chars; added
error checks for strings too long (thanks to Hugh Williams) git-svn-id: https://svn.code.sf.net/p/giza/code@473
952f94de-64c9-43ce-8081-c12abd9885bf
2015-04-16 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-png.c: better error handling in png device (thanks
to Hugh Williams) git-svn-id: https://svn.code.sf.net/p/giza/code@472
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile: added testpg target to compile pgplot tests (thanks
to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@471
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/test-pdf.c, test/test-svg.c: added separate
test-svg; test-pdf now outputs pdf git-svn-id: https://svn.code.sf.net/p/giza/code@470
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-png.c: test-png spits out sensible number of files git-svn-id: https://svn.code.sf.net/p/giza/code@469
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-png.c: test-png spits out sensible number of files git-svn-id: https://svn.code.sf.net/p/giza/code@468
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-arrow.c: test-arrow now works as expected (thanks to
Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@467
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/test-2D.f90: added test-2D to default tests git-svn-id: https://svn.code.sf.net/p/giza/code@466
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/{test-xw.c => test-giza-xw.c}: renamed
test-xw.c->test-giza-xw.c (thanks to Joachim Frieben) git-svn-id: https://svn.code.sf.net/p/giza/code@465
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/test-fortran.f90: fixed build of test-fortran git-svn-id: https://svn.code.sf.net/p/giza/code@464
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: added FFLAGS setting and -fPIC to Makefile git-svn-id: https://svn.code.sf.net/p/giza/code@463
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-05 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES: updated ChangeLog for 0.9.2 git-svn-id: https://svn.code.sf.net/p/giza/code@462
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-04 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: 0.9.2 git-svn-id: https://svn.code.sf.net/p/giza/code@461
952f94de-64c9-43ce-8081-c12abd9885bf
2015-01-04 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: use $(FC) instead of $(LIBTOOL) to compile shared
Fortran library (thanks to Sean Farley) git-svn-id: https://svn.code.sf.net/p/giza/code@460
952f94de-64c9-43ce-8081-c12abd9885bf
2014-11-11 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-line-style-private.h, src/giza-line-style.c: fine-tuning
of line styles; added offset to patterns to give better legend git-svn-id: https://svn.code.sf.net/p/giza/code@459
952f94de-64c9-43ce-8081-c12abd9885bf
2014-11-06 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-fill.c: bug fix with typedef of line width in giza fill
(thanks to W. Dehnen) git-svn-id: https://svn.code.sf.net/p/giza/code@458
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: bug fix with giza.mod in install target git-svn-id: https://svn.code.sf.net/p/giza/code@457
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: reverted build targets; also install giza.mod into
include dir by default git-svn-id: https://svn.code.sf.net/p/giza/code@456
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: workaround for macports issue with all target git-svn-id: https://svn.code.sf.net/p/giza/code@455
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES, build/Makefile: version 0.9.1 git-svn-id: https://svn.code.sf.net/p/giza/code@454
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/test-pgaxis.f90: added test for pgaxis
routines git-svn-id: https://svn.code.sf.net/p/giza/code@453
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* Makefile, build/Makefile: minor changes to build: default target
is default, not all to avoid macports issue git-svn-id: https://svn.code.sf.net/p/giza/code@452
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-pgplot.f90, src/giza-cursor-routines.c,
test/Makefile, test/test-pgncur.f90: implemented sorting in
mark_cursor/PGNCUR git-svn-id: https://svn.code.sf.net/p/giza/code@451
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-error-bars.c: bug fix with shaded error bar plotting
(causing shading of outside not inside) git-svn-id: https://svn.code.sf.net/p/giza/code@450
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-pgplot.f90: updated docs for fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@449
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES: 0.9.0 git-svn-id: https://svn.code.sf.net/p/giza/code@448
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: version 0.9.0 git-svn-id: https://svn.code.sf.net/p/giza/code@447
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-viewport.c: better margins in PGENV/giza_environment git-svn-id: https://svn.code.sf.net/p/giza/code@446
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-character-size.c, src/giza-drivers.c,
src/giza-subpanel.c: character size scaled according to panel height
not page height git-svn-id: https://svn.code.sf.net/p/giza/code@445
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-viewport.c, src/giza-window.c: BUG FIX with clipping and
positioning of panels if more than one row git-svn-id: https://svn.code.sf.net/p/giza/code@444
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-subpanel.c: BUG FIX with panel changing if more than one
row git-svn-id: https://svn.code.sf.net/p/giza/code@443
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-xw.c: BUG FIX with flushing if multiple XW devices
used git-svn-id: https://svn.code.sf.net/p/giza/code@442
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: BUG FIX with missing last page on interactive
devices if prompting is on git-svn-id: https://svn.code.sf.net/p/giza/code@441
952f94de-64c9-43ce-8081-c12abd9885bf
2014-08-22 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-pgplot.f90: comment removed git-svn-id: https://svn.code.sf.net/p/giza/code@440
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-28 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* branches/opengl/INSTALL, branches/opengl/LICENSE,
branches/opengl/Makefile, branches/opengl/build/Makefile,
branches/opengl/docs/api.pl, branches/opengl/docs/pgplot_status.pl,
branches/opengl/include/.gitignore,
branches/opengl/interface/Makefile,
branches/opengl/interface/giza-fortran.F90,
branches/opengl/interface/giza-pgplot.f90,
branches/opengl/interface/pgplot-stubs.f90,
branches/opengl/lib/.gitignore,
branches/opengl/src/giza-annotate.c,
branches/opengl/src/giza-arrow-style-private.h,
branches/opengl/src/giza-arrow-style.c,
branches/opengl/src/giza-arrow.c,
branches/opengl/src/giza-band-private.h,
branches/opengl/src/giza-band-style.c,
branches/opengl/src/giza-band.c, branches/opengl/src/giza-box.c,
branches/opengl/src/giza-buffering.c,
branches/opengl/src/giza-character-size-private.h,
branches/opengl/src/giza-character-size.c,
branches/opengl/src/giza-circle.c,
branches/opengl/src/giza-colour-index-private.h,
branches/opengl/src/giza-colour-index.c,
branches/opengl/src/giza-colour-table-private.h,
branches/opengl/src/giza-colour-table.c,
branches/opengl/src/giza-contour.c,
branches/opengl/src/giza-device-has-cursor.c,
branches/opengl/src/giza-draw.c,
branches/opengl/src/giza-driver-eps-private.h,
branches/opengl/src/giza-driver-eps.c,
branches/opengl/src/giza-driver-null-private.h,
branches/opengl/src/giza-driver-null.c,
branches/opengl/src/giza-driver-pdf-private.h,
branches/opengl/src/giza-driver-pdf.c,
branches/opengl/src/giza-driver-png-private.h,
branches/opengl/src/giza-driver-png.c,
branches/opengl/src/giza-driver-ps-private.h,
branches/opengl/src/giza-driver-ps.c,
branches/opengl/src/giza-driver-xw-private.h,
branches/opengl/src/giza-driver-xw.c,
branches/opengl/src/giza-drivers-private.h,
branches/opengl/src/giza-drivers.c,
branches/opengl/src/giza-environment.c,
branches/opengl/src/giza-error-bars.c,
branches/opengl/src/giza-features.h,
branches/opengl/src/giza-fill-private.h,
branches/opengl/src/giza-fill.c,
branches/opengl/src/giza-format-number.c,
branches/opengl/src/giza-function-t.c,
branches/opengl/src/giza-function-x.c,
branches/opengl/src/giza-function-y.c,
branches/opengl/src/giza-get-key-press.c,
branches/opengl/src/giza-get-surface-size.c,
branches/opengl/src/giza-gl-interactive.c,
branches/opengl/src/giza-gl-private.h,
branches/opengl/src/giza-gl.h,
branches/opengl/src/giza-io-private.h,
branches/opengl/src/giza-io.c, branches/opengl/src/giza-label.c,
branches/opengl/src/giza-line-cap.c,
branches/opengl/src/giza-line-style-private.h,
branches/opengl/src/giza-line-style.c,
branches/opengl/src/giza-line-width.c,
branches/opengl/src/giza-line.c, branches/opengl/src/giza-move.c,
branches/opengl/src/giza-paper.c,
branches/opengl/src/giza-points.c,
branches/opengl/src/giza-polygon.c,
branches/opengl/src/giza-private.h,
branches/opengl/src/giza-prompting-private.h,
branches/opengl/src/giza-prompting.c,
branches/opengl/src/giza-ptext.c, branches/opengl/src/giza-qtext.c,
branches/opengl/src/giza-rectangle.c,
branches/opengl/src/giza-render.c, branches/opengl/src/giza-save.c,
branches/opengl/src/giza-scanner.l,
branches/opengl/src/giza-set-font-private.h,
branches/opengl/src/giza-set-font.c,
branches/opengl/src/giza-shared-cpp.h,
branches/opengl/src/giza-stroke-private.h,
branches/opengl/src/giza-stroke.c,
branches/opengl/src/giza-text-background-private.h,
branches/opengl/src/giza-text-background.c,
branches/opengl/src/giza-text-private.h,
branches/opengl/src/giza-text.c,
branches/opengl/src/giza-transforms-private.h,
branches/opengl/src/giza-transforms.c,
branches/opengl/src/giza-vector.c,
branches/opengl/src/giza-viewport-private.h,
branches/opengl/src/giza-viewport.c,
branches/opengl/src/giza-warnings-private.h,
branches/opengl/src/giza-warnings.c,
branches/opengl/src/giza-window-private.h,
branches/opengl/src/giza-window.c, branches/opengl/src/giza.c,
branches/opengl/src/giza.h, branches/opengl/src/lex.yy.c,
branches/opengl/test/test-arrow.c,
branches/opengl/test/test-band.c, branches/opengl/test/test-box.c,
branches/opengl/test/test-change-page.c,
branches/opengl/test/test-circle.c,
branches/opengl/test/test-colour-index.c,
branches/opengl/test/test-contour.c,
branches/opengl/test/test-environment.c,
branches/opengl/test/test-error-bars.c,
branches/opengl/test/test-format-number.c,
branches/opengl/test/test-gl.c,
branches/opengl/test/test-line-cap.c,
branches/opengl/test/test-line-style.c,
branches/opengl/test/test-points.c,
branches/opengl/test/test-qtext.c,
branches/opengl/test/test-rectangle.c,
branches/opengl/test/test-render.c,
branches/opengl/test/test-set-line-width.c,
branches/opengl/test/test-vector.c,
branches/opengl/test/test-window.c, build/Makefile: deleted obsolete
branch git-svn-id: https://svn.code.sf.net/p/giza/code@439
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c, src/giza-paper.c, src/giza-subpanel.c,
src/giza-window.c: sub-panelling now works; various bugs fixed with
this git-svn-id: https://svn.code.sf.net/p/giza/code@438
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-viewport.c: bug fix with uninitialised variables if bad
args to giza_viewport git-svn-id: https://svn.code.sf.net/p/giza/code@437
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-viewport.c: docs fixed for viewport routines git-svn-id: https://svn.code.sf.net/p/giza/code@436
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c, src/giza-subpanel-private.h,
src/giza-subpanel.c, src/giza-viewport.c: clipping of plot for
sub-panels now works as expected; advance_subpanel returns flag when
page changes git-svn-id: https://svn.code.sf.net/p/giza/code@435
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90,
src/giza-histogram.c: implemented giza_histogram_binned; implements
PGBIN git-svn-id: https://svn.code.sf.net/p/giza/code@434
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-histogram.c: giza_histogram implemented; compatible with
PGHIST git-svn-id: https://svn.code.sf.net/p/giza/code@433
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-histogram.c: added interfaces for histogram routines git-svn-id: https://svn.code.sf.net/p/giza/code@432
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: can use /xs, /xserve and /xwindow to specify
X-windows device git-svn-id: https://svn.code.sf.net/p/giza/code@431
952f94de-64c9-43ce-8081-c12abd9885bf
2014-06-17 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile, include/giza.h, interface/giza-cpgplot.c,
interface/giza-fortran.F90, interface/giza-pgplot.f90,
src/giza-drivers.c, src/giza-private.h,
src/giza-subpanel-private.h, src/giza-subpanel.c,
src/giza-viewport.c: sub-panelling routines implemented (not yet
working) git-svn-id: https://svn.code.sf.net/p/giza/code@430
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-31 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES, README: updated changelog git-svn-id: https://svn.code.sf.net/p/giza/code@429
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-27 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-scanner.l, src/lex.yy.c: support for limited scope of
font changing commands in strings, i.e. {\bf text} and {\it text} git-svn-id: https://svn.code.sf.net/p/giza/code@428
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-scanner.l, src/lex.yy.c: text routines handle escape
sequences for backslash (\\), underscore (\_), hat (\^) and curly
brackets git-svn-id: https://svn.code.sf.net/p/giza/code@427
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-save.c: giza-save uses GIZA_FONT_LEN to be consistent git-svn-id: https://svn.code.sf.net/p/giza/code@426
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile: version bumped to 0.8.1 git-svn-id: https://svn.code.sf.net/p/giza/code@425
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-points.c, src/giza-ptext.c, src/giza-qtext.c,
src/giza-set-font.c: BUG FIX with font changing in rotated strings;
also original font now preserved after string is printed git-svn-id: https://svn.code.sf.net/p/giza/code@424
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-26 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-scanner.l, src/giza-text-private.h, src/giza-text.c,
src/lex.yy.c: can use \bf or \fb to get bold face in strings git-svn-id: https://svn.code.sf.net/p/giza/code@423
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-25 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/test-2D.f90: minor change to 2D test git-svn-id: https://svn.code.sf.net/p/giza/code@422
952f94de-64c9-43ce-8081-c12abd9885bf
2014-03-25 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-scanner.l, src/lex.yy.c: updated text scanner (uses
unicode Sun symbol) git-svn-id: https://svn.code.sf.net/p/giza/code@421
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-19 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-render.c: added link to giza_set_colour_table in docs git-svn-id: https://svn.code.sf.net/p/giza/code@420
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-colour-bar.c, src/giza-render.c: bug fix in docs
referring to giza_colour_ramp, should be to giza_set_colour_table git-svn-id: https://svn.code.sf.net/p/giza/code@419
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-box-time.c: updated links in docs git-svn-id: https://svn.code.sf.net/p/giza/code@418
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90: affine array does not need to be
passed for most rendered images in simple f90 interface git-svn-id: https://svn.code.sf.net/p/giza/code@417
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* test/Makefile, test/test-2D.f90: added test-2D thanks to
Jean-Francois Gonzalez git-svn-id: https://svn.code.sf.net/p/giza/code@416
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* include/giza.h: interface added for giza_get_device_id in giza.h git-svn-id: https://svn.code.sf.net/p/giza/code@415
952f94de-64c9-43ce-8081-c12abd9885bf
2013-12-18 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-cpgplot.c: added cpgtbox interface to
giza_box_time; also bug fix with cpgswin git-svn-id: https://svn.code.sf.net/p/giza/code@414
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES: updated changelog git-svn-id: https://svn.code.sf.net/p/giza/code@413
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* AUTHORS, build/Makefile: extra files included in release tarball git-svn-id: https://svn.code.sf.net/p/giza/code@412
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* CHANGES: updated changelog for 0.8.0 git-svn-id: https://svn.code.sf.net/p/giza/code@411
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-15 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* docs/api.pl: typo fixed in api script git-svn-id: https://svn.code.sf.net/p/giza/code@410
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-cpgplot.c, interface/giza-pgplot.f90: updated
status of PGPAP/cpgpap git-svn-id: https://svn.code.sf.net/p/giza/code@409
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-version.c: bug fix with documentation of giza_version git-svn-id: https://svn.code.sf.net/p/giza/code@408
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90, src/giza-version.c: added giza_version
routine to Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@407
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* build/Makefile, include/giza.h, src/giza-version.c: added giza
version routine to query version info git-svn-id: https://svn.code.sf.net/p/giza/code@406
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-vector.c: added docs for giza_vector git-svn-id: https://svn.code.sf.net/p/giza/code@405
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* interface/giza-fortran.F90: added integer parameters giving
version number info in Fortran interface git-svn-id: https://svn.code.sf.net/p/giza/code@404
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: debugging/commented out cruft removed git-svn-id: https://svn.code.sf.net/p/giza/code@403
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: updated docs on return value for
giza_open_device git-svn-id: https://svn.code.sf.net/p/giza/code@402
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c: device help shows filename option (file.png
instead of /png) git-svn-id: https://svn.code.sf.net/p/giza/code@401
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-driver-xw.c: debugging info removed git-svn-id: https://svn.code.sf.net/p/giza/code@400
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-text-background.c: bug fix with default text background
(should be -1 not 0) git-svn-id: https://svn.code.sf.net/p/giza/code@399
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-clipping.c, src/giza-private.h: clip setting specific to
each device git-svn-id: https://svn.code.sf.net/p/giza/code@398
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-drivers.c, src/giza-private.h, src/giza-ptext.c,
src/giza-text-background-private.h, src/giza-text-background.c: text
background colour setting specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@397
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-line-style.c: get_line_style always returns something
even if giza not started git-svn-id: https://svn.code.sf.net/p/giza/code@396
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>
* src/giza-character-size.c, src/giza-private.h: character height
setting specific to each device git-svn-id: https://svn.code.sf.net/p/giza/code@395
952f94de-64c9-43ce-8081-c12abd9885bf
2013-11-14 danielprice <danielprice@952f94de-64c9-43ce-8081-c12abd9885bf>