Merge pull request #573 from th-h/thh-pluginsync

Sync plugins in core and Spartacus.
This commit is contained in:
Thomas Hochstein 2018-09-02 18:13:33 +02:00 committed by GitHub
commit ef557fbb6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'));
}