David PHAM-VAN

Update fonts warning url

@@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
3 ## 1.4.1 3 ## 1.4.1
4 4
5 - Update dependency to barcode ^1.5.0 5 - Update dependency to barcode ^1.5.0
  6 +- Update type1 font warning url
6 7
7 ## 1.4.0 8 ## 1.4.0
8 9
@@ -146,7 +146,7 @@ abstract class PdfFont extends PdfObject { @@ -146,7 +146,7 @@ abstract class PdfFont extends PdfObject {
146 Can not decode the string to Latin1. 146 Can not decode the string to Latin1.
147 This font does not support Unicode characters. 147 This font does not support Unicode characters.
148 If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. 148 If you want to use strings other than Latin strings, use a TrueType (TTF) font instead.
149 -See https://github.com/DavBfr/dart_pdf/issues/76 149 +See https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management
150 ---------------------------------------------'''); 150 ---------------------------------------------''');
151 rethrow; 151 rethrow;
152 } 152 }
@@ -174,6 +174,7 @@ See https://github.com/DavBfr/dart_pdf/issues/76 @@ -174,6 +174,7 @@ See https://github.com/DavBfr/dart_pdf/issues/76
174 Can not decode the string to Latin1. 174 Can not decode the string to Latin1.
175 This font does not support Unicode characters. 175 This font does not support Unicode characters.
176 If you want to use strings other than Latin strings, use a TrueType (TTF) font instead. 176 If you want to use strings other than Latin strings, use a TrueType (TTF) font instead.
  177 +See https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management
177 ---------------------------------------------'''); 178 ---------------------------------------------''');
178 rethrow; 179 rethrow;
179 } 180 }
@@ -22,7 +22,7 @@ class PdfType1Font extends PdfFont { @@ -22,7 +22,7 @@ class PdfType1Font extends PdfFont {
22 this.descent, this.widths) 22 this.descent, this.widths)
23 : assert(() { 23 : assert(() {
24 print( 24 print(
25 - '$fontName has no Unicode support see https://github.com/DavBfr/dart_pdf/issues/76'); 25 + '$fontName has no Unicode support see https://github.com/DavBfr/dart_pdf/wiki/Fonts-Management');
26 return true; 26 return true;
27 }()), 27 }()),
28 super._create(pdfDocument, subtype: '/Type1'); 28 super._create(pdfDocument, subtype: '/Type1');