diff --git a/CHANGELOG.md b/CHANGELOG.md index 463931e70..ee73e3c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [5.14.2] - 2018-11-03 + +### Fixed +- (#941) PDFJS library not bundled correctly, again. + ## [5.14.1] - 2018-11-03 ### Fixed diff --git a/minify.sh b/minify.sh index 09149d689..06a23f122 100644 --- a/minify.sh +++ b/minify.sh @@ -1,8 +1,8 @@ rm -rf node_modules/mathjax/ cp -rf viewer/mathjax/ node_modules/mathjax/ -rm -f node_modules/pdfjs-dist/build/pdf.js -rm -f node_modules/pdfjs-dist/build/pdf.worker.js +rm -f node_modules/pdfjs-dist/build/pdf.min.js +rm -f node_modules/pdfjs-dist/build/pdf.worker.min.js rm -f node_modules/pdfjs-dist/build/pdf.combined.js rm -rf node_modules/pdfjs-dist/build/*.js.map rm -rf node_modules/pdfjs-dist/external/ diff --git a/package.json b/package.json index a7baab2cd..89efe4176 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "LaTeX Workshop", "description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.", "icon": "icon.png", - "version": "5.14.1", + "version": "5.14.2", "publisher": "James-Yu", "license": "MIT", "homepage": "https://github.com/James-Yu/LaTeX-Workshop",