Plugin Directory

Changeset 2644705


Ignore:
Timestamp:
12/15/2021 07:31:25 PM (4 years ago)
Author:
adwire
Message:

release 0.1.5

Location:
adwire/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • adwire/trunk/adwire.php

    r2638187 r2644705  
    1212     * Plugin URI:        https://www.adwire.dev/wordpress-plugin
    1313     * Description:       An easy way to monetize embedded YouTube videos on your website.
    14      * Version:           0.1.4
     14     * Version:           0.1.5
    1515     * Requires at least: 5.0
    1616     * Requires PHP:      7.4
  • adwire/trunk/includes/AdwirePluginSettings.class.inc

    r2638187 r2644705  
    44
    55    namespace Adwire\WordPress\Plugins\AdwirePlugin;
     6
     7    use Exception;
    68
    79    use Adwire\WordPress\Plugins\AdwirePlugin;
     
    259261        public static function run(): void {
    260262
     263            if( empty( AdwirePlugin::$file ) ) {
     264                throw new Exception( 'AdwirePlugin::$file variable is not set' );
     265            }
     266
    261267            static::registerActions();
    262268            static::registerFilters();
  • adwire/trunk/readme.txt

    r2638187 r2644705  
    55Requires at least: 5.0
    66Tested up to: 5.8.2
    7 Stable tag: 0.1.4
     7Stable tag: 0.1.5
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    1616An easy way to monetize embedded YouTube videos on your website.
    1717
    18 Adwire temporarily removes YouTube iframe embed and replaces it with linear video advertisement - preroll, according supplied AdTag. When linear video advertisement is finished, YouTube iframe embed is restored and automatically played for seamless user experience.
     18Adwire temporarily removes YouTube iframe embed and replaces it with linear video advertisement according supplied AdTag. When linear video advertisement is finished, YouTube iframe embed is restored and automatically played for seamless user experience.
    1919
    2020Adwire uses third-party service for handling advertisements - [Google IMA SDK](https://developers.google.com/interactive-media-ads), therefore you are obliged to read and agree with:
     
    3939= Where to get AdTag URL =
    4040
    41 You can get it from your ad network/provider, e.g. [AdSense for video (AFV)](https://support.google.com/adsense/answer/6054303).
     41You can get it from your ad network/provider, e.g. [AdSense for video (AFV)](https://support.google.com/adsense/answer/6054303) or create your own according to [VAST](https://iabtechlab.com/standards/vast/) or other supported format documentation.
    4242
    4343== Screenshots ==
     
    4646
    4747== Changelog ==
     48
     49= 0.1.5 =
     50* Added exception for case of missing required variable.
     51* Updated readme.
    4852
    4953= 0.1.4 =
Note: See TracChangeset for help on using the changeset viewer.