forked from cacalabs/toilet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1647 lines (1220 loc) · 44.4 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
Commit: UNSUBMITTED
Author: Sam
Date: Fri Apr 6 22:20:43 2012 +0200
fix: use the upcoming libcaca's canvas width and smushing mode features.
src/figlet.c | 3 +++
src/main.c | 12 ++++++------
src/toilet.h | 10 +---------
3 files changed, 10 insertions(+), 15 deletions(-)
Commit: 4682
Author: sam
Date: Thu Oct 7 21:43:58 2010 +0000
Remove useless reference to deprecated libcucul.
configure.ac | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
Commit: 4681
Author: sam
Date: Thu Oct 7 21:38:43 2010 +0000
Remove the build dependency on the getopt implementation and use libcaca
instead.
configure.ac | 18 +-------
src/Makefile.am | 9 +---
src/main.c | 38 ++++++-----------
src/mygetopt.c | 120 -------------------------------------------------------
src/mygetopt.h | 29 -------------
5 files changed, 18 insertions(+), 196 deletions(-)
Commit: 4356
Author: sam
Date: Tue Feb 9 01:22:20 2010 +0000
Update ChangeLog.
ChangeLog | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
Commit: 4355
Author: sam
Date: Tue Feb 9 01:21:56 2010 +0000
No longer check for zlib, it's provided by libcaca.
configure.ac | 6 +-----
src/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 6 deletions(-)
Commit: 4354
Author: sam
Date: Tue Feb 9 01:07:02 2010 +0000
Set version to 0.2 and update COPYING, NEWS, README, TODO...
COPYING | 4 +-
ChangeLog | 100 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Makefile.am | 2 +
NEWS | 16 +++++++++
README | 1 +
TODO | 3 --
configure.ac | 4 +-
7 files changed, 123 insertions(+), 7 deletions(-)
Commit: 4353
Author: sam
Date: Tue Feb 9 00:50:15 2010 +0000
Improve testsuite.
test/Makefile.am | 4 ++--
test/check-build | 38 --------------------------------------
test/check-fonts | 39 ++++++++++++++++++---------------------
test/check-source | 37 +++++++++++++++++++++++++++++++++++++
4 files changed, 57 insertions(+), 61 deletions(-)
Commit: 4350
Author: sam
Date: Tue Feb 9 00:24:47 2010 +0000
Get rid of $Id$ keywords.
NEWS | 1 -
README | 1 -
TODO | 1 -
bootstrap | 1 -
configure.ac | 10 ++--------
doc/Makefile.am | 1 -
src/export.c | 2 --
src/export.h | 2 --
src/figlet.c | 2 --
src/filter.c | 2 --
src/filter.h | 2 --
src/main.c | 2 --
src/render.c | 2 --
src/render.h | 2 --
src/term.c | 2 --
src/toilet.h | 2 --
test/Makefile.am | 1 -
tools/Makefile.am | 1 -
18 files changed, 2 insertions(+), 35 deletions(-)
Commit: 4349
Author: sam
Date: Tue Feb 9 00:09:34 2010 +0000
Get rid of deprecated libcaca calls now that beta17 is out.
src/render.c | 6 +++---
tools/caca2tlf.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
Commit: 4348
Author: sam
Date: Tue Feb 9 00:09:29 2010 +0000
Put package version in manual page.
doc/toilet.1.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 4347
Author: sam
Date: Mon Feb 8 23:56:33 2010 +0000
Add mygetopt.c to the project. Fixes #42.
configure.ac | 9 +++-
src/Makefile.am | 14 +++++--
src/main.c | 78 ++++++++++++------------------------
src/mygetopt.c | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/mygetopt.h | 29 +++++++++++++
5 files changed, 192 insertions(+), 58 deletions(-)
Commit: 4345
Author: sam
Date: Mon Feb 8 23:34:05 2010 +0000
Search for missing fonts in the current directory (Fixes #40) and display
an error message in case of failure.
doc/toilet.1.in | 1 +
src/figlet.c | 9 ++++++++-
2 files changed, 9 insertions(+), 1 deletions(-)
Commit: 4344
Author: sam
Date: Mon Feb 8 23:21:46 2010 +0000
Build-depend on libcaca 0.99.beta17, to get colour font support.
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 4343
Author: sam
Date: Mon Feb 8 23:21:40 2010 +0000
Better ChangeLog generation.
ChangeLog | 1606 +++++++++++++++++++++++++++++++++++++++++++++++------------
Makefile.am | 5 +
2 files changed, 1303 insertions(+), 308 deletions(-)
Commit: 4306
Author: sam
Date: Wed Jan 27 00:48:05 2010 +0000
Two new automatic fonts: biggray9 and biggray12.
Makefile.am | 2 ++
fonts/biggray12.tlf | Bin 0 -> 116661 bytes
fonts/biggray9.tlf | Bin 0 -> 84507 bytes
3 files changed, 2 insertions(+), 0 deletions(-)
Commit: 4305
Author: sam
Date: Wed Jan 27 00:47:58 2010 +0000
Generate colour fonts with caca2tlf.
tools/caca2tlf.c | 67 +++++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 57 insertions(+), 10 deletions(-)
Commit: 4295
Author: sam
Date: Sun Jan 24 01:47:14 2010 +0000
Add a test to check that all fonts can be loaded.
fonts/Makefile.am | 2 ++
test/Makefile.am | 4 ++--
test/check-build | 6 +++++-
test/check-fonts | 34 ++++++++++++++++++++++++++++++++++
4 files changed, 43 insertions(+), 3 deletions(-)
Commit: 4293
Author: sam
Date: Thu Jan 21 15:55:56 2010 +0000
Remove spaces from the pagga font, to make it look nicer with proportional
fonts.
fonts/pagga.tlf | 40 ++++++++++++++++++++--------------------
1 files changed, 20 insertions(+), 20 deletions(-)
Commit: 4276
Author: sam
Date: Mon Jan 18 02:01:44 2010 +0000
Add a new CP437 font: pagga.tlf
fonts/Makefile.am | 2 +-
fonts/pagga.tlf | 534 +++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 535 insertions(+), 1 deletions(-)
Commit: 4138
Author: sam
Date: Wed Dec 16 19:20:26 2009 +0000
Fix a crash with multiline input caused by losing the figfont information.
src/figlet.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
Commit: 4136
Author: sam
Date: Wed Dec 16 15:54:17 2009 +0000
Add a source code sanity check.
Makefile.am | 2 +-
configure.ac | 1 +
src/Makefile.am | 2 ++
test/Makefile.am | 6 ++++++
test/check-build | 34 ++++++++++++++++++++++++++++++++++
tools/Makefile.am | 2 ++
6 files changed, 46 insertions(+), 1 deletions(-)
Commit: 4135
Author: sam
Date: Wed Dec 16 00:37:44 2009 +0000
New ASCII fonts based on a simple translation of the Monospace ones.
Makefile.am | 27 ++++++++-------
fonts/Makefile.am | 2 +
fonts/ascii12.tlf | Bin 0 -> 57675 bytes
fonts/ascii9.tlf | Bin 0 -> 43154 bytes
fonts/bigascii12.tlf | Bin 0 -> 85164 bytes
fonts/bigascii9.tlf | Bin 0 -> 63228 bytes
fonts/bigmono12.tlf | Bin 96310 -> 96319 bytes
fonts/bigmono9.tlf | Bin 71379 -> 71389 bytes
fonts/letter.tlf | 8 +++-
fonts/mono12.tlf | Bin 64756 -> 64764 bytes
fonts/mono9.tlf | Bin 47390 -> 47399 bytes
fonts/smascii12.tlf | Bin 0 -> 50934 bytes
fonts/smascii9.tlf | Bin 0 -> 39922 bytes
fonts/smmono12.tlf | Bin 57408 -> 57416 bytes
fonts/smmono9.tlf | Bin 43288 -> 43296 bytes
src/main.c | 2 +-
tools/caca2tlf.c | 89 ++++++++++++++++++++++++++++++++++++--------------
17 files changed, 88 insertions(+), 40 deletions(-)
Commit: 4134
Author: sam
Date: Wed Dec 16 00:37:31 2009 +0000
Routine cleanup: update links and e-mail addresses in source and
documentation, and update fonts using the latest libcaca version.
doc/toilet.1.in | 4 ++--
fonts/bigmono12.tlf | Bin 86088 -> 96310 bytes
fonts/bigmono9.tlf | Bin 63466 -> 71379 bytes
fonts/circle.tlf | 4 ++--
fonts/emboss.tlf | 4 ++--
fonts/emboss2.tlf | 4 ++--
fonts/future.tlf | 6 +++---
fonts/mono12.tlf | Bin 55455 -> 64756 bytes
fonts/mono9.tlf | Bin 40250 -> 47390 bytes
fonts/smblock.tlf | 4 ++--
fonts/smbraille.tlf | 6 +++---
fonts/smmono12.tlf | Bin 48946 -> 57408 bytes
fonts/smmono9.tlf | Bin 36832 -> 43288 bytes
fonts/wideterm.tlf | 4 ++--
src/export.c | 2 +-
src/export.h | 2 +-
src/figlet.c | 2 +-
src/filter.c | 2 +-
src/filter.h | 2 +-
src/main.c | 6 +++---
src/render.c | 2 +-
src/render.h | 2 +-
src/term.c | 2 +-
src/toilet.h | 2 +-
tools/caca2tlf.c | 2 +-
25 files changed, 31 insertions(+), 31 deletions(-)
Commit: 4133
Author: sam
Date: Wed Dec 16 00:37:20 2009 +0000
Revert previous fix for deprecated libcaca versions. It's possible we have
a TOIlet release before a libcaca one.
src/render.c | 6 +++---
tools/caca2tlf.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
Commit: 4068
Author: sam
Date: Mon Nov 30 00:47:24 2009 +0000
Add a "border" filter to add a border around text.
src/filter.c | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
Commit: 4067
Author: sam
Date: Mon Nov 30 00:47:18 2009 +0000
Update bootstrap script.
bootstrap | 47 +++++++++++++++++++++++++++++++----------------
1 files changed, 31 insertions(+), 16 deletions(-)
Commit: 4066
Author: sam
Date: Mon Nov 30 00:47:13 2009 +0000
Fix deprecated libcaca calls.
src/render.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Commit: 3552
Author: sam
Date: Tue Jul 14 10:00:03 2009 +0000
Added "letter.tlf", a font designed by Francesco Poli.
fonts/Makefile.am | 2 +-
fonts/letter.tlf | 836 +++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 837 insertions(+), 1 deletions(-)
Commit: 2988
Author: sam
Date: Sat Oct 18 21:36:17 2008 +0000
Port toilet to the unified libcaca 0.99.beta15 API.
configure.ac | 4 +-
doc/toilet.1.in | 2 +-
src/Makefile.am | 4 +-
src/export.c | 6 ++--
src/figlet.c | 12 +++++-----
src/filter.c | 48 +++++++++++++++++++-------------------
src/main.c | 2 +-
src/render.c | 44 ++++++++++++++++++------------------
src/term.c | 12 +++++-----
src/toilet.h | 6 ++--
tools/Makefile.am | 4 +-
tools/caca2tlf.c | 64 ++++++++++++++++++++++++++--------------------------
12 files changed, 104 insertions(+), 104 deletions(-)
Commit: 2537
Author: sam
Date: Wed Jul 16 13:30:02 2008 +0000
* configure.ac: fix libcucul-dev dependency value.
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 2420
Author: sam
Date: Sun Jun 15 15:02:23 2008 +0000
* Get rid of io.c/io.h: IO functions are now in libcucul.
src/Makefile.am | 1 -
src/figlet.c | 1 -
src/io.c | 213 -------------------------------------------------------
src/io.h | 24 ------
4 files changed, 0 insertions(+), 239 deletions(-)
Commit: 2419
Author: sam
Date: Sun Jun 15 14:59:25 2008 +0000
* Re-add the cx->torender trick to avoid crashing on filters. This really
needs some architecture thinking.
src/figlet.c | 5 ++++-
src/render.c | 3 ++-
2 files changed, 6 insertions(+), 2 deletions(-)
Commit: 2418
Author: sam
Date: Sun Jun 15 14:47:12 2008 +0000
* Require cucul >= 0.99.beta15. Not released yet, but at least we won't
get any complaints about crashes or compilation issues.
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 2417
Author: sam
Date: Sun Jun 15 14:47:08 2008 +0000
* Add a .gitignore files for git-svn users.
.gitignore | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
Commit: 2416
Author: sam
Date: Sun Jun 15 14:47:04 2008 +0000
* Put autotools files in ./.auto instead of ./autotools.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 2415
Author: sam
Date: Sun Jun 15 14:46:59 2008 +0000
* Fix a compilation warning due to libcucul API changes.
tools/caca2tlf.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 2414
Author: sam
Date: Sun Jun 15 14:46:54 2008 +0000
* Get rid of all the FIGlet font handling: everything is moving into
libcucul.
src/figlet.c | 422 +---------------------------------------------------------
src/render.c | 13 +-
src/render.h | 2 +-
3 files changed, 14 insertions(+), 423 deletions(-)
Commit: 2214
Author: sam
Date: Thu Jan 24 19:47:49 2008 +0000
* Fix a bashism in the configure script that the FreeBSD guys apparently
never bothered to tell me about.
configure.ac | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Commit: 1831
Author: sam
Date: Sun Sep 30 15:45:42 2007 +0000
* Added left and right filters for 90-degree rotations.
* Bumped libcucul versioned dependency accordingly.
configure.ac | 4 ++--
src/filter.c | 26 +++++++++++++++++++++-----
2 files changed, 23 insertions(+), 7 deletions(-)
Commit: 1830
Author: sam
Date: Sun Sep 30 15:44:21 2007 +0000
* New version of the bootstrap script.
bootstrap | 25 ++++++++++++++-----------
1 files changed, 14 insertions(+), 11 deletions(-)
Commit: 1811
Author: sam
Date: Thu Aug 2 15:41:12 2007 +0000
* Wide terminal font (ASCII only)
fonts/Makefile.am | 2 +-
fonts/wideterm.tlf | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 133 insertions(+), 1 deletions(-)
Commit: 1810
Author: sam
Date: Tue Jul 17 21:09:58 2007 +0000
* Oops, I forgot to add an additional line of comments when I added the
no warranty clause to the fonts.
fonts/bigmono12.tlf | Bin 75353 -> 86088 bytes
fonts/bigmono9.tlf | Bin 56049 -> 63466 bytes
fonts/circle.tlf | 2 +-
fonts/emboss.tlf | 2 +-
fonts/emboss2.tlf | 2 +-
fonts/future.tlf | 2 +-
fonts/mono12.tlf | Bin 49122 -> 55455 bytes
fonts/mono9.tlf | Bin 35751 -> 40250 bytes
fonts/smblock.tlf | 6 +++---
fonts/smbraille.tlf | 2 +-
fonts/smmono12.tlf | Bin 43402 -> 48946 bytes
fonts/smmono9.tlf | Bin 32653 -> 36832 bytes
12 files changed, 8 insertions(+), 8 deletions(-)
Commit: 1765
Author: sam
Date: Tue Jun 12 16:45:21 2007 +0000
* 0x0153 œ LATIN SMALL LIGATURE OE
fonts/smblock.tlf | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Commit: 1469
Author: sam
Date: Thu Dec 14 21:38:06 2006 +0000
* Fix build for systems with no zlib-devel.
src/io.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 1468
Author: sam
Date: Thu Dec 14 21:18:54 2006 +0000
* Fix --as-needed issue, thanks to Pavlov Konstantin.
tools/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 1461
Author: sam
Date: Tue Dec 12 01:50:48 2006 +0000
* Bwarf, typo in the no warranty clause.
fonts/circle.tlf | 2 +-
fonts/emboss.tlf | 2 +-
fonts/emboss2.tlf | 2 +-
fonts/future.tlf | 2 +-
fonts/smblock.tlf | 2 +-
fonts/smbraille.tlf | 2 +-
src/export.c | 2 +-
src/export.h | 2 +-
src/figlet.c | 2 +-
src/filter.c | 2 +-
src/filter.h | 2 +-
src/io.c | 2 +-
src/io.h | 2 +-
src/main.c | 2 +-
src/render.c | 2 +-
src/render.h | 2 +-
src/term.c | 2 +-
src/toilet.h | 2 +-
tools/caca2tlf.c | 2 +-
19 files changed, 19 insertions(+), 19 deletions(-)
Commit: 1451
Author: sam
Date: Mon Dec 11 15:10:28 2006 +0000
* Add a no warranty clause to the code.
fonts/circle.tlf | 3 ++-
fonts/emboss.tlf | 3 ++-
fonts/emboss2.tlf | 3 ++-
fonts/future.tlf | 3 ++-
fonts/smblock.tlf | 3 ++-
fonts/smbraille.tlf | 3 ++-
src/export.c | 7 ++++---
src/export.h | 7 ++++---
src/figlet.c | 7 ++++---
src/filter.c | 7 ++++---
src/filter.h | 7 ++++---
src/io.c | 7 ++++---
src/io.h | 7 ++++---
src/main.c | 7 ++++---
src/render.c | 7 ++++---
src/render.h | 7 ++++---
src/term.c | 7 ++++---
src/toilet.h | 7 ++++---
tools/caca2tlf.c | 7 ++++---
19 files changed, 64 insertions(+), 45 deletions(-)
Commit: 1442
Author: sam
Date: Thu Nov 30 16:58:39 2006 +0000
* Use PKG_CHECK_MODULES the right way. Fixes build on Alt Linux.
configure.ac | 2 +-
src/Makefile.am | 4 ++--
tools/Makefile.am | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
Commit: 1441
Author: sam
Date: Thu Nov 30 16:51:38 2006 +0000
* Cosmetic.
src/main.c | 90 ++++++++++++++++++++++++++++++-----------------------------
1 files changed, 46 insertions(+), 44 deletions(-)
Commit: 1418
Author: sam
Date: Thu Nov 16 15:31:51 2006 +0000
* Added Hangul and CJK shit to the Circle font.
fonts/circle.tlf | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 69 insertions(+), 1 deletions(-)
Commit: 1410
Author: sam
Date: Thu Nov 16 00:34:48 2006 +0000
* I hate SVN keywords. Here, fixed at last.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 1409
Author: sam
Date: Thu Nov 16 00:33:32 2006 +0000
* Added a "make upload" rule for releases.
Makefile.am | 6 ++++++
configure.ac | 2 +-
2 files changed, 7 insertions(+), 1 deletions(-)
Commit: 1408
Author: sam
Date: Thu Nov 16 00:25:17 2006 +0000
* Grmbl, set $Id on configure.ac.
Commit: 1407
Author: sam
Date: Thu Nov 16 00:24:33 2006 +0000
* Set version to 0.1.
* Added ChangeLog, updated TODO/NEWS/README.
ChangeLog | 489 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Makefile.am | 2 +-
NEWS | 6 +
README | 6 +
TODO | 14 ++
configure.ac | 4 +-
6 files changed, 518 insertions(+), 3 deletions(-)
Commit: 1406
Author: sam
Date: Thu Nov 16 00:12:06 2006 +0000
* Fix layout information of shipped fonts.
fonts/emboss.tlf | 2 +-
fonts/emboss2.tlf | 2 +-
fonts/future.tlf | 2 +-
fonts/smblock.tlf | 2 +-
fonts/smbraille.tlf | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
Commit: 1405
Author: sam
Date: Thu Nov 16 00:05:22 2006 +0000
* Define default layout as fullwidth for generated fonts.
fonts/bigmono12.tlf | Bin 75318 -> 75353 bytes
fonts/bigmono9.tlf | Bin 56026 -> 56049 bytes
fonts/mono12.tlf | Bin 49089 -> 49122 bytes
fonts/mono9.tlf | Bin 35733 -> 35751 bytes
fonts/smblock.tlf | 106 +++++++++++++++++++++++++-------------------------
fonts/smmono12.tlf | Bin 43378 -> 43402 bytes
fonts/smmono9.tlf | Bin 32628 -> 32653 bytes
tools/caca2tlf.c | 8 +++-
8 files changed, 60 insertions(+), 54 deletions(-)
Commit: 1404
Author: sam
Date: Thu Nov 16 00:04:39 2006 +0000
* Completed support for -s, -S, -k, -W, -o.
src/figlet.c | 116 ++++++++++++++++++++++++++++++++++++++++------------------
src/main.c | 16 ++++----
src/toilet.h | 3 +-
3 files changed, 90 insertions(+), 45 deletions(-)
Commit: 1403
Author: sam
Date: Wed Nov 15 23:12:58 2006 +0000
* Updated help and manpage.
doc/toilet.1.in | 16 +++++++++++++++-
src/main.c | 28 ++++++++++++++++------------
2 files changed, 31 insertions(+), 13 deletions(-)
Commit: 1402
Author: sam
Date: Wed Nov 15 12:07:00 2006 +0000
* Fix universal smushing.
src/figlet.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Commit: 1401
Author: sam
Date: Wed Nov 15 03:29:34 2006 +0000
* Smushing support. Yeah baby.
src/figlet.c | 151 ++++++++++++++++++++++++++++++++++++++++++++++++----------
src/main.c | 21 +++++++-
src/toilet.h | 3 +-
3 files changed, 146 insertions(+), 29 deletions(-)
Commit: 1400
Author: sam
Date: Tue Nov 14 23:42:11 2006 +0000
* Kerning support. We used to have:
__ __ _
\ \ / / (_) ___ _ _ __ __ _ __ ___ _ _ __
\ V / | | / -_) | || | \ \ / | '_ \ / _ \ | '_| / _|
\_/ |_| \___| \_,_| /_\_\ | .__/ \___/ |_| \__|
|_|
Now we have:
__ __ _
\ \ / /(_) ___ _ _ __ __ _ __ ___ _ _ __
\ V / | |/ -_)| || |\ \ / | '_ \/ _ \| '_|/ _|
\_/ |_|\___| \_,_|/_\_\ | .__/\___/|_| \__|
|_|
Now we just need smushing.
src/figlet.c | 53 +++++++++++++++++++++++++++++++++++++++++++++--------
src/toilet.h | 6 +-----
2 files changed, 46 insertions(+), 13 deletions(-)
Commit: 1385
Author: sam
Date: Mon Nov 13 01:02:05 2006 +0000
* Support for ANSI escape codes in the input:
http://zoy.org/~sam/toilet-ansi.png
http://zoy.org/~sam/toilet-ansi2.png
* Empty lines are currently broken.
src/figlet.c | 15 ++++++++---
src/render.c | 82 +++++++++++++++++++++++++++++++++++++++++----------------
src/term.c | 5 ++-
src/toilet.h | 2 +-
4 files changed, 74 insertions(+), 30 deletions(-)
Commit: 1382
Author: sam
Date: Sun Nov 12 22:52:05 2006 +0000
* Fix max width in smblock.tlf.
fonts/smblock.tlf | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 1376
Author: sam
Date: Sun Nov 12 20:37:58 2006 +0000
* Now that libcaca 0.99.beta10 is out, we can switch to the new API.
configure.ac | 4 ++--
doc/Makefile.am | 2 +-
src/figlet.c | 27 +++++++++------------------
src/filter.c | 10 +++++-----
src/render.c | 10 +++++-----
src/term.c | 2 +-
tools/caca2tlf.c | 29 +++++++++++++++--------------
7 files changed, 38 insertions(+), 46 deletions(-)
Commit: 1368
Author: sam
Date: Sun Nov 12 18:09:54 2006 +0000
* Double width support in caca2tlf.
fonts/bigmono12.tlf | Bin 63251 -> 75318 bytes
fonts/bigmono9.tlf | Bin 46988 -> 56026 bytes
fonts/mono12.tlf | Bin 41823 -> 49089 bytes
fonts/mono9.tlf | Bin 30477 -> 35733 bytes
fonts/smmono12.tlf | Bin 36946 -> 43378 bytes
fonts/smmono9.tlf | Bin 27838 -> 32628 bytes
tools/caca2tlf.c | 44 ++++++++++++++++++++++++++------------------
7 files changed, 26 insertions(+), 18 deletions(-)
Commit: 1367
Author: sam
Date: Sun Nov 12 18:02:15 2006 +0000
* Add a "make fonts" rule to rebuild all generated fonts.
Makefile.am | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
Commit: 1327
Author: sam
Date: Fri Nov 10 14:58:12 2006 +0000
* Generate the manpage in the make rule, not the configure rule, because
at configure time ${datarootdir} depends on ${prefix} which is defined
a bit too late in the script.
configure.ac | 1 -
doc/Makefile.am | 4 ++++
2 files changed, 4 insertions(+), 1 deletions(-)
Commit: 1326
Author: sam
Date: Fri Nov 10 14:30:22 2006 +0000
* Allow setting the font directory using --datadir / --datarootdir.
configure.ac | 1 +
doc/Makefile.am | 2 +-
doc/toilet.1 | 152 -------------------------------------------------------
doc/toilet.1.in | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/Makefile.am | 1 +
src/main.c | 2 +-
6 files changed, 156 insertions(+), 154 deletions(-)
Commit: 1325
Author: sam
Date: Fri Nov 10 14:19:13 2006 +0000
* Do not cache ac_build_date.
configure.ac | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
Commit: 1323
Author: sam
Date: Fri Nov 10 08:54:04 2006 +0000
* Add a manual page.
Makefile.am | 2 +-
configure.ac | 1 +
doc/Makefile.am | 6 ++
doc/toilet.1 | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 160 insertions(+), 1 deletions(-)
Commit: 1322
Author: sam
Date: Fri Nov 10 08:29:10 2006 +0000
* Output filter list to stdout, not stderr.
src/filter.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Commit: 1321
Author: sam
Date: Fri Nov 10 07:56:55 2006 +0000
* Moved export stuff in export.c.
* Bail out with an error if the requested export format is unsupported.
src/Makefile.am | 1 +
src/export.c | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/export.h | 20 +++++++++++++++++++
src/main.c | 22 ++++----------------
4 files changed, 84 insertions(+), 17 deletions(-)
Commit: 1320
Author: sam
Date: Fri Nov 10 07:51:21 2006 +0000
* Fix signed/unsigned warning.
src/filter.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 1319
Author: sam
Date: Fri Nov 10 07:47:17 2006 +0000
* Use "-F list" to list available filters.
* Use "-E" to specify export format, "-E list" to list them.
src/filter.c | 24 ++++++++++++++++++------
src/filter.h | 1 +
src/main.c | 50 +++++++++++++++++++++++++++++++++++++-------------
3 files changed, 56 insertions(+), 19 deletions(-)
Commit: 1318
Author: sam
Date: Fri Nov 10 07:38:52 2006 +0000
* Don't crash if an export error occurs.
src/render.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
Commit: 1317
Author: sam
Date: Thu Nov 9 21:58:43 2006 +0000
* Updated code to the beta9 API.
src/filter.c | 20 +++++++-------------
1 files changed, 7 insertions(+), 13 deletions(-)
Commit: 1316
Author: sam
Date: Thu Nov 9 21:58:21 2006 +0000
* Minor cosmetic change in the configure output.
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Commit: 1299
Author: sam
Date: Mon Nov 6 17:39:42 2006 +0000
* Ignore negative indices in font data.
src/figlet.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
Commit: 1298
Author: sam
Date: Mon Nov 6 17:33:31 2006 +0000
* Make figlet font importer more tolerant with empty lines.
src/figlet.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
Commit: 1297
Author: sam
Date: Mon Nov 6 17:24:40 2006 +0000
* Updated mono9 and mono12 fonts and added small and big variants.
fonts/Makefile.am | 5 ++++-
fonts/bigmono12.tlf | Bin 0 -> 63251 bytes
fonts/bigmono9.tlf | Bin 0 -> 46988 bytes
fonts/mono12.tlf | Bin 63363 -> 41823 bytes
fonts/mono9.tlf | Bin 47020 -> 30477 bytes
fonts/smmono12.tlf | Bin 0 -> 36946 bytes
fonts/smmono9.tlf | Bin 0 -> 27838 bytes
7 files changed, 4 insertions(+), 1 deletions(-)
Commit: 1296
Author: sam
Date: Mon Nov 6 17:24:02 2006 +0000
* Add --half and --quarter options to caca2tlf.
tools/caca2tlf.c | 144 ++++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 114 insertions(+), 30 deletions(-)
Commit: 1293
Author: sam
Date: Mon Nov 6 01:13:38 2006 +0000
* Got rid of the mono9.c renderer. We now have a .tlf font instead.
src/Makefile.am | 2 +-
src/main.c | 2 +-
src/mono9.c | 131 -------------------------------------------------------
src/render.c | 3 -
src/render.h | 1 -
5 files changed, 2 insertions(+), 137 deletions(-)
Commit: 1292
Author: sam
Date: Mon Nov 6 01:11:27 2006 +0000
* Added two new fonts created with caca2tlf:
caca2tlf "Monospace 9" | zip >| fonts/mono9.tlf
caca2tlf "Monospace Bold 12" | zip >| fonts/mono12.tlf
fonts/Makefile.am | 2 +-
fonts/mono12.tlf | Bin 0 -> 63363 bytes
fonts/mono9.tlf | Bin 0 -> 47020 bytes