]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Bump version to 0.5.0 303/head
authorVirtualTam <virtualtam@flibidi.net>
Thu, 30 Jul 2015 09:20:51 +0000 (11:20 +0200)
committerVirtualTam <virtualtam@flibidi.net>
Thu, 30 Jul 2015 09:20:51 +0000 (11:20 +0200)
Major changes
 - fix locale handling
 - fix note URLs
 - fix page redirections
 - fix daily RSS browsing
 - fix title display
 - fix links not being hidden when `HIDE_PUBLIC_LINKS` is set
 - restore compatibility with PHP 5.3
 - remove duplicate tags in links
 - remove annoying URL patterns
 - add Firefox Social API
 - Search/Filter by tag fieds can now be accessed quickly with the `Tab` key
 - update documentation
 - start code refactoring
   - move all settings to `data/config.php`
   - refactor Config, LinkDB, TimeZone, Utils
   - add unit test coverage
   - add Travis integration

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
index.php
shaarli_version.php

index 6d3fbd39616926a7c9a48659399ff3ce908d67f9..1439ec2f708b66d41b9381c895a835faddd0932e 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,5 +1,5 @@
 <?php
-// Shaarli 0.0.45beta - Shaare your links...
+// Shaarli 0.5.0 - Shaare your links...
 // The personal, minimalist, super-fast, no-database Delicious clone. By sebsauvage.net
 // http://sebsauvage.net/wiki/doku.php?id=php:shaarli
 // Licence: http://www.opensource.org/licenses/zlib-license.php
@@ -37,7 +37,7 @@ $GLOBALS['config']['ARCHIVE_ORG'] = false; // For each link, add a link to an ar
 $GLOBALS['config']['ENABLE_RSS_PERMALINKS'] = true;  // Enable RSS permalinks by default. This corresponds to the default behavior of shaarli before this was added as an option.
 $GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false;
 // -----------------------------------------------------------------------------------------------
-define('shaarli_version','0.0.45beta');
+define('shaarli_version','0.5.0');
 // http://server.com/x/shaarli --> /shaarli/
 define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0)));
 
index d2254870e5bbe6e865041762ea08569cf4aa81c8..a2045a7bf305400e12b24bd2374aee610bc5b66a 100644 (file)
@@ -1 +1 @@
-<?php /* 0.0.45beta */ ?>
+<?php /* 0.5.0 */ ?>