David PHAM-VAN

Add gh-pages

... ... @@ -143,4 +143,9 @@ ref:
cd $@; curl -OL 'https://www.adobe.com/content/dam/acom/en/devnet/pdf/adobe_supplement_iso32000.pdf'
cd $@; curl -OL 'https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf'
gh-pages:
cd printing/example; flutter build web
git checkout gh-pages
mv -f printing/example/build/web/* .
.PHONY: test format format-dart format-clang clean publish-pdf publish-printing analyze ref
... ...
# Changelog
## 3.0.1
- Add a link to the Web example
## 3.0.0
Breaking change: this version is only compatible with flutter >= 1.12
... ...
... ... @@ -7,6 +7,8 @@ See the example on how to use the plugin.
<img alt="Example document" src="https://raw.githubusercontent.com/DavBfr/dart_pdf/master/printing/example.png" width="300">
This example is also available on the web here: <https://davbfr.github.io/dart_pdf/>
This plugin uses the `pdf` package <https://pub.dev/packages/pdf>
for pdf creation. Please refer to <https://pub.dev/documentation/pdf/latest/>
for documentation.
... ...
... ... @@ -4,7 +4,7 @@ description: Plugin that allows Flutter apps to generate and print documents to
homepage: https://github.com/DavBfr/dart_pdf/tree/master/printing
repository: https://github.com/DavBfr/dart_pdf
issue_tracker: https://github.com/DavBfr/dart_pdf/issues
version: 3.0.0
version: 3.0.1
environment:
sdk: ">=2.3.0 <3.0.0"
... ...