Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
dart_pdf
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David PHAM-VAN
2021-12-31 13:14:59 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b9219cd6f9e25789368ebeccfa34dfc16e431835
b9219cd6
1 parent
dbf17068
Fix AssetManifest
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
printing/CHANGELOG.md
printing/lib/src/fonts/manifest.dart
printing/pubspec.yaml
printing/CHANGELOG.md
View file @
b9219cd
# Changelog
## 5.6.
8
## 5.6.
7
-
Fix imports for Dart 2.15
-
Fix print dialog crash on Linux
-
Fix directPrint printer selection on macOS
-
Fix TTF font parser for NewsCycle-Regular.ttf
## 5.6.7
-
Fix imports for Dart 2.15
-
Fix AssetManifest
## 5.6.6
...
...
printing/lib/src/fonts/manifest.dart
View file @
b9219cd
...
...
@@ -44,7 +44,8 @@ mixin AssetManifest {
}
catch
(
e
)
{
assert
(()
{
// ignore: avoid_print
print
(
'Error loading AssetManifest.json
$e
'
);
print
(
'Error loading AssetManifest.json
$e
Try to call first:
\n
WidgetsFlutterBinding.ensureInitialized();'
);
return
true
;
}());
...
...
@@ -85,5 +86,6 @@ class Mutex {
for
(
final
e
in
_waiting
)
{
e
.
complete
();
}
_waiting
.
clear
();
}
}
...
...
printing/pubspec.yaml
View file @
b9219cd
...
...
@@ -6,7 +6,7 @@ description: >
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
:
5.6.
8
version
:
5.6.
7
environment
:
sdk
:
"
>=2.12.0
<3.0.0"
...
...
Please
register
or
login
to post a comment