Merge pull request #765 from ArthurHoaro/master

Cherry-pick version bump from v0.8 branch
This commit is contained in:
ArthurHoaro 2017-01-16 12:57:56 +01:00 committed by GitHub
commit d029cf67f8
3 changed files with 8 additions and 3 deletions

View file

@ -52,6 +52,11 @@ configuration to enable URL rewriting, see:
- Fix permalink image alignment in daily page - Fix permalink image alignment in daily page
- Fix the delete button in `editlink` - Fix the delete button in `editlink`
## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
### Fixed
- Editing a link created before the new ID system would change its permalink.
## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12 ## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12

View file

@ -1,6 +1,6 @@
<?php <?php
/** /**
* Shaarli v0.8.1 - Shaare your links... * Shaarli v0.8.2 - Shaare your links...
* *
* The personal, minimalist, super-fast, database free, bookmarking service. * The personal, minimalist, super-fast, database free, bookmarking service.
* *
@ -25,7 +25,7 @@ if (date_default_timezone_get() == '') {
/* /*
* PHP configuration * PHP configuration
*/ */
define('shaarli_version', '0.8.1'); define('shaarli_version', '0.8.2');
// http://server.com/x/shaarli --> /shaarli/ // http://server.com/x/shaarli --> /shaarli/
define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0))); define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));

View file

@ -1 +1 @@
<?php /* 0.8.1 */ ?> <?php /* 0.8.2 */ ?>