Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
update CHANGELOG.md and minor fix when reading VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
ashkulz committed Nov 22, 2016
1 parent 96b03ae commit 53a9518
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ v0.12.4 (unreleased)
* **[qt]** change screen size in headless mode to a more sane value (1366x768)
* **[qt]** allow screen size in headless mode to be overriden via environment variables
* **[qt]** fix compilation failure on OS X 10.11 due to usage of deprecated APIs
* **#1768**: allow using long argument list (without hardcoded limits)
* **#2004**: **[qt]** fix rendering of form fields in PDF output
* **#2353**: **[qt]** context.setLineDash doesn't work in Canvas
* **#2416**: make background transparent by default for headers/footers
* **#2463**: **[qt]** standardize rendering DPI to 96
* **#2673**: fail immediately in the build script if the Qt source is not available
* **#2684**: **[qt]** fix crash in WebKit (RenderBlock::removeFloatingObjectsBelow)
* **#2885**: enforce UTF-8 encoding for input strings in the API
* **#2887**: improve docs to make examples of header/footer variables more explicit
* **#3077**: use correct install path for man pages

v0.12.3 (2016-01-20)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def get_registry_value(key, value=None):

def get_version(basedir):
mkdir_p(basedir)
text = open(os.path.join(basedir, '..', 'VERSION'), 'r').read()
text = open(os.path.join(basedir, '..', 'VERSION'), 'r').read().strip()
if '-' not in text:
return (text, text)
version = text[:text.index('-')]
Expand Down

0 comments on commit 53a9518

Please sign in to comment.