diff --git a/AUTHORS b/AUTHORS index 8d06b93..f91a770 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,5 @@ - 715 ArthurHoaro - 370 VirtualTam + 716 ArthurHoaro + 372 VirtualTam 208 nodiscc 56 Sébastien Sauvage 15 Florian Eula diff --git a/CHANGELOG.md b/CHANGELOG.md index 0391793..769dfa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v0.10.4](https://github.com/shaarli/Shaarli/releases/tag/v0.10.4) - 2019-04-16 + +### Fixed +- Fix thumbnails disabling if PHP GD is not installed +- Fix a warning if links sticky status isn't set ## [v0.10.3](https://github.com/shaarli/Shaarli/releases/tag/v0.10.3) - 2019-02-23 ### Added diff --git a/application/LinkDB.php b/application/LinkDB.php index 4bbc295..803757c 100644 --- a/application/LinkDB.php +++ b/application/LinkDB.php @@ -259,7 +259,8 @@ You use the community supported version of the original Shaarli project, by Seba ), 'private'=>0, 'created'=> new DateTime(), - 'tags'=>'opensource software' + 'tags'=>'opensource software', + 'sticky' => false, ); $link['shorturl'] = link_small_hash($link['created'], $link['id']); $this->links[1] = $link; @@ -272,6 +273,7 @@ You use the community supported version of the original Shaarli project, by Seba 'private'=>1, 'created'=> new DateTime('1 minute ago'), 'tags'=>'secretstuff', + 'sticky' => false, ); $link['shorturl'] = link_small_hash($link['created'], $link['id']); $this->links[0] = $link; @@ -323,6 +325,8 @@ You use the community supported version of the original Shaarli project, by Seba $link['real_url'] = $link['url']; } + $link['sticky'] = isset($link['sticky']) ? $link['sticky'] : false; + // To be able to load links before running the update, and prepare the update if (! isset($link['created'])) { $link['id'] = $link['linkdate']; diff --git a/application/Thumbnailer.php b/application/Thumbnailer.php index 37ed97a..167d629 100644 --- a/application/Thumbnailer.php +++ b/application/Thumbnailer.php @@ -55,7 +55,7 @@ class Thumbnailer $this->conf = $conf; if (! $this->checkRequirements()) { - $this->conf->set('thumbnails.enabled', false); + $this->conf->set('thumbnails.mode', Thumbnailer::MODE_NONE); $this->conf->write(true); // TODO: create a proper error handling system able to catch exceptions... die(t( diff --git a/index.php b/index.php index 89a4986..1d760f5 100644 --- a/index.php +++ b/index.php @@ -1207,6 +1207,8 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history, $sessionManager, $link['thumbnail'] = $thumbnailer->get($url); } + $link['sticky'] = isset($link['sticky']) ? $link['sticky'] : false; + $pluginManager->executeHooks('save_link', $link); $LINKSDB[$id] = $link; diff --git a/shaarli_version.php b/shaarli_version.php index 215fc76..7db5053 100644 --- a/shaarli_version.php +++ b/shaarli_version.php @@ -1 +1 @@ - +