version bump

This commit is contained in:
Bernhard Posselt 2015-01-26 10:50:31 +01:00
parent 526f3378bf
commit 2f666ebec4
5 changed files with 6 additions and 39 deletions

View File

@ -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)

View File

@ -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>

View File

@ -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

File diff suppressed because one or more lines are too long

View File

@ -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);