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
2023-03-13 18:57:40 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d8664397dde278ac14ee98bfea000272fd030187
d8664397
1 parent
06ca6850
Improve podspec files
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
18 deletions
printing/CHANGELOG.md
printing/ios/Classes/PrintJob.swift
printing/ios/printing.podspec
printing/macos/printing.podspec
printing/CHANGELOG.md
View file @
d866439
...
...
@@ -3,6 +3,7 @@
## 5.10.2
-
Fix Flutter 3.9 deprecations
-
Improve podspec files
## 5.10.1
...
...
printing/ios/Classes/PrintJob.swift
View file @
d866439
...
...
@@ -141,7 +141,6 @@ public class PrintJob: UIPrintPageRenderer, UIPrintInteractionControllerDelegate
}
return
currentSize
!.
height
}
func
printPdf
(
name
:
String
,
withPageSize
size
:
CGSize
,
andMargin
margin
:
CGRect
,
withPrinter
printerID
:
String
?,
dynamically
dyn
:
Bool
)
{
...
...
printing/ios/printing.podspec
View file @
d866439
...
...
@@ -4,17 +4,14 @@
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'printing'
s
.
version
=
'1.0.0'
s
.
summary
=
'Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers'
s
.
description
=
<<-
DESC
Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers
DESC
s
.
homepage
=
'https://github.com/DavBfr/dart_pdf/tree/master/printing'
s
.
license
=
{
:file
=>
'../LICENSE'
}
s
.
summary
=
'Flutter printing plugin'
s
.
description
=
'Plugin that allows Flutter apps to generate and print documents to iOS compatible printers'
s
.
homepage
=
'https://pub.dev/packages/printing'
s
.
license
=
{
:type
=>
'Apache2'
}
s
.
author
=
{
'David PHAM-VAN'
=>
'dev.nfet.net@gmail.com'
}
s
.
source
=
{
:
path
=>
'.
'
}
s
.
source
=
{
:
git
=>
'https://github.com/DavBfr/dart_pdf.git'
,
:branch
=>
'master
'
}
s
.
source_files
=
'Classes/**/*'
s
.
dependency
'Flutter'
s
.
ios
.
deployment_target
=
'8.0'
s
.
swift_version
=
'4.2'
end
...
...
printing/macos/printing.podspec
View file @
d866439
...
...
@@ -4,17 +4,14 @@
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'printing'
s
.
version
=
'1.0.0'
s
.
summary
=
'Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers'
s
.
description
=
<<-
DESC
Plugin that allows Flutter apps to generate and print documents to android or ios compatible printers
DESC
s
.
homepage
=
'http://example.com'
s
.
license
=
{
:file
=>
'../LICENSE'
}
s
.
author
=
{
'Your Company'
=>
'email@example.com'
}
s
.
source
=
{
:path
=>
'.'
}
s
.
summary
=
'Flutter printing plugin'
s
.
description
=
'Plugin that allows Flutter apps to generate and print documents to macOS compatible printers'
s
.
homepage
=
'https://pub.dev/packages/printing'
s
.
license
=
{
:type
=>
'Apache2'
}
s
.
author
=
{
'David PHAM-VAN'
=>
'dev.nfet.net@gmail.com'
}
s
.
source
=
{
:git
=>
'https://github.com/DavBfr/dart_pdf.git'
,
:branch
=>
'master'
}
s
.
source_files
=
'Classes/**/*'
s
.
dependency
'FlutterMacOS'
s
.
platform
=
:osx
s
.
osx
.
deployment_target
=
'10.11'
end
...
...
Please
register
or
login
to post a comment