Skip to content

Commit

Permalink
Prep for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetroff committed Nov 20, 2016
1 parent a30261c commit 24ef32f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.3.1
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@ Changelog
=========


Changes in Pannellum 2.3.1
--------------------------

Bugfixes:

- Removed use of poorly supported ES6 `Math.sign` function
- Fixed fullscreen bug in Internet Explorer
- Fixed framerate issue with device orientation control enabled

Improvements:

- Better handling of view limits when both limits are in view


Changes in Pannellum 2.3.0
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pannellum",
"description": "Pannellum is a lightweight, free, and open source panorama viewer for the web.",
"version": "2.3.0",
"version": "2.3.1",
"bugs": {
"url": "https://github.com/mpetroff/pannellum/issues"
},
Expand Down
2 changes: 1 addition & 1 deletion utils/build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def build(files, css, html, filename, release=False):

js = merge(files)
if release:
version = read('../VERSION')
version = read('../VERSION').strip()
else:
version = subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('utf-8').strip()
js = js.replace('"_blank">Pannellum</a>','"_blank">Pannellum</a> ' + version)
Expand Down

0 comments on commit 24ef32f

Please sign in to comment.