Skip to content

Release 0.3.0

Compare
Choose a tag to compare
@pattan pattan released this 10 Sep 14:01
· 18 commits to main since this release
0835bbd

0.3.0 (2024-09-10)

This release introduces new features and bug fixes to enhance the AdVantage platform's flexibility and user experience.

New Format Options:

Added support for new properties in the ad format configuration

  • closeButton: Enables customization and control over the visibility and behavior of the close button.
  • downArrow: Allows the inclusion of a down arrow
  • height: set the Topscroll height

You provide a options object to the formatIntegrations array like this

formatIntegrations: [
        {
            format: AdvantageFormatName.TopScroll,
            // show/hide UI elements
            options: {
                closeButton: true, // default true
                downArrow: false, // default true
                closeButtonText: "Lukk", // default Close
                height: 70 // default 80
            },
            setup: () => {
...

Bug Fixes

Midscroll Ad Close Button: Removed an unused close button from the Midscroll ad format, streamlining the design and preventing unnecessary UI elements.

Documentation

A new section on the documentation page showcase of certified pages that have successfully integrated AdVantage

Details:

Bug Fixes

  • removed unused close-button from midscroll (#11) (7d5f793)

Features

  • format options to include closeButton and downArrow properties (#13) (7f919ab)