Skip to content

Commit 7a8cbee

Browse files
committed
ZeroBin 0.18
1 parent 47fae2b commit 7a8cbee

6 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,18 @@
5050
* small refactoring.
5151
* improved regex checks.
5252
* larger server alt on installation.
53+
* **Alpha 0.18 (2013-02-24)**:
54+
* ADDED: The resulting URL is automatically selected after pressing "Send". You just have to press CTRL+C.
55+
* ADDED: Automatic syntax highlighting for 53 languages using highlight.js
56+
* ADDED: "5 minutes" and "1 week" expirations.
57+
* ADDED: "Raw text" button.
58+
* jQuery upgraded to 1.9.1
59+
* sjcl upgraded to GitHub master 2013-02-23
60+
* base64.js upgraded to 1.7
61+
* FIXED: Dates in discussion are now proper local dates.
62+
* ADDED: Robot meta tags in HTML to prevent search engines indexing.
63+
* ADDED: Better json checking (including entropy).
64+
* ADDED: Added version to js/css assets URLs in order to prevent some abusive caches to serve an obsolete version of these files when ZeroBin is upgraded.
65+
* "Burn after reading" option has been moved out of Expiration combo to a separate checkbox. Reason is: You can prevent a read-once paste to be available ad vitam eternam on the net.
5366

5467

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ZeroBin 0.17 Alpha
1+
ZeroBin 0.18 Alpha
22

33
==== THIS IS ALPHA SOFTWARE - USE AT YOUR OWN RISKS ====
44

css/zerobin.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ZeroBin 0.17 - http://sebsauvage.net/wiki/doku.php?id=php:zerobin */
1+
/* ZeroBin 0.18 - http://sebsauvage.net/wiki/doku.php?id=php:zerobin */
22

33

44
/* CSS Reset from YUI 3.4.1 (build 4118) - Copyright 2011 Yahoo! Inc. All rights reserved.

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ZeroBin - a zero-knowledge paste bin
44
Please see project page: http://sebsauvage.net/wiki/doku.php?id=php:zerobin
55
*/
6-
$VERSION='Alpha 0.17';
6+
$VERSION='Alpha 0.18';
77
if (version_compare(PHP_VERSION, '5.2.6') < 0) die('ZeroBin requires php 5.2.6 or above to work. Sorry.');
88
require_once "lib/serversalt.php";
99
require_once "lib/vizhash_gd_zero.php";

js/zerobin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* ZeroBin 0.17
2+
* ZeroBin 0.18
33
*
44
* @link http://sebsauvage.net/wiki/doku.php?id=php:zerobin
55
* @author sebsauvage

lib/vizhash_gd_zero.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
// VizHash_GD 0.0.4 beta ZeroBin 0.17
2+
// VizHash_GD 0.0.4 beta ZeroBin 0.18
33
// Visual Hash implementation in php4+GD, stripped down and modified version for ZeroBin
44
// See: http://sebsauvage.net/wiki/doku.php?id=php:vizhash_gd
55
// This is free software under the zlib/libpng licence

0 commit comments

Comments
 (0)