Showing
5 changed files
with
6 additions
and
9 deletions
| @@ -40,6 +40,7 @@ pdf/.dart_tool: | @@ -40,6 +40,7 @@ pdf/.dart_tool: | ||
| 40 | cd pdf ; pub get | 40 | cd pdf ; pub get |
| 41 | 41 | ||
| 42 | test: pdf/.dart_tool $(FONTS) | 42 | test: pdf/.dart_tool $(FONTS) |
| 43 | + cd pdf; pub get | ||
| 43 | cd pdf; for EXAMPLE in $(shell cd pdf; find example -name '*.dart'); do dart $$EXAMPLE; done | 44 | cd pdf; for EXAMPLE in $(shell cd pdf; find example -name '*.dart'); do dart $$EXAMPLE; done |
| 44 | cd pdf; for TEST in $(shell cd pdf; find test -name '*.dart'); do dart $$TEST; done | 45 | cd pdf; for TEST in $(shell cd pdf; find test -name '*.dart'); do dart $$TEST; done |
| 45 | cd printing/example; flutter test | 46 | cd printing/example; flutter test |
| 1 | -# 1.3.3 | 1 | +# 1.3.2 |
| 2 | * Fix dart lint warnings | 2 | * Fix dart lint warnings |
| 3 | * Improve font bounds calculation | 3 | * Improve font bounds calculation |
| 4 | * Add RichText Widget | 4 | * Add RichText Widget |
| 5 | * Fix MultiPage max height | 5 | * Fix MultiPage max height |
| 6 | * Add Stack Widget | 6 | * Add Stack Widget |
| 7 | - | ||
| 8 | -# 1.3.2 | ||
| 9 | * Update Readme | 7 | * Update Readme |
| 10 | 8 | ||
| 11 | # 1.3.1 | 9 | # 1.3.1 |
| @@ -2,7 +2,7 @@ name: pdf | @@ -2,7 +2,7 @@ name: pdf | ||
| 2 | author: David PHAM-VAN <dev.nfet.net@gmail.com> | 2 | author: David PHAM-VAN <dev.nfet.net@gmail.com> |
| 3 | description: A pdf producer for Dart. It can create pdf files for both web or flutter. | 3 | description: A pdf producer for Dart. It can create pdf files for both web or flutter. |
| 4 | homepage: https://github.com/DavBfr/dart_pdf/tree/master/pdf | 4 | homepage: https://github.com/DavBfr/dart_pdf/tree/master/pdf |
| 5 | -version: 1.3.3 | 5 | +version: 1.3.2 |
| 6 | 6 | ||
| 7 | environment: | 7 | environment: |
| 8 | sdk: ">=1.8.0 <3.0.0" | 8 | sdk: ">=1.8.0 <3.0.0" |
| 1 | -# 1.3.4 | 1 | +# 1.3.3 |
| 2 | * Fix dart lint warnings | 2 | * Fix dart lint warnings |
| 3 | * Add documentation | 3 | * Add documentation |
| 4 | * Add a filename parameter for sharing | 4 | * Add a filename parameter for sharing |
| 5 | * Convert Objective-C code to Swift | 5 | * Convert Objective-C code to Swift |
| 6 | - | ||
| 7 | -# 1.3.3 | ||
| 8 | * Update Readme | 6 | * Update Readme |
| 9 | 7 | ||
| 10 | # 1.3.2 | 8 | # 1.3.2 |
| @@ -2,7 +2,7 @@ name: printing | @@ -2,7 +2,7 @@ name: printing | ||
| 2 | author: David PHAM-VAN <dev.nfet.net@gmail.com> | 2 | author: David PHAM-VAN <dev.nfet.net@gmail.com> |
| 3 | description: Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers | 3 | description: Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers |
| 4 | homepage: https://github.com/DavBfr/dart_pdf/tree/master/printing | 4 | homepage: https://github.com/DavBfr/dart_pdf/tree/master/printing |
| 5 | -version: 1.3.4 | 5 | +version: 1.3.3 |
| 6 | 6 | ||
| 7 | environment: | 7 | environment: |
| 8 | sdk: ">=1.19.0 <3.0.0" | 8 | sdk: ">=1.19.0 <3.0.0" |
| @@ -10,7 +10,7 @@ environment: | @@ -10,7 +10,7 @@ environment: | ||
| 10 | dependencies: | 10 | dependencies: |
| 11 | flutter: | 11 | flutter: |
| 12 | sdk: flutter | 12 | sdk: flutter |
| 13 | - pdf: "^1.3.0" | 13 | + pdf: "^1.3.2" |
| 14 | 14 | ||
| 15 | dev_dependencies: | 15 | dev_dependencies: |
| 16 | flutter_test: | 16 | flutter_test: |
-
Please register or login to post a comment