Compare commits

..
1 Commits
Author SHA1 Message Date
James R. Barlow b964999427 Update filename references from sRGB_IEC to sRGB 2016-05-10 21:58:04 -07:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ Please always read this file before installing the package
Download software here: https://github.com/jbarlow83/OCRmyPDF/tags Download software here: https://github.com/jbarlow83/OCRmyPDF/tags
v4.1.1: v4.1.2:
======= =======
- Replace IEC sRGB ICC profile with Debian's sRGB (from icc-profiles-free) which is more compatible with the MIT license - Replace IEC sRGB ICC profile with Debian's sRGB (from icc-profiles-free) which is more compatible with the MIT license
+1 -1
View File
@@ -8,7 +8,7 @@ from string import Template
import codecs import codecs
import pkg_resources import pkg_resources
ICC_PROFILE_RELPATH = 'data/sRGB_IEC61966-2-1_black_scaled.icc' ICC_PROFILE_RELPATH = 'data/sRGB.icc'
SRGB_ICC_PROFILE = pkg_resources.resource_filename( SRGB_ICC_PROFILE = pkg_resources.resource_filename(
'ocrmypdf', ICC_PROFILE_RELPATH) 'ocrmypdf', ICC_PROFILE_RELPATH)
+1 -1
View File
@@ -230,6 +230,6 @@ setup(
'ocrmypdf = ocrmypdf.main:run_pipeline' 'ocrmypdf = ocrmypdf.main:run_pipeline'
], ],
}, },
package_data={'ocrmypdf': ['data/sRGB_IEC61966-2-1_black_scaled.icc']}, package_data={'ocrmypdf': ['data/sRGB.icc']},
include_package_data=True, include_package_data=True,
zip_safe=False) zip_safe=False)