Prepares release.

This commit is contained in:
Lars Jung 2012-02-24 16:52:31 +01:00
parent cdb0f9035d
commit cc13005a1d
2 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@ custom = true
# project # project
project.name = h5ai project.name = h5ai
project.version = pre0.18 project.version = 0.18
# src # src

View file

@ -25,8 +25,8 @@ var H5AI_CONFIG = {
* *
* This is disabled by default. * This is disabled by default.
*/ */
"customHeader": "_h5ai.header.html", "customHeader": null,
"customFooter": "_h5ai.footer.html", "customFooter": null,
/* /*
* An array of view modes the user may choose from. Currently there * An array of view modes the user may choose from. Currently there
@ -112,20 +112,20 @@ var H5AI_CONFIG = {
* Requires PHP on the server. * Requires PHP on the server.
* Enable zipped download of selected entries. * Enable zipped download of selected entries.
*/ */
"zippedDownload": true, "zippedDownload": false,
/* /*
* Show QRCodes on hovering files. * Show QRCodes on hovering files.
* Set this to the desired size in pixel or null to not display QRCodes. * Set this to the desired size in pixel or null to not display QRCodes.
* A good size to start with might be 150. * A good size to start with might be 150.
*/ */
"qrCodesSize": 150, "qrCodesSize": null,
/* /*
* Allow filtering the displayed files and folders. * Allow filtering the displayed files and folders.
* Filters are ment to be JavaScript regular expressions. * Filters are ment to be JavaScript regular expressions.
*/ */
"showFilter": true "showFilter": false
}, },