Skip to content

Commit 680886a

Browse files
committed
Merge branch 'master' of https://github.com/rk700/PyMuPDF
2 parents ffc5232 + 924c15a commit 680886a

File tree

5 files changed

+21
-11
lines changed

5 files changed

+21
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.14.1
1+
# PyMuPDF 1.14.2
22

33
![logo](https://github.com/rk700/PyMuPDF/blob/master/demo/pymupdf.jpg)
44

@@ -14,7 +14,7 @@ On **[PyPI](https://pypi.org/project/PyMuPDF)** since August 2016: [![](https://
1414

1515
# Introduction
1616

17-
This is **version 1.14.1 of PyMuPDF (formerly python-fitz)**, a Python binding with support for [MuPDF 1.14.x](http://mupdf.com/) - "a lightweight PDF, XPS, and E-book viewer".
17+
This is **version 1.14.2 of PyMuPDF (formerly python-fitz)**, a Python binding with support for [MuPDF 1.14.x](http://mupdf.com/) - "a lightweight PDF, XPS, and E-book viewer".
1818

1919
MuPDF can access files in PDF, XPS, OpenXPS, CBZ, EPUB and FB2 (e-books) formats, and it is known for its top performance and high rendering quality.
2020

fitz/fitz.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ class _object:
106106

107107

108108
VersionFitz = "1.14.0"
109-
VersionBind = "1.14.1"
110-
VersionDate = "2018-11-18 17:07:00"
111-
version = (VersionBind, VersionFitz, "20181118170700")
109+
VersionBind = "1.14.2"
110+
VersionDate = "2018-11-20 06:27:22"
111+
version = (VersionBind, VersionFitz, "20181120062722")
112112

113113

114114
class Matrix():
@@ -246,7 +246,12 @@ def concat(self, one, two):
246246
dst.d = one[2] * two[1] + one[3] * two[3]
247247
dst.e = one[4] * two[0] + one[5] * two[2] + two[4]
248248
dst.f = one[4] * two[1] + one[5] * two[3] + two[5]
249-
self = dst
249+
self.a = dst.a
250+
self.b = dst.b
251+
self.c = dst.c
252+
self.d = dst.d
253+
self.e = dst.e
254+
self.f = dst.f
250255
return self
251256

252257
def __getitem__(self, i):

fitz/helper-geo-py.i

+6-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,12 @@ class Matrix():
134134
dst.d = one[2] * two[1] + one[3] * two[3]
135135
dst.e = one[4] * two[0] + one[5] * two[2] + two[4]
136136
dst.f = one[4] * two[1] + one[5] * two[3] + two[5]
137-
self = dst
137+
self.a = dst.a
138+
self.b = dst.b
139+
self.c = dst.c
140+
self.d = dst.d
141+
self.e = dst.e
142+
self.f = dst.f
138143
return self
139144

140145
def __getitem__(self, i):

fitz/version.i

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
VersionFitz = "1.14.0"
3-
VersionBind = "1.14.1"
4-
VersionDate = "2018-11-18 17:07:00"
5-
version = (VersionBind, VersionFitz, "20181118170700")
3+
VersionBind = "1.14.2"
4+
VersionDate = "2018-11-20 06:27:22"
5+
version = (VersionBind, VersionFitz, "20181120062722")
66
%}

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
sources=['./fitz/fitz_wrap.c',])
5353

5454
setup(name = 'PyMuPDF',
55-
version = "1.14.1",
55+
version = "1.14.2",
5656
description = 'Python bindings for the PDF rendering library MuPDF',
5757
classifiers = ['Development Status :: 5 - Production/Stable',
5858
'Environment :: Console',

0 commit comments

Comments
 (0)