incrementing version

This commit is contained in:
El RIDO
2024-02-11 15:31:11 +01:00
parent 5c29619fee
commit aad975a721
37 changed files with 44 additions and 43 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "privatebin",
"version": "1.7.0",
"version": "1.7.1",
"description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).",
"main": "privatebin.js",
"directories": {
+1 -1
View File
@@ -6,7 +6,7 @@
* @see {@link https://github.com/PrivateBin/PrivateBin}
* @copyright 2012 Sébastien SAUVAGE ({@link http://sebsauvage.net})
* @license {@link https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License}
* @version 1.7.0
* @version 1.7.1
* @name PrivateBin
* @namespace
*/
+2 -2
View File
@@ -26,9 +26,9 @@
let buff;
if (typeof fs === 'object') {
buff = fs.readFileSync('zlib-1.3.wasm');
buff = fs.readFileSync('zlib-1.3.1.wasm');
} else {
const resp = await fetch('js/zlib-1.3.wasm');
const resp = await fetch('js/zlib-1.3.1.wasm');
buff = await resp.arrayBuffer();
}
const module = await WebAssembly.compile(buff);