Skip to content

Commit

Permalink
Bumped version nnumber from 0.16.0 to 0.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Oct 3, 2016
1 parent a5c8174 commit f75f8a0
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "dwv",
"version": "0.16.0",
"version": "0.16.1",
"homepage": "https://ivmartel.github.io/dwv/",
"authors" : [
"ivmartel"
],
"description": "DICOM Web Viewer",
"keywords": [
"DICOM",
"medical",
"DICOM",
"medical",
"imaging"
],
"license": "GNU General Public License v3.0",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dwv",
"short_name": "dwv",
"description": "DICOM Web Viewer.",
"version": "0.16.0",
"version": "0.16.1",
"manifest_version": 2,
"app": {
"urls": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dwv",
"version": "0.16.0",
"version": "0.16.1",
"homepage": "https://ivmartel.github.io/dwv/",
"description": "DICOM Web Viewer.",
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion resources/dwv-mobile.lua
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ print([[
<script type="text/javascript" src="/dwv/ext/kinetic/kinetic-v5.1.1-06.10.min.js"></script>
<!-- Local -->
<script type="text/javascript" src="/dwv/dwv-0.16.0.min.js"></script>
<script type="text/javascript" src="/dwv/dwv-0.16.1.min.js"></script>
<!-- Launch the app -->
<script type="text/javascript" src="/dwv/viewers/mobile/appgui.js"></script>
]])
Expand Down
2 changes: 1 addition & 1 deletion resources/dwv-simple.lua
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ print([[
<script type="text/javascript" src="/dwv/ext/notmasteryet/jpg.js"></script>
<!-- Local -->
<script type="text/javascript" src="/dwv/dwv-0.16.0.min.js"></script>
<script type="text/javascript" src="/dwv/dwv-0.16.1.min.js"></script>
<!-- Launch the app -->
<script type="text/javascript" src="/dwv/viewers/simple/appgui.js"></script>
]])
Expand Down
2 changes: 1 addition & 1 deletion resources/dwv-static.lua
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ print([[
<script type="text/javascript" src="/dwv/ext/kinetic/kinetic-v5.1.1-06.10.min.js"></script>
<!-- Local -->
<script type="text/javascript" src="/dwv/dwv-0.16.0.min.js"></script>
<script type="text/javascript" src="/dwv/dwv-0.16.1.min.js"></script>
<!-- Launch the app -->
<script type="text/javascript" src="/dwv/viewers/static/appgui.js"></script>
]])
Expand Down
2 changes: 1 addition & 1 deletion resources/manifest.webapp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dwv",
"description": "DICOM Web Viewer.",
"version": "0.16.0",
"version": "0.16.1",
"developer": {
"name": "ivmartel",
"url": "https://github.com/ivmartel"
Expand Down
10 changes: 5 additions & 5 deletions src/app/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ dwv.App = function ()
* Get the version of the application.
* @return {String} The version of the application.
*/
this.getVersion = function () { return "v0.16.0"; };
this.getVersion = function () { return "v0.16.1"; };

/**
* Get the image.
Expand Down Expand Up @@ -473,7 +473,7 @@ dwv.App = function ()
postLoadInit(data);
};
fileIO.onerror = function (error) { handleError(error); };
fileIO.onloadend = function (/*event*/) {
fileIO.onloadend = function (/*event*/) {
if ( drawStage ) {
activateDrawLayer();
}
Expand Down Expand Up @@ -545,7 +545,7 @@ dwv.App = function ()
postLoadInit(data);
};
urlIO.onerror = function (error) { handleError(error); };
urlIO.onloadend = function (/*event*/) {
urlIO.onloadend = function (/*event*/) {
if ( drawStage ) {
activateDrawLayer();
}
Expand Down Expand Up @@ -596,7 +596,7 @@ dwv.App = function ()
drawStage.add(drawLayer);
}
}

/**
* Activate the current draw layer.
* @private
Expand All @@ -614,7 +614,7 @@ dwv.App = function ()
currentLayer.visible( true );
currentLayer.draw();
}

/**
* Fit the display to the given size. To be called once the image is loaded.
*/
Expand Down
2 changes: 1 addition & 1 deletion viewers/mobile/cache.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ index.html
# css
/dwv/demo/stable/css/style.css
# js
/dwv/demo/stable/dwv-0.16.0.min.js
/dwv/demo/stable/dwv-0.16.1.min.js
applauncher.js
appgui.js
# images
Expand Down
2 changes: 1 addition & 1 deletion viewers/static/cache.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ index.html
# css
/dwv/demo/stable/css/style.css
# js
/dwv/demo/stable/dwv-0.16.0.min.js
/dwv/demo/stable/dwv-0.16.1.min.js
applauncher.js
appgui.js
# images
Expand Down

0 comments on commit f75f8a0

Please sign in to comment.