pdfs2pdf 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +0 -13
- data/lib/pdfs2pdf/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 241ca3eae68eff4dc7ae71285d3deefa36633f01
|
4
|
+
data.tar.gz: bb2887a89e62bc6856b97facadec260c0aea06dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a6ff38f48946a2417f6792fd9a964e29488516ca46265a84f9fdbe52986acbd70d6c2e7fa082ccaa3217c2b54d75b0281966c4f4213675e9f8ae1647feda279
|
7
|
+
data.tar.gz: 8312815aa42237a3724ba510469aca0b2ca98e79615eb6bbc047f174110f04150aa24126b5106a7fc2d3a4ca5c5cdec6067640801607fc77c6798aa9e26d80a1
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
### Changelogs
|
2
2
|
|
3
|
+
#### 0.1.5
|
4
|
+
|
5
|
+
- Improve the README.md
|
6
|
+
* Update the limitation issue to reflect the bug fix in 0.1.4
|
7
|
+
|
3
8
|
#### 0.1.4
|
4
9
|
|
5
10
|
- Exclude the output file from the input list if any
|
11
|
+
* The input folder with '-' (dash) string should now work without any problem.
|
6
12
|
|
7
13
|
#### 0.1.3
|
8
14
|
|
data/README.md
CHANGED
@@ -93,19 +93,6 @@ pdfs2pdf -r
|
|
93
93
|
This will merge all the pdf files from `test/fixtures/samples` and generate the
|
94
94
|
`pdfs2pdf_samples.pdf`.
|
95
95
|
|
96
|
-
### Known Issues
|
97
|
-
|
98
|
-
- The combined bookmarks sometime does not produce the correct links to page number.
|
99
|
-
Currently I am not sure what the workaround is. I love to hear from you if
|
100
|
-
know more about the 'pdfmarks' format and how it works with the bookmarks.
|
101
|
-
|
102
|
-
- The directory that contains the pdf files must only contain the
|
103
|
-
letters, numbers and/or underscore characters. Any other characters like
|
104
|
-
`-` (dash) may caused the 'pdfmarks' file to produce incorrect bookmarks.
|
105
|
-
|
106
|
-
* Solution: try rename your folder to 'something_with_underscore' but not
|
107
|
-
'something-with-dash' before running the command.
|
108
|
-
|
109
96
|
### Contributing
|
110
97
|
|
111
98
|
1. Fork it ( http://github.com/agilecreativity/pdfs2pdf/fork )
|
data/lib/pdfs2pdf/version.rb
CHANGED