diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-07-30 11:20:51 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-07-30 11:20:51 +0200 |
commit | 7d4263e11aebb698fd9dcdf56eab0238d72801d5 (patch) | |
tree | fc8b9f6cfb8c9e2d4ff2e5d50ea8a86aa0cd0ae7 | |
parent | 462bfb13128becd16be8f10d86728528ad69dd62 (diff) | |
download | Shaarli-7d4263e11aebb698fd9dcdf56eab0238d72801d5.tar.gz Shaarli-7d4263e11aebb698fd9dcdf56eab0238d72801d5.tar.zst Shaarli-7d4263e11aebb698fd9dcdf56eab0238d72801d5.zip |
Bump version to 0.5.0
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>
-rw-r--r-- | index.php | 4 | ||||
-rw-r--r-- | shaarli_version.php | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | <?php | 1 | <?php |
2 | // Shaarli 0.0.45beta - Shaare your links... | 2 | // Shaarli 0.5.0 - Shaare your links... |
3 | // The personal, minimalist, super-fast, no-database Delicious clone. By sebsauvage.net | 3 | // The personal, minimalist, super-fast, no-database Delicious clone. By sebsauvage.net |
4 | // http://sebsauvage.net/wiki/doku.php?id=php:shaarli | 4 | // http://sebsauvage.net/wiki/doku.php?id=php:shaarli |
5 | // Licence: http://www.opensource.org/licenses/zlib-license.php | 5 | // 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 | |||
37 | $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. | 37 | $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. |
38 | $GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false; | 38 | $GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false; |
39 | // ----------------------------------------------------------------------------------------------- | 39 | // ----------------------------------------------------------------------------------------------- |
40 | define('shaarli_version','0.0.45beta'); | 40 | define('shaarli_version','0.5.0'); |
41 | // http://server.com/x/shaarli --> /shaarli/ | 41 | // http://server.com/x/shaarli --> /shaarli/ |
42 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); | 42 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); |
43 | 43 | ||
diff --git a/shaarli_version.php b/shaarli_version.php index d2254870..a2045a7b 100644 --- a/shaarli_version.php +++ b/shaarli_version.php | |||
@@ -1 +1 @@ | |||
<?php /* 0.0.45beta */ ?> | <?php /* 0.5.0 */ ?> | ||