~ubuntu-branches/ubuntu/gutsy/ttf-freefont/gutsy

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
$Id: ChangeLog,v 1.243 2006/04/15 21:49:42 peterlin Exp $

2006-04-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: corrected U+10D3.

	* sfd/FreeSans.sfd: ligature U+FB06 (LATIN SMALL LIGATURE S T)
	changed from mandatory ("liga") to discretionary ("dlig") (bug
	#16253).

	* sfd/FreeMono.sfd: deleted incomplete glyph U+FB06 (LATIN SMALL
	LIGATURE S T); deleted U+FB00, U+FB01, U+FB02, U+FB05 as
	ligatures (bug #16253).

	* sfd/FreeMonoOblique.sfd, sfd/FreeMonoBoldOblique.sfd: added
	U+FB00; deleted U+FB01, U+FB02 as ligatures (bug #16253).

	* sfd/FreeMonoBold.sfd: deleted U+FB00, U+FB01, U+FB02 as
	ligatures (bug #16253).
	
	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd: added Georgian letters, donated by
	Gia Shervashidze

2006-02-22  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd: ligature U+FB4F
	changed from mandatory ("liga") to discretionary ("dlig"). This is
	respons to Bug#349657: [bug #15792] Freefont Alef and Lamed
	combine

2006-02-21  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd,
	sfd/FreeSansBold.sfd: ligature U+FB4F changed from mandatory
	("liga") to discretionary ("dlig"). This is respons to Bug#349657:
	[bug #15792] Freefont Alef and Lamed combine

	* sfd/FreeSerif.sfd: corrected bug#275759: [bug #15790] FreeSerif
	glyphs for U+2198/U+2199 were reversed.

2006-02-15  Denis Jacquerye <moyogo@gmail.com>
	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, 
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeMonoBold.sfd: removed ij 
	and IJ ligatures.

2006-02-10  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: added small Georgian letters (mkhedruli),
	donated by Gia Shervashidze

	* AUTHORS: Added Gia Shervashidze

	* CREDITS: Added Gia Shervashidze

2006-01-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* notes/maintenance.txt: Added information on the Makefile now
	used; username for FTP login is anonymous.

	* sfd/FreeSansBold.sfd: added U+0569, U+0571, U+0579, U+057B,
	U+0586. Armenian small letters completed.
	
	* sfd/FreeSerif.sfd: added U+0297, U+02AD-02AF. IPA Extensions
	section is now complete. Copied a dozen of glyphs from Omega IPA
	to Phonetic Extension section.

2006-01-25  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+01A, U+01A3, U+01A6, U+01B2, U+01BA,
	U+01BB, U+01BE, U+01BF.
	
	* sfd/FreeSans.sfd: aligned small Armenian letters to x-height in
	response to bug #15480. Armenian in Free Sans needs a major
	cleanup.

2006-01-24  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: changed U+0452, U+045B. Cleanup: U+0460,
	U+0461, U+04Bc, U+04BD, U+0508.

	* sfd/FreeSansOblique.sfd: replaced accented chars in Latin-1 and
	Latin Extended-B sections with references, where possible.

	* sfd/FreeSerif.sfd: changed U+0285.

2006-01-23  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+0195, U+01AA, U+0297, U+03D7,
	U+03F0. Several flipped references replaced by outlines.

	* sfd/FreeSansOblique.sfd: Latin Extended-B section more or less
	brought in sync with FreeSans.

	* sfd/FreeMonoBoldOblique.sfd: added glyphs from FreeMonoBold in
	the Latin Extended-B and IPA Extensions sections.

	* sfd/FreeSerifBold.sfd: Added U+0224, U+0225. Changed U+01B7,
	U+01B8, U+04E0, U+0452, U+045B. Replaced accented characters in
	the Cyrillic region with references.

2006-01-21  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+0255, U+0264, U+0277, U+0286,
	U+029D. Changed U+0261. Deleted spurious glyphs in the control
	code area.

2006-01-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: replaced Hardip Pannu Singh's Gurmukhi with
	AnmolUni by Kulbir Singh Thind.

2006-01-17  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd: Added U+018D, U+0194, U+01B5, U+01B6,
	U+01BE, U+0262, U+02A2.
	
	* sfd/FreeSansBold.sfd: Changed U+0261 in order to distinguish it
	from U+0067. Changed U+0251, U+0252.
	
	* sfd/FreeSerifBold.sfd: Small changes in the Cyrillic
	section. Added U+0183, U+018C.
	
	* sfd/FreeSans.sfd: Added U+2045, U+2046.
	
	* sfd/FreeSansBold.sfd: Filled in the Gurkmukhi part with the
	AnmolUni-Bold by Kulbir Singh Thind. Also some minor corrections
	in the Cyrillic part.

	* CREDITS: Added Kulbir Singh Thind.

	* AUTHORS: Added Kulbir Singh Thind.
	
2006-01-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: Thomas Ridgeway's Tamil characters replaced
	by the ones released by the Samyak font project.

	* CREDITS: Added Pravin Satpute, Bageshri Salvi, Rahul Bhalerao
	and Sandeep Shedmake

	* AUTHORS: Added Pravin Satpute, Bageshri Salvi, Rahul Bhalerao
	and Sandeep Shedmake

2006-01-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd, sfd/FreeMonoBoldOblique.sfd: minor changes.

2006-01-05  Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd: added cedi sign U+20B5, Ghanaian
	currency

2005-12-29  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: minor cleanup in the Gujarati part.

2005-12-22  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: Devanagari and Gujarati parts cleared; once
	again merged with Gargi 1.9 and Padmaa 0.6, this time correctly so
	that the anchor points survived the merger.

2005-12-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+0577.

2005-12-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+0559, U+055F, U+2024.

	* sfd/FreeSansBold.sfd: added U+056E, U+0573.

2005-12-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: Merged with Gargi 1.9 and Padmaa 0.6,
	courtesy Monika Shah and Sonali Sonania from C-DAC, Mumbai.

	* CREDITS: Added Monika Shah and Sonali Sonania.

	* AUTHORS: Added Monika Shah and Sonali Sonania.
	
2005-12-13  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Removed Sinhala glyphs.

	* sfd/FreeSerif.sfd - Added Sinhala glyphs, formerly in FreeSans.

2005-12-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: added U+20AF, U+211E. Changed U+20AC (EURO
	SIGN).
	
	* tools/freefont-ttf.spec: Added specification file for building
	RPM package, courtesy Rok Papez.

	* sfd/FreeSerifBold.sfd: added more glyphs from Txfonts to the
	Arrows and Mathematical Symbols ranges.

	* sfd/FreeSerifBoldItalic.sfd: added U+03F5 from Txfonts.

2005-12-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: added U+0567, U+056A, U+056C, U+0582.
	
	* sfd/FreeSerifBold.sfd: copied Box Drawing range from FreeSans.

	* sfd/FreeSerifBold.sfd: added glyphs from Txfonts to the Arrows
	and Mathematical Symbols ranges.
	
	* sfd/FreeSerif.sfd: added U+2259-225A, U+22BA, U+2308-230B,
	U+2322-2323. Cyrillic composite characters replaced with
	references.

2005-12-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd: added U+025A, U+025D, U+026B, U+029B,
	U+02AE, U+02AF, U+02DE.
	
	* sfd/FreeSerifBold.sfd: updated Hebrew part with Drugulin font
	from the Culmus project.

	* sfd/FreeSerif.sfd: added U+207A-207C, U+208A-208C, U+2215-2216.
	
	* sfd/FreeSans.sfd: added U+2320 TOP HALF INTEGRAL, U+23AE
	INTEGRAL EXTENSION, U+2321 BOTTOM HALF INTEGRAL (bug #13370).
	
2005-12-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd: added U+0294-0296, U+02A1-02A2. Started
	adding "below" anchors. Performed hinting on characters that were
	not hinted "en masse".

2005-12-06  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: fixed some more metrics problems in the
	Extended Greek area; performed hinting on characters that were not
	hinted "en masse".
	
	* Makefile: clean also signature files.

	* sfd/FreeMonoBoldOblique.sfd, sfd/FreeMonoBold.sfd: cosmetic
	changes; cleaning background of referenced composed characters.

2005-12-05  Panayotis Katsaloulis  <panayotis@panayotis.com>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd: Some changes to the greek glyphs,
	mostly having to do with "tonos" (accent)

2005-12-05  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: minor cosmetic changes.

	* sfd/FreeSans.sfd: adjusted widths of characters in the Extended
	Greek range; accents are not any more considerably overhanging on
	the left side. Added U+1EDA-1EE3, U+1EE8-1EF1.
	
	* sfd/FreeSans.sfd: continued working on Extended Greek range;
	metrics still not finished.

2005-12-03  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd: fixed combined Greek accents (bug
	#12800). Width of characters still need to be adjusted as in
	FreeSerif.

	* sfd/FreeSerif.sfd: fixed positions of Greek accents (bug #12798).

	* CREDITS: Added Panayotis Katsaloulis.

	* AUTHORS: Added Panayotis Katsaloulis.

	* Makefile: minor changes; now creating also a tarfile with sfds.

2005-12-01  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifItalic.sfd: added U+0183, U+018C, U+01C0, U+01C1,
	U+01C3, U+01E0, U+01E1, U+01F8, U+01F9.
	
	* Makefile: created a Makefile to assist building.

	* README: an update.

	* COPYING: added GNU General Public License, version 2.

	* tools/GenerateTrueType: wrote a FontForge script for conversion
	to TrueType.

	* sfd/FreeSerif.sfd: merged with SolaimanLipi Bangla OpenType font
	from www.ekushey.org, courtesy Solaiman Karim.

	* sfd/FreeSerifItalic.sfd: merged with SolaimanLipi Bangla
	OpenType font from www.ekushey.org, slanted by 15.5 degrees.

	* sfd/FreeSans.sfd: merged with Rupali Bangla OpenType font from
	www.ekushey.org

	* sfd/FreeSansOblique.sfd: merged with Rupali Bangla OpenType font from
	www.ekushey.org, slanted by 12 degrees.

	* CREDITS: added Solaiman Karim

	* AUTHORS: added Solaiman Karim

2005-11-30  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd: merged with the Rachana Normal.

	* AUTHORS: added K.H. Hussain and R. Chitrajan

	* CREDITS: added K.H. Hussain and R. Chitrajan

2005-11-23  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - cleaned some background images.

	* sfd/FreeSans.sfd - added U+01A0-01A1, U+01AF-01B0, U+026E,
	U+028F, U+0291, U+02A3-02A5, U+031B. Modified U+0198.

2005-11-22  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added U+2504-250B.

	* sfd/FreeSans.sfd - added U+2591-25A1, U+25A3-25A5, U+25AA, U+25AC.

	* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd - added U+0263.
	
2005-11-21  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - corrected positions of some Greek diacritics
	on page 0x1F.

	* sfd/FreeMonoOblique.sfd - working on bringing it in sync with
	FreeMono.sfd.

	* sfd/FreeSerifBoldItalic.sfd - applied the sequence suggested by
	Werner Lemberg for reducing redundant points. Added a couple of
	glyphs in the IPA Extensions region.

	* sfd/FreeSansBold.sfd - added U+0574, U+0576. Removed overlaps.
	
2005-11-20  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - added U+02AA-02AC, U+02B0-02B2.

2005-11-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added U+01B7-01B9, U+0196, U+019A, U+01C3,
	U+0224-0225, U+025E, U+029A, U+2422. Changed U+0184-0185, U+0192,
	U+01B4, U+0282, U+0284.
	
2005-11-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - added U+02EE, U+207F.

	* sfd/FreeSans.sfd - started Box Drawing area.

2005-11-17  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd - added glyphs from the Omega project to
	Latin Extended-B, IPA Extensions and Greek ranges.

	* sfd/FreeSerifBoldItalic.sfd - added glyphs from the Omega
	project to Latin Extended-B, IPA Extensions and Greek ranges.

	* sfd/FreeSerifItalic.sfd - added glyphs from the Omega
	project to Latin Extended-B, IPA Extensions and Greek ranges.

	* sfd/FreeSerifItalic.sfd - added U+018B, U+025C, U+0265, U+026F,
	U+0279, U+0287, U+028C-028E, U+029E.

	* sfd/FreeSerifBoldItalic.sfd - added U+1EDA-1EE3, U+1EE8-1EF1,
	U+2190-219B, U+219E-21A8, U+21B9-21BA, U+21C4-21CA, U+21E4-21E5,
	U+2669-266F. MES-1 compliant.
	
	* sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSansOblique.sfd,
	sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - added U+FFFD.

	* sfd/FreeSerif.sfd - removed overlaps in Latin Extended-B and IPA
	Extensions ranges.
	
2005-11-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifItalic.sfd - applied the sequence suggested by
        Werner Lemberg for reducing redundant points.

	* sfd/papers/eurotex2003/freefont.tex,
	sfd/papers/eurotex2003/freefont.bib - Revised version, sent back
	by Karl Berry on 20050110, that should match the one published in
	TUGboat.

	* sfd/FreeSerifItalic.sfd - started added accent anchors. Added a
	handful of Greek letters from Omega font collection.

	* sfd/FreeSerif.sfd - added a handful of letters in the Latin
	Extended-B and IPA Extension ranges from the Omega font collection.

2005-11-16  Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSerif.sfd - moved U+0263 to U+0264; added U+0263

	* sfd/FreeSerifItalic.sfd - fixe U+01EE; added U+01B7-U+01B9

2005-11-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Made small Greek letters the same height as
	Latin and Cyrillic ones and replaced them with references, where
	applicable.

	* sfd/FreeSerif.sfd - replaced Greek letters with references,
	where applicable. Added U+03D7, U+03F0-03F2.

	* sfd/FreeSerif.sfd - added U+0255, U+025A, U+025D, U+025F,
	U+0262-0263, U+026B-026C, U+0274, U+0276-0277, U+028F, U+0291,
	U+029D.

	* sfd/FreeMonoOblique.sfd - applied the sequence suggested by
	Werner Lemberg for reducing redundant points. Added U+F6BE.

	* sfd/FreeSansOblique.sfd - applied the sequence suggested by
	Werner Lemberg for reducing redundant points.

	* sfd/FreeSans.sfd - changed U+01A5.

2005-11-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - applied the sequence suggested by Werner
	Lemberg for reducing redundant points. Replaced accented glyphs in
	the Latin-1 and Latin Extended-A areas with references. Made
	capital Greek letters the same height as Latin and Cyrillic ones
	and replaced them with references, where applicable.

2005-11-15  Denis Jacquerye <moyog@gmail.com>

	* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd, 
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSansOblique.sfd - fixed 
	U+026A, it was a dotlessi and therefore like U+0069 when 
	accented.

2005-11-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoBold.sfd - corrected Greek tonos (slanted instead of
	a vertical line).

	* sfd/FreeMonoBoldOblique.sfd - applied the sequence suggested by
	Werner Lemberg for reducing redundant points. Replaced accented
	glyphs in the Latin-1 and Latin Extended-A areas with references.

2005-11-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - Added 2005 in copyright info.

	* sfd/FreeSansBoldOblique.sfd - applied the sequence suggested by
	Werner Lemberg for reducing redundant points. Replaced accented
	glyphs in the Latin-1 area with references.

	* sfd/FreeSansBoldOblique.sfd - added U+0180, U+0184, U+0185,
	U+0195, U+01A0-01A2, U+01AF-01B0, U+025E, U+026E, U+0292,
	U+0294-0296, U+029A, U+02A1, U+2126-2127, U+2190-219B,
	U+219E-21A8, U+21C4-21CA, U+2669-266F. MES-1 compliant.

	* sfd/FreeMono.sfd - Replaced accented glyphs in the Greek and
	Cyrillic areas with references.

	* sfd/FreeMonoBold.sfd - applied the sequence suggested by Werner
	Lemberg for reducing redundant points. Replaced accented glyphs in
	the Latin-1 and Latin Extended-A areas with references.

2005-11-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - applied the sequence suggested by Werner
	Lemberg for reducing redundant points.
              
	* sfd/FreeSansBold.sfd - added U+219A, U+219B, U+2669-266F.

	* sfd/FreeSerifBold.sfd - added U+2669-266F.

2005-11-12  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - added U+0180, U+0181, U+0183, U+0187,
	U+0188, U+018A, U+018C, U+018D, U+0193, U+019C, U+01A0, U+01A1,
	U+01AC, U+01AF, U+01B0, U+025C, U+0260, U+026E, U+0277, U+0281,
	U+0284.

2005-11-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - added U+195, U+1A6, U+025E, U+026E,
	U+029A, U+0313, U+0314, U+0342, U+0344, U+0345. Started adding
	accent anchors.

	* sfd/FreeMono.sfd - applied the sequence for reducing redundant
	points, suggested by Werner Lemberg.

	* sfd/FreeMono.sfd - corrected Greek letters (using tonos instead
	of a vertical line). Added U+026E, U+F6BE. Accented characters in
	Latin 1, Latin Extended A and partly Latin Extended B replaced by
	references.

	* sfd/FreeSerifBold.sfd - applied the sequence for reducing
	redundant points, suggested by Werner Lemberg. Added U+01A5,
	U+02A0, U+2190-219B, U+219E-21A8, U+21B8, U+21B9, U+21C4-21CA,
	U+21E4, U+21E5.
	
2005-11-10  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansOblique - changed U+0192, U+01A5; added U+01C0-01C3.

	* sfd/FreeSansBold.sfd - replaced glyphs with references in the
	Cyrillic area. Removed U+04A8, U+04A9. Added U+04C5, U+04C6,
	U+04C9, U+04CA, U+04CD, U+04CE, U+0535, U+053F, U+0546, U+0565,
	U+0584, U+0587, U+0589.

2005-11-10  Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSans.sfd - added U+028A-U+028B

	* sfd/FreeSansOblique - added U+028A-U+028B, U+0276, 
	U+0292, U+0294-U+0296, U+0298-U+0299 and U+029B; fixed some 
	other glyphs

2005-11-10  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - added U+01A6. Simplified outlines in the
	ASCII range.

	* sfd/FreeSansBold.sfd - added U+00A0, U+00AD, U+0531, U+2126,
	U+2190-2199, U+219E-21A8, U+21C4-21CA.

	* sfd/FreeSansBold.sfd - applied the sequence for reducing
	redundant points, suggested by Werner Lemberg. Added automatically
	constructed accented characters in page 0x1E.

2005-11-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - added U+0183, U+018C.	
	
	* sfd/FreeSans.sfd - added U+1EA2, U+1EA3, U+1EA8, U+1EA9, U+1EB2,
	U+1EB3, U+1EBA, U+1EBB, U+1EC2, U+1EC3, U+1EC8, U+1EC9, U+1ECE,
	U+1ECF, U+1ED4, U+1ED5, U+1EE6, U+1EE7, U+1EF6, U+1EF7, U+220A,
	U+220B, U+220D, U+2272, U+2273, U+2282, U+2283.

	* sfd/FreeSerifItalic.sfd - changed U+03D5.

	* sfd/FreeSerifBoldItalic.sfd - changed U+03C6; added U+2070,
	U+2075-2079, U+207F, U+2080, U+2085-2089, U+2155-217F.

	* sfd/FreeSerif.sfd - added U+0184, U+0185, U+018D, U+0195,
	U+0197, U+019A, U+019B, U+01A0, U+01A1, U+01AC, U+01B5, U+01B6,
	U+01C0, U+01C1, U+01C3, U+01F6, U+0294-0296, U+1E9A, U+1EDA-1EE3,
	U+1EE8-1EF1.

2005-11-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - added U+0562, U+056D. U+0575.

	* sfd/FreeMono.sfd - added U+0589.

2005-11-06  Primoz Peterlin  <peterlin@localhost.localdomain>

	* sfd/FreeSans.sfd - added U+0278, U+03D5, U+2248. Corrected
	U+2071, U+222E, U+2242, U+2243 in response to bug reports
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276118
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276120

	* sfd/FreeMono.sfd - added U+2227, U+2228, U+2262. Corrected
	U+2299-229D in response to bug report
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276121

	* sfd/FreeMonoBold.sfd - added U+2010, U+2012 in response to bug
	report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289032
	Swapped U+03C6 (Greek small letter phi) and U+03D5 (Greek phi
	symbol) in order to conform to Unicode standard. Simplified glyph
	shapes in ASCII range. Started adding "above" and "below" anchors.
	
2005-11-05  Primoz Peterlin  <peterlin@localhost.localdomain>

	* sfd/FreeSerif.sfd - accented letters in Latin Extended-A
	replaced by references wherever possible.

	* sfd/FreeSerif.sfd - added U+0180, U+0181, U+0187, U+0188,
	U+018A, U+0193, U+019C, U+01A4, U+01A5, U+01A7, U+01A8, U+01AF,
	U+01B0, U+026E, U+0270, U+0278, U+0280, U+0281, U+028B, U+0299,
	U+029C, U+029F.
	
2005-11-03  Primoz Peterlin  <peterlin@localhost.localdomain>

	* sfd/FreeSansBold.sfd - added U+0180, U+0184, U+0185, U+0192,
	U+019B, U+01A0-01A2, U+01AF, U+01B0, U+01EE, U+01EF, U+0292,
	U+0294-0296, U+02A1, U+0532, U+054C, U+057C, U+222B. Changed
	U+014B, U+01A5, U+01B4, U+03BB.

	* sfd/FreeSans.sfd - added U+04C5, U+04C6, U+04C9, U+04CA, U+04D,
	U+04CE.

	* sfd/FreeSansBold.sfd - cleaner Arabic outlines. Added U+01E4,
	U+01E5.

2005-11-02  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - started Armenian; added U+0538, U+0542,
	U+0544, U+0548, U+054D, U+054F, U+0550, U+0553, U+0555, U+0561,
	U+0563, U+0564, U+0566, U+0568 U+056B, U+056F, U+0570, U+0572,
	U+0578, U+057A, U+057D-057F, U+0580, U+0581, U+0583, U+0585.

	* sfd/FreeMono.sfd - swapped U+03C6 (Greek small letter phi) and
	U+03D5 (Greek phi symbol) in order to conform to Unicode standard.
	Added U+04C5, U+04C6, U+04C9, U+04CA, U+04D, U+04CE.
	
2005-11-01  Primoz Peterlin  <peterlin@localhost.localdomain>

	* sfd/FreeSansBold.sfd - modified U+019C.

	* sfd/FreeSansBoldOblique.sfd - added U+00A0, U+00AD, U+019C,
	U+01B7, U+01B8, U+0275, U+0278, U+0298, U+2012, U+2015,
	U+2070-207F, U+2080-208E, U+2153-217F, U+2213, U+2215.

2005-10-31  Primoz Peterlin  <peterlin@localhost.localdomain>

	* sfd/FreeSerif.sfd - added U+0199, U+01AB, U+0265, U+0282,
	U+0288, U+028C-028E, U+0290, U+029E, U+02A0.

2005-10-28  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd - added U+019E, U+01AB, U+01AD, U+01B1,
	U+0256, U+025F, U+0265, U+0269, U+026F, U+0270, U+0279-027F,
	U+0282, U+0287, U+0288, U+028C-028E, U+0290.

	* sfd/FreeSerifBold.sfd - added U+2070, U+2075-2079, U+2080,
	U+2085-2089, U+2153-215E, U+2113-2115, U+2119.

	* sfd/FreeSerifBold.sfd - added U+0199, U+019B, U+01B8, U+01B9,
	U+01BE, U+01C0, U+0262, U+0274, U+0278, U+0280, U+028F, U+0298,
	U+0299, U+029C, U+029E, U+029F, U+2012, U+2015, U+2016, U+2129,
	U+2217.
	
2005-10-27  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added U+018D, U+0194, U+019B, U+019C, U+01B5,
	U+01B6, U+0295, U+0296, U+029B, U+02A2, U+0472, U+0473, U+2114,
	U+2119.

	* sfd/FreeSerifItalic.sfd - minor cleanup in the superscript range
	(U+2070-2079).

	* sfd/FreeSansBold.sfd - added subscripts and superscripts
	(U+2070-208F), completed fractions (U+2152-215F) and Roman
	numerals (U+2160-217F).

	* sfd/FreeSerifBold.sfd - added U+018B, U+018E, U+018F, U+0191,
	U+019D, U+01A7, U+01A8, U+01AE, U+0253, U+0266, U+0267, U+026A,
	U+0271-0273, U+0283, U+0285.
	
2005-10-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added "above" anchors to selected Cyrillic
	characters. Added U+0294, U+02A1.

	* sfd/FreeMono.sfd - added U+2011, U+2012, U+203B, U+204A, U+2071,
	U+2129, U+2232, U+2233. Changed and/or corrected U+2106, U+211E,
	U+2126, U+2127, U+2153-215F, U+2202.

	* sfd/FreeMono.sfd - a try to imitate Denis' work on adding
	anchors by adding "above" anchor to a couple of basic Latin
	characters.

	* sfd/FreeSansBold.sfd - added U+0278, U+0298. Cleaned up outlines
	of most Greek letters. 

	* sfd/FreeSansBold.sfd - Added U+2010-2012, U+2015, U+2032,
	U+203C, U+2047-2049.

	* sfd/FreeSans.sfd - Added U+01C0-01C2, U+0276, U+0292,
	U+0298. Changed U+0251, U+0294, U+02A1.
	
2005-10-25  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifItalic.sfd - added U+00A0, U+00AD, U+2010-2012,
	U+2015, U+2126, U+2127, U+2153-215E, U+2160-217F, U+2190-2193,
	U+2669-266F. FreeSerifItalic is now MES-1 compliant.

	* sfd/FreeSerif.sfd - added U+0191, U+019D, U+01AE, U+027E,
	U+027F, U+0283, U+0285.

	* sfd/FreeSerif.sfd - added U+019E, U+01AD, U+01B8, U+01B9,
	U+0253, U+0256, U+0257, U+025C, U+0260, U+0266, U+0267, U+0269,
	U+026D, U+0271-0273, U+0279-027D.
	
	* sfd/FreeSerifBoldItalic.sfd - added U+00A0, U+00AD, U+2010-2012,
	U+2015, U+2032-2034, U+203C, U+2047-204A, U+2074, U+2081-2084,
	U+2126, U+2153, U+2154, U+215F, U+2215.  Corrected positions of
	diacritics on U+0200-0217.

	* sfd/FreeSansOblique.sfd, sfd/FreeSans.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeMonoBoldOblique.sfd,
	sfd/FreeMonoBold.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBold.sfd sfd/FreeSerifBoldItalic.sfd - brought in
	sync with Valek Filipov's urw-fonts-1.0.7pre41.

	* sfd/FreeSansOblique.sfd - added U+00A0, U+2011-2012, U+2015,
	U+2070, U+2071, U+2074-2079, U+2080-2089, U+2126, U+2153-215F,
	U+2190-2195, U+2215, U+266A. FreeSansOblique is now MES-1
	compliant.
	
2005-10-24 Denis Jacquerye <moyogo@altern.org>
	
	* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd, 
	sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd - added 
	ccmp for i and j to be substituted with dotless i or j when 
	followed by above diacritic

2005-10-24  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added U+2011, U+2012, U+2015. FreeSans is now
	MES-1 conformant.

2005-10-23 Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSans.sfd - added above, below, abovemk and belowmk 
	anchors for diacritics placement to many Basic Latin characters, 
	some Latin Extented A and B, and some IPA characters; fixed a 
	couple of precomposed characters to have diacritics at the same 
	height as similar characters.

2005-10-21  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - added U+02B9, U+02BA, U+02CD, U+2017,
	U+2036, U+2037, U+203C, U+203E, U+2047-204A.

2005-10-20  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd - added U+0182, U+0189, U+0192, U+019F,
	U+01A9, U+01B7, U+01C4-01CC, U+01E0-1E2, U+01F0-01F3, U+F6BE.
	Corrected position of diacritics on U+0200-0217.

	* sfd/FreeSerif.sfd - added U+00A0, U+00AD, U+0182, U+0189,
	U+018B, U+018E, U+018F, U+0192, U+019F, U+01A9, U+01B1, U+01B7,
	U+01DD, U+2010-2013, U+2015. FreeSerif is now MES-1 conformant.

2005-10-19 Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSerif.sfd - added U+0268, U+026A, U+0289, U+0292; and 
	anchor "above" to more base glyphs.

	* sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd, 
	sfd/FreeSerifBoldItalic.sfd - added U+0250-0252, U+0258-0259, 
	U+0261, U+0268, U+026A, U+0279, U+0289

	* sfd/FreeSerifBold.sfd - added anchor "above" to marks 
	U+0300-0314, and to base glyphs (vowels).

2005-10-18 Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSerif.sfd - added anchor "above" to marks U+0300-0314, 
	and bases vowel of the U+0041-007A range, U+00E6, U+0186, U+0190, 
	U+0254 and U+025B; fixed Latin-1 Supplement block accented glyphs 
	to use references.

2005-10-17  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - added U+01B7, U+01B8, U+0275.

2005-10-16 Denis Jacquerye <moyogo@gmail.com>
	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - added some Latin 
	Extended-B African letters: U+0181, U+018A, U+0197-0198, U+01A4, 
	U+01AC, U+01B1, U+01B3-01B4;

	* sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd - added Latin 
	Extended-B U+0187, 018E-018F, U+0191, U+0193, U+0197-0199, 
	U+019D-019F, U+01AB-01AE; correcting width of non-space 
	Combining Diacrtical Marks; added more glyphs to IPA Extensions 
	to match non Bold
	
	* sfd/FreeSansBoldOblique.sfd - added many accented glyphs to
	Latin Extended-B

2005-10-15 Denis Jacquerye <moyogo@gmail.com>
	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - added IPA Extensions
	U+0262,U+0274,U+0280-0281, U+0299, U+029F, and Spacing Modifier
	Letters U+02C9-02CB; fixed U+0287,029E height to baseline; added
	stroke to U+0268

	* sfd/FreeSansOblique.sfd - fixed skew on U+027F

	* sfd/FreeSansBold.sfd, sfd/FreeSansBoldOblique.sfd - added to Latin
	Extended-B U+01A7-01A8, IPA Extensions U+0251-0253, U+0256-0257,
	U+0261, U+0265-026A, U+026F-0273, U+0289, U+028C-028E

	* sfd/FreeSansBoldOblique.sfd - added to Latin extended-B U+0189,
	U+01A8, U+01B1, U+0283, U+02C9 and Spacing Modifiers U+02C9-02CB
	
2005-10-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - Added a couple of composite glyphs,
	mostly in the IPA and Latin Extended B ranges.

2005-10-13 Denis Jacquerye <moyogo@gmail.com>

	* FreeSans.sfd - removed overlap and simplified U+0187, 0191, 
	0193, 01A5, 01AE, 0260, 0271, 0272, 0273, 027B; fixed diacritics 
	placement on U+0200-0217; fixed glyph for U+0283 to correct esh 
	without stroke; added U+025F and fixed U+025F from it; fixed 
	height of glyph at U+0285; arranged U+027E,027F to make more 
	distinguishable from U+0072.

	* FreeSansOblique.sfd - added the corrected or new glyphs from 
	FreeSans; diacritics on U+200-0217 will need height readjustements.

	* FreeSansBold.sfd, FreeSansBoldOblique.sfd - added U+0186, 0190, 
	0250, 0254, 0258, 0259, 025B, 025C

2005-10-13  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Minor changes: U+22A2, U+22A3, U+22A6, U+23AE.
	Added U+0250, U+0251, U+0258, U+0259, U+0275.

	* sfd/FreeSerifItalic.sfd - Added glyphs U+222B-U+222F, U+2320,
	U+2321. Fixed diacritics on U+0200-U+0217.

2005-10-12 Denis Jacquerye <moyogo@gmail.com>

	* sfd/FreeSerif.sfd - Corrected diacritics position on 
	U+01D5-01D9,01DB,01EA-01ED,0200-0217 and U+022A.
	
	* sfd/FreeSerif.sfd, sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBoldItalic.sfd - added U+0186,0190,0254 and U+025B.
	
2005-10-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Fixed bug #13399 (glyphs for U+0360 and
	U+0361 were swapped).
	
	* sfd/FreeSerif.sfd - Attempt to correct bug #13370: INTEGRAL
	EXTENSION does not align with TOP/BOTTOM HALF INTEGRAL; added
	glyph U+23AE.
	
2005-05-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Corrected shapes for Cross of Lorraine and
	Cross of Jerusalem.

2005-04-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSansBold.sfd - Added some combining accents, just to
	test the a version of FontForge.

2003-12-05  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Some composite Latin characters rebuilt, as
	they had accents 600 points to the left due to changes on October
	2. Some other minor changes in the mathematics area.

2003-10-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoOblique.sfd, sfd/FreeSerifBoldItalic.sfd,
	FreeSerifItalic.sfd - applied Josef Segur's corrections from
	Oct. 5.

2003-10-02  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Abbas Izad's contributed Arabic/Farsi
	characters added.
	
	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - Combining characters (U+0300 -
	U+036F) moved left, so that they have negative horizontal values
	and zero advance width.

2003-09-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd - Started working
	on super- and subscripts. 

2003-09-12  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd, sfd/FreeSerif.sfd - Added some missing
	 Hiragana and Katakana characters.

	* sfd/FreeSansBold.sfd - Cleared background characters in Latin
	Extended-A. Added some automatically constructed characters in
	Latin Extended-B. Started with superscripts and subscripts.

	* sfd/FreeSans.sfd - Subscript numerals (U+2080-U+2089) completed.
	
2003-05-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Thai characters po pla and bo baimai
	swapped; Thai character fongman corrected; all courtesy Theppitak
	Karoonboonyanan.

2003-05-17  Panayotis Katsaloulis  <panayotis@panayotis.com>

	* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - Full support
	of all ancient greek glyphs

2003-05-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* tools/KerningNumerals.pl - A Perl script for moving kerning
	information from ASCII numerals (U+0030...) to characters in the
	Adobe corporate use area (U+F6xx).

	* sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
	sfd/FreeSansBoldOblique.sfd - Created kerned numerals in the Adobe
	corporate use area (U+F6xx) and moved kerning information from
	ASCII numerals to the kerned numerals.

2003-05-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - First approximation of super- and subscript
	numerals and vulgar fractions.

	* sfd/FreeSerif.sfd - Super- and subscript numerals complete,
	vulgar fractions completed and redone as references rather than
	outlines.

2003-05-12  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Clean-up of the Cyrillic letters added on
	March 27; super- and subscripts, vulgar fractions.

2003-05-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoBold.sfd - Added a couple of characters to
	the Latin Extended-B area and the IPA extensions area.

2003-05-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifBoldItalic.sfd - Added a couple of characters to
	the Latin Extended-B area.

	* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - ASCII
	numerals now monospaced; kerned numerals moved to Adobe corporate
	use area
	(U+F6xx).

2003-05-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Roman numerals now more complete.

	* sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd - Accented
	characters added in the Latin Extended-B area.

	* sfd/FreeSans.sfd - Greek accents added in the Greek Extended
	area, characters added in the Latin Extended-B area, Roman
	numerals added.

	* sfd/FreeMonoOblique.sfd - Kerning pairs removed (what were they
	doing in a monospaced font, anyway?).

	* sfd/FreeMonoBoldOblique.sfd - Additions in Latin Extended-B and
	Basic Greek.

	* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
	sfd/FreeSansBoldOblique.sfd - Major cleanup (fixed widths, open
	paths, path directions (clockwise/counter-clockwise), points
	rounded to integer values; outlines simplified etc.)

2003-05-06  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* tools/OS2UnicodeRange - A simple script to display OS/2 Unicode
	range table in TrueType fonts.

	* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd - ASCII numerals now
	monospaced; kerned numerals moved to Adobe corporate use area
	(U+F6xx). FreeSans is done, FreeSansBold half-way.

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - Added 2003 in copyright info.

2003-03-27  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Cyrillic and Cyrillic Supplement blocks
	brought to conformance with Unicode 3.2, courtesy Daniel Shurovich
	Chirkov.

2003-03-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - somewhat wider
	germandbls (U+00DF), due to complaints by Walter Schmidt.

2003-03-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Added Sinhala glyphs from the Tipitaka
	project <http://www.metta.lk>, recoded to Unicode by Noah Levitt.

2003-02-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Minor changes on mathematical operators.

2003-02-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - minor cleanup of glyph backgrounds; changed
	integral signs (U+222B - U+2230)

2003-02-05  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - added a couple of glyphs in the IPA and
	African Latin ranges.

2003-01-30  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd - Corrected Maltese Hbar (U+0126)
	and/or hbar (U+0127).

2003-01-28  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerifItalic.sfd - Corrected Maltese hbar (U+0127).

2002-12-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* tools/ConvertFont - PfaEdit script for converting SFD files to
	TrueType fonts.

	* sfd/FreeSans.sfd - Added Tamil and Kannada glyphs from the
	Akruti Indic fonts.

2002-12-17  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Added Devanagari and Gujarati glyphs from the
	Akruti Indic fonts.

	* www/index.html - Added information on Rogier van Dalen's tools.

	* AUTHORS - Added M.S. Sridhar.

	* CREDITS - Correct spelling of Culmus project. Added M.S. Sridhar.

2002-12-06  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added Braille glyphs, courtesy Vyacheslav
	Dikonov.

	* sfd/FreeSans.sfd - Added Unicode Syriac glyphs, courtesy
	Vyacheslav Dikonov.

2002-10-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* www/index.html - Added information on the availability of the
	Debian GNU/Linux package.

	* sfd/FreeSerif.sfd, sfd/FreeSans.sfd - added some kern pairs
	beyond Latin-1 area.

	* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - re-introduced
	all the emtpy glyph slots (changes from Sep 23 made PfaEdit
	crash). 

2002-09-23  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
	sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - imported
	kerning information from the URW++ AFM files

2002-09-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoOblique.sfd - updated Hebrew parts to comply with
	Culmus v0.6.

	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansOblique.sfd - Added Danilo Segan's Serbian Cyrillic
	glyphs; updated Hebrew parts to comply with Culmus v0.6.

2002-09-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansOblique.sfd - Updated Cyrillic part to match
	Filippov's 1.0.7pre14

	* sfd/FreeSansOblique.sfd - added Sam Stepanyan's Armenian glyphs
	from FreeSans (skewed for 12 degrees).

2002-09-06  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd,
	sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd - Added Maxim
	Iorsh's Hebrew characters.

2002-08-29  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd,
	sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd - Added Maxim
	Iorsh's Hebrew characters.

	* AUTHORS, CREDITS - Added Maxim Iorsh as author.

2002-08-28  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* www/index.html - Added information of Microsoft's withdrawal of
	freely available Unicode TrueType fonts

	* www/resources.html - Added link to Maxim Iorsh's Culmus project.
	
2002-07-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added a couple of characters (Arrows area).

2002-06-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
	perispomeni in Greek politoniko.

2002-05-23  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
	psili in Greek politoniko. Also added two working variants of
	chars in the IPA range.

2002-05-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifBold.sfd - Deleted explicit ".notdef" character with
	no contours.

2002-05-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - The new version of PfaEdit saves
	correctly formed Panose and LineGap lines.

	* sfd/FreeSansBoldOblique.sfd - Filled-in the missing TTFWidth and
	TTFWeight values.

2002-05-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Added diacritics to the Spacing Modifier
	Letters and Combining Diacritical Marks areas. Added composed
	glyphs to the Latin Extended-B area.

2002-05-07  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - Updated Panose information with data
	provided by Josef W. Segur. Updated TTF headers with English and
	Slovenian text.

2002-04-30  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoBold.sfd - Working on Greek small letters. Several
	minor changes (lower carons etc.)

2002-04-29  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* FreeMonoBoldOblique.sfd - Started adding Greek.

	* sfd/FreeMonoBold.sfd - Added glyphs in the Geometrical Shapes
	and Miscellaneous Symbols area. Harmonizing Greek with Latin. Done
	with capitals.

	* sfd/FreeMono.sfd - Deleted the explicit .notdef character. Added
	one glyph to the Geometrical Shapes area, which is now completed;
	added three glyphs to the Miscellaneous Symbols area. Harmonizing
	Greek with Latin. Done with the capitals.

2002-04-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - Adjusted accent positions on several glyphs
	in the Latin Extended-A area.

2002-04-25  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoBold.sfd - Box Drawing area completed. Added a
	couple of glyphs in the Geometrical Shapes area.

	* sfd/FreeMono.sfd - Small corrections in the Box Drawing area.

2002-04-24  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Box Drawing area completed.

2002-04-23  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* tools/WGL4.lst - corrected.

	* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Box Drawing
	area.

2002-04-22  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Latin
	Extended-B and Greek.

2002-04-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Somewhat cleaner chess figures.

	* tools/MES-2.txt, tools/MES-2.lst - Corrected list (it is not
	203C-203E, it is 203C and 203E).

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
	sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
	sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
	sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
	sfd/FreeSerifBoldItalic.sfd - Changed "Family Name" from Free to
	FreeSerif, FreeSans and FreeMono, as appropriate. Changed Font
	Modifiers from MonoBold etc. to Bold, Italic, Oblique, BoldOblique
	and BoldItalic.

2002-04-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
	sfd/FreeMonoBoldOblique.sfd - Corrected metrics; now all character
	widths are set to 600.

2002-04-17  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Corrected glyphs in the Box Drawing area and
	Block Elements area, which should extend through the ascender *and
	descender* height.

	* sfd/FreeMonoBold.sfd - Continued working on harmonizing Greek
	letters with Latin and Cyrillic.

	* sfd/FreeMonoBold.sfd - Added some box drawing characters.

2002-04-16  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* www/design-notes.html - Updated notes on stroke width for
	symbols in Free Mono Bold.

	* sfd/FreeMono.sfd - Added a handful of characters in the
	Miscellaneous Symbols area.

	* sfd/FreeMonoBoldOblique.sfd - Added subscripts, superscripts and
	vulgar fractions.

	* sfd/FreeMonoBold.sfd - Started harmonizing Greek letters with
	Latin and Cyrillic.

	* sfd/FreeMonoBold.sfd - Added subscripts, superscripts and vulgar
	fractions.

2002-04-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* www/design-notes.html - Updated notes on super-/subscripts in
	Free Mono Bold. Separate subsections for Free Mono regular and
	Free Mono Bold.

2002-04-12  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Added Ethiopian glyphs, converted from the
	Metafont sources from TGI, Universität Hamburg (authors Berhanu
	Beyene, Prof. Dr. Manfred Kudlek, Olaf Kummer, and Jochen
	Metzinger) using Szabo's TeXtrace and retouched using
	PfaEdit. Ethiopian metafonts are released under GNU GPL,
	<http://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html>.

	* sfd/FreeMonoBold.sfd - Added 40 characters, mostly in the Latin
	Extended-B and IPA Extensions areas.

2002-04-11  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added a handful of characters in the Latin
	Extended-B, IPA Extensions, Currency Symbols and Miscellaneous
	Symbols areas.

2002-04-09  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Correcting accent positioning in the Extended
	Greek area; adding a couple of characters here and there. Still 20
	characters short of MES-2 conformance.

2002-04-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added some characters in the Arrows area;
	more or less completed Extended Greek area (accents still need to
	be fine-tuned).

2002-04-05  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Modern non-Russian Cyrilic mostly completed.

	* sfd/FreeMonoOblique.sfd - Synchronized with FreeMono.

	* sfd/FreeSerif.sfd - Added Thomas Ridgeway's Tamil characters
	(converted from Metafont and edited somehwat).
	
2002-04-04  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoOblique.sfd - Armenian letters added.

	* sfd/FreeMonoBold.sfd - Serbian Cyrillic letters dje, tshe, lje
	and nje corrected.

	* sfd/FreeMono.sfd - Serbian Cyrillic letters dje and tshe
	corrected. Some other non-Russian Cyrillic letters modified and
	"welded together".

2002-04-03  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added more or less complete Armenian
	area. The glyphs are a tidied-up version based on the Armenian
	Courier on the <http://www.cilicia.com/armo8.html>. Now we have
	1673 characters.

2002-03-28  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Added some mathematical symbols.

2002-03-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSans.sfd - took H.S. Pannu's Gurmukhi from FreeSerif. It
	actually fits to FreeSans much better. It seems I'll have to look
	for another Gurmukhi font with modulated stroke for FreeSerif.

	* sfd/FreeSerifItalic.sfd - replaced existing Hebrew glyphs by
	those from FreeSerif (slanted for 15.5 degrees).

	* sfd/FreeSerif.sfd - Added dotted Hebrew letters. Changed barred H.

	* sfd/FreeMono.sfd - Completed vulgar fractions; minor changes in
	Greek; added some mathematical operators.

	* sfd/FreeMonoBold.sfd - added 12 characters to Latin Extended-B
	and IPA Extensions areas (total 984).

2002-03-25  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMonoBold.sfd - started adding Latin Extended-B and IPA
	Extensions.

	* sfd/FreeMono.sfd - Minor cosmetic changes; cleaning up Greek
	(removing redundant control points), added some non-European
	Cyrillic glyphs as a test.

2002-03-22  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - Some minor modifications; letters in Latin
	Extended-B area "welded" together.

2002-03-20  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* www/index.html - finally linked the resources and design notes
	pages.

	* www/design-notes.html - added scaling information for super- and
	subscript numerals in FreeMono.

2002-03-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - the Latin Extended-B and IPA Extension area
	characters moved from FreeMono and skewed for 12 degrees.

2002-03-18  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - added a dozen or two of new characters, in
	particular in the Latin Extended-B and IPA Extension area.

2002-03-15  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - added a dozen of two of new characters, in
	particular in the IPA Extension area.

	* www/design-notes.html - Corrected data for x-height in FreeMono;
	information on constructing small caps.

2002-03-14  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeMono.sfd - added three smiley characters to the
	Miscallaneous Symbols area.

2002-03-10  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Anshuman Pandey has only converted Gurmukhi
	from TrueType to Metafont; the original author of Gurkmukhi font
	is Hardip Singh Pannu <http://members.aol.com/hspannu/punjabi.html>.
	Got the permission from him to include the Gurmukhi glyph set.

2002-03-08  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Added some more glyphs in the Mathematical
	Symbols area to a total number of 3374.

2002-03-06  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Added a basic Gurmukhi set.

	* www/design-notes.html - started a page on design notes

	* sfd/FreeMono.sfd - realized that glyphs in the Box Drawing area
	and Block Elements area should extend through the ascender *and
	descender* height, and corrected it.

	* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd - added some musical
	glyphs, linking "no-break space" to space, "soft hyphen" to
	hyphen-minus etc.

2002-03-05  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* tools/WGL4.lst - Added Windows Glyph List 4.0

	* tools/LigatureList.pl - Wrote a Perl script, which lists the
	GSUB list (ligature list) of a OpenType font.

	* sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd,
	sfd/FreeSerifItalic.sfd - auxilliary Hebrew glyphs added. They are
	too light compared with Latin and will be substituted with better
	ones.

2002-03-04  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Added some more glyphs to the Mathematical
	Operators area (page 0x22).

	* sfd/FreeSerif.sfd - Incomplete and fragmentary support for
	Devanagari, originating from Harsh Kumar's Shusha fonts was
	replaced by Frans Velthuis' Devanagari metafont, now maintained by
	Anshuman Pandey <apandey@u.washington.edu> and available under
	GPL. Until I figure out how to provide glyph substitution table in
	OpenType, only the Unicode part is there.

2002-02-28  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* ChangeLog file created

	* sfd/FreeSerif.sfd - Added some Telugu glyphs to page 0x0C,
	courtesy  Prasad A. Chodavarapu <http://chaitanya.bhaavana.net/fonts/>

	* sfd/FreeSerif.sfd - Added some glyphs to the Miscellaneous
	Symbols page (0x26).
	
2002-02-26  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* mailing lists freefont-announce and freefont-bugs created

2002-02-25  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/FreeSerif.sfd - Added a couple of glyphs in Mathematics
	Operators area.

	* sfd/FreeMono.sfd 
	- Added some more glyphs, in particular in the Mathematical
	Operators section.
	- Changed FamilyName to Free, FontName to FreeMono, and Full name
	to "Free Monospaced".

2002-02-20  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* sfd/ directory added containing FreeSerif, FreeSans and FreeMono
	families.

	* tools/ directory added containing lists with characters required
	for MES (Multilinguag European Subset) compliance.

	* tools/mes-list-expand.pl created - a Perl script for expanding MES
	ranges into simple one-char-per-line format

	* tools/CheckConformance.pl created - a Perl script for checking
	conformance of a font file with a given coded character set

	* homepage <http://www.freesoftware.fsf.org/freefont/> created

2002-02-19  Primoz Peterlin  <primoz.peterlin@biofiz.mf.uni-lj.si>

	* freefont (Free UCS Scalable Fonts) project approved on
	savannah.gnu.org: <http://savannah.gnu.org/projects/freefont/>