Incompatible release changes deprecated

Release v1.4.2

Removal of io.ox/ads/mailBackground and io.ox/ads/portalBackground

Those banner spaces have been removed in favor of the new wallpaper "align" config options.

Renaming of io.ox/ads/driveFolder to io.ox/ads/folder

The driveFolder banner space has been renamed to folder, which reflects the new and more general use-case that is now supported.

Release v1.4.1

Removal of io.ox/ads/skyscraperLeft extension point

This has been removed in favor of a new option of the io.ox/ads/skyscraper extension point.

To migrate to the new API, rename all io.ox/ads/skyscraperLeft space configurations and add "placement": "left" attribute to it.

Release v1.3.0

Removal of filters from the default implementation

Filters with the following attributes have been removed from the frontend code: - capabilities - active

They can not be used to filter the list of active banners anymore.

In order to add custom support here, use the io.ox/ads extension point and implement a custom filter method.

ext.point('io.ox/ads').extend({
    filter: function (baton) {
        baton.activeAds = baton.activeAds.filter(function(conf) {
            return conf.active && capabilities.has(conf.capabilities);
        });
    }
});