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-11-16 16:13:08 -0400
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e3f18125b6821701766cd84d0094f73457864ce2
e3f18125
1 parent
e3321b58
Update Linux and Windows pdfium libraries
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
8 deletions
printing/CHANGELOG.md
printing/linux/CMakeLists.txt
printing/pubspec.yaml
printing/windows/CMakeLists.txt
printing/CHANGELOG.md
View file @
e3f1812
# Changelog
## 5.6.2
-
Update Linux and Windows pdfium libraries to 4706
## 5.6.1
-
Allow host app to override pdfium version
[
Jon Salmon
]
...
...
printing/linux/CMakeLists.txt
View file @
e3f1812
...
...
@@ -16,17 +16,18 @@ cmake_minimum_required(VERSION 3.10)
set
(
PROJECT_NAME
"printing"
)
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
PDFIUM_VERSION
"4627"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_VERSION
"4706"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_ARCH
"x64"
CACHE STRING
"Architecture of pdfium used"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-linux.tgz"
"https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-linux
-
${
PDFIUM_ARCH
}
.tgz"
)
else
()
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium/
${
PDFIUM_VERSION
}
/pdfium-linux.tgz"
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium/
${
PDFIUM_VERSION
}
/pdfium-linux
-
${
PDFIUM_ARCH
}
.tgz"
)
endif
()
...
...
printing/pubspec.yaml
View file @
e3f1812
...
...
@@ -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.
1
version
:
5.6.
2
environment
:
sdk
:
"
>=2.12.0
<3.0.0"
...
...
printing/windows/CMakeLists.txt
View file @
e3f1812
...
...
@@ -16,18 +16,18 @@ cmake_minimum_required(VERSION 3.15)
set
(
PROJECT_NAME
"printing"
)
project
(
${
PROJECT_NAME
}
LANGUAGES CXX
)
set
(
ARCH
"x64"
)
set
(
PDFIUM_VERSION
"4627"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_VERSION
"4706"
CACHE STRING
"Version of pdfium used"
)
set
(
PDFIUM_ARCH
"x64"
CACHE STRING
"Architecture of pdfium used"
)
if
(
${
PDFIUM_VERSION
}
STREQUAL
"latest"
)
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-win
dows-
${
ARCH
}
.zip
"
"https://github.com/bblanchon/pdfium-binaries/releases/latest/download/pdfium-win
-
${
PDFIUM_ARCH
}
.tgz
"
)
else
()
set
(
PDFIUM_URL
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium/
${
PDFIUM_VERSION
}
/pdfium-win
dows-
${
ARCH
}
.zip
"
"https://github.com/bblanchon/pdfium-binaries/releases/download/chromium/
${
PDFIUM_VERSION
}
/pdfium-win
-
${
PDFIUM_ARCH
}
.tgz
"
)
endif
()
...
...
Please
register
or
login
to post a comment