mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-04-06 19:15:44 +02:00
version bump
This commit is contained in:
parent
526f3378bf
commit
2f666ebec4
@ -1,5 +1,6 @@
|
||||
owncloud-news (5.1.0)
|
||||
* **Backwards incompatible change**: Break client side plugin API to combat limitations that make it hard to impossible to get the DOM element
|
||||
* **New dependency**: Bump required ownCloud version to 8 beta 2
|
||||
* **Enhancement**: Expose feed ordering parameter in API
|
||||
|
||||
owncloud-news (5.0.1)
|
||||
|
@ -7,7 +7,7 @@
|
||||
<author>Bernhard Posselt, Alessandro Cosentino, Jan-Christoph Borchardt</author>
|
||||
<category>multimedia</category>
|
||||
<licence>AGPL</licence>
|
||||
<version>5.0.1</version>
|
||||
<version>5.1.0</version>
|
||||
<namespace>News</namespace>
|
||||
|
||||
<!-- resources -->
|
||||
@ -21,9 +21,9 @@
|
||||
<repository type="git">https://github.com/owncloud/news.git</repository>
|
||||
|
||||
<!-- dependencies -->
|
||||
<requiremin>7.6</requiremin>
|
||||
<requiremin>8</requiremin>
|
||||
<dependencies>
|
||||
<owncloud min-version="7.6" />
|
||||
<owncloud min-version="8" />
|
||||
<php min-version="5.4" />
|
||||
<database>pgsql</database>
|
||||
<database>sqlite</database>
|
||||
|
@ -2402,32 +2402,15 @@ window.News = window.News || {};
|
||||
'use strict';
|
||||
|
||||
var articleActionPlugins = [];
|
||||
var articleActionPluginsById = {};
|
||||
|
||||
|
||||
/**
|
||||
* @param function action An article action plugin should look like this:
|
||||
* function (article, baseUrl) {
|
||||
* this.title = 'A title that is displayed on hover';
|
||||
* this.iconUrl = 'An url for the icon';
|
||||
* this.onClick = function (event, element) {
|
||||
*
|
||||
* };
|
||||
* }
|
||||
*/
|
||||
exports.addArticleAction = function (action) {
|
||||
articleActionPlugins.push(action);
|
||||
articleActionPluginsById[action.id] = action;
|
||||
};
|
||||
|
||||
exports.getArticleActionPlugins = function () {
|
||||
return articleActionPlugins;
|
||||
};
|
||||
|
||||
exports.getArticleActionPluginById = function (id) {
|
||||
return articleActionPluginsById[id];
|
||||
};
|
||||
|
||||
})(window, document, jQuery, window.News);
|
||||
|
||||
|
||||
|
4
js/build/app.min.js
vendored
4
js/build/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -5,31 +5,14 @@ window.News = window.News || {};
|
||||
'use strict';
|
||||
|
||||
var articleActionPlugins = [];
|
||||
var articleActionPluginsById = {};
|
||||
|
||||
|
||||
/**
|
||||
* @param function action An article action plugin should look like this:
|
||||
* function (article, baseUrl) {
|
||||
* this.title = 'A title that is displayed on hover';
|
||||
* this.iconUrl = 'An url for the icon';
|
||||
* this.onClick = function (event, element) {
|
||||
*
|
||||
* };
|
||||
* }
|
||||
*/
|
||||
exports.addArticleAction = function (action) {
|
||||
articleActionPlugins.push(action);
|
||||
articleActionPluginsById[action.id] = action;
|
||||
};
|
||||
|
||||
exports.getArticleActionPlugins = function () {
|
||||
return articleActionPlugins;
|
||||
};
|
||||
|
||||
exports.getArticleActionPluginById = function (id) {
|
||||
return articleActionPluginsById[id];
|
||||
};
|
||||
|
||||
})(window, document, jQuery, window.News);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user