Sync plugins in core and Spartacus.

* Sync gravatar, bump version to 1.63.
* Sync authors.
* Sync quicksearch.

Cherry-picked from master.

Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
Thomas Hochstein 2018-09-02 17:59:58 +02:00
parent 7317d27292
commit cdff0ed7ce
3 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Version 1.63:
------------------------------------------------------------------------
* Sync core and Spartacus.
Version 1.62.2:
------------------------------------------------------------------------
* Add legal information to be used by serendipity_event_dsgvo_gpdr
@ -5,9 +9,20 @@ Version 1.62.2:
Version 1.62.1:
------------------------------------------------------------------------
* Remove defunct mybloglog
Version 1.61.1:
------------------------------------------------------------------------
* Workaround PHP < 5.6 bug, not verifying certs, stopping Request2
Version 1.61:
------------------------------------------------------------------------
* Switch plugin to http_request2
Version 1.60:
------------------------------------------------------------------------
* Consistent plugin usage
Version 1.59:
------------------------------------------------------------------------
* Allows other plugins to fetch user metadata via
avatar_fetch_userinfos hook.

View File

@ -16,7 +16,7 @@ class serendipity_plugin_authors extends serendipity_plugin
$propbag->add('description', AUTHOR_PLUGIN_DESC);
$propbag->add('stackable', true);
$propbag->add('author', 'Serendipity Team');
$propbag->add('version', '2.2');
$propbag->add('version', '2.2'); // NOTE: This plugin is also in the central repository. Commit changes to the core, too :)
$propbag->add('configuration', array('image', 'allow_select', 'title', 'showartcount', 'mincount'));
$propbag->add('groups', array('FRONTEND_VIEWS'));
}

View File

@ -14,7 +14,7 @@ class serendipity_plugin_quicksearch extends serendipity_plugin
$propbag->add('description', SEARCH_FOR_ENTRY);
$propbag->add('stackable', false);
$propbag->add('author', 'Serendipity Team');
$propbag->add('version', '1.2');
$propbag->add('version', '1.2'); // NOTE: This plugin is also in the central repository. Commit changes to the core, too :)
$propbag->add('configuration', array('fullentry'));
$propbag->add('groups', array('FRONTEND_ENTRY_RELATED'));
}