David PHAM-VAN

Update version information

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