Plugin Directory

Changeset 3203639


Ignore:
Timestamp:
12/06/2024 01:16:49 PM (16 months ago)
Author:
uniconsent
Message:

Version 1.5.5

Location:
uniconsent-cmp
Files:
4 edited
24 copied

Legend:

Unmodified
Added
Removed
  • uniconsent-cmp/tags/1.5.5/README.txt

    r3147308 r3203639  
    11=== UniConsent CMP for IAB TCF GPP Consent Mode ===
    2 Version: 1.5.4
     2Version: 1.5.5
    33Contributors: uniconsent
    44Tags: cookies, cookie banner, gdpr, cpra, eprivacy, cookie consent, iab, cmp
     
    66Tested up to: 6.6
    77Requires PHP: 7.4
    8 Stable tag: 1.5.4
     8Stable tag: 1.5.5
    99
    1010== Description ==
     
    116116== Changelog ==
    117117
     118
     119= 1.5.5 =
     120* Optimize and improvements
     121
    118122= 1.5.3 =
    119123* Improve Google Consent Mode
  • uniconsent-cmp/tags/1.5.5/admin/class-unic-admin-pages.php

    r3132690 r3203639  
    1313
    1414    private $unic_license;
    15 
    1615    private $unic_options;
    17 
    1816    private $unic_values;
    19 
    2017    private $unic_language;
    21 
    2218    private $unic_company;
    23 
    2419    private $unic_logo;
    25 
    2620    private $unic_policy_url;
     21    private $unic_language_default = 'en';
    2722
    2823    public function __construct() {
    2924
    3025        $this->unic_values = new UNIC_Values();
    31 
    32         $this->unic_language_default = "en";
    3326        $this->unic_language = esc_attr( get_option( 'unic_language' ) );
    3427
     
    4437
    4538    public function unic_admin_notice_license() {
    46 
    4739        $unic_enable_iab = get_option( 'unic_enable_iab');
    4840    }
  • uniconsent-cmp/tags/1.5.5/includes/class-unic-cmp.php

    r3147308 r3203639  
    2020            $this->version = UNIC_VERSION;
    2121        } else {
    22             $this->version = '1.5.4';
     22            $this->version = '1.5.5';
    2323        }
    2424        $this->plugin_name = 'uniconsent-cmp';
     
    3333
    3434        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-loader.php';
    35 
    3635        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-i18n.php';
    37 
    3836        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-values.php';
    39 
    4037        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-admin-pages.php';
    41 
    4238        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-unic-public.php';
    43 
    4439        $this->loader = new UNIC_Loader();
    4540
  • uniconsent-cmp/tags/1.5.5/uniconsent-cmp.php

    r3147308 r3203639  
    55* Plugin URI: https://www.uniconsent.com/wordpress
    66* Description: UniConsent CMP implements the Google Consent Mode, IAB TCF 2.2, IAB GPP for GDPR Google Ad Manager/Prebid.js/Amazon APS and increase advertising revenue.
    7 * Version: 1.5.4
     7* Version: 1.5.5
    88* Author: UniConsent
    99* Author URI: https://www.uniconsent.com/
     
    1515}
    1616
    17 define( 'UNIC_CMP_VERSION', '1.5.4' );
     17define( 'UNIC_CMP_VERSION', '1.5.5' );
    1818
    1919function activate_unic_cmp() {
  • uniconsent-cmp/trunk/README.txt

    r3147308 r3203639  
    11=== UniConsent CMP for IAB TCF GPP Consent Mode ===
    2 Version: 1.5.4
     2Version: 1.5.5
    33Contributors: uniconsent
    44Tags: cookies, cookie banner, gdpr, cpra, eprivacy, cookie consent, iab, cmp
     
    66Tested up to: 6.6
    77Requires PHP: 7.4
    8 Stable tag: 1.5.4
     8Stable tag: 1.5.5
    99
    1010== Description ==
     
    116116== Changelog ==
    117117
     118
     119= 1.5.5 =
     120* Optimize and improvements
     121
    118122= 1.5.3 =
    119123* Improve Google Consent Mode
  • uniconsent-cmp/trunk/admin/class-unic-admin-pages.php

    r3132690 r3203639  
    1313
    1414    private $unic_license;
    15 
    1615    private $unic_options;
    17 
    1816    private $unic_values;
    19 
    2017    private $unic_language;
    21 
    2218    private $unic_company;
    23 
    2419    private $unic_logo;
    25 
    2620    private $unic_policy_url;
     21    private $unic_language_default = 'en';
    2722
    2823    public function __construct() {
    2924
    3025        $this->unic_values = new UNIC_Values();
    31 
    32         $this->unic_language_default = "en";
    3326        $this->unic_language = esc_attr( get_option( 'unic_language' ) );
    3427
     
    4437
    4538    public function unic_admin_notice_license() {
    46 
    4739        $unic_enable_iab = get_option( 'unic_enable_iab');
    4840    }
  • uniconsent-cmp/trunk/includes/class-unic-cmp.php

    r3147308 r3203639  
    2020            $this->version = UNIC_VERSION;
    2121        } else {
    22             $this->version = '1.5.4';
     22            $this->version = '1.5.5';
    2323        }
    2424        $this->plugin_name = 'uniconsent-cmp';
     
    3333
    3434        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-loader.php';
    35 
    3635        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-unic-i18n.php';
    37 
    3836        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-values.php';
    39 
    4037        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-unic-admin-pages.php';
    41 
    4238        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-unic-public.php';
    43 
    4439        $this->loader = new UNIC_Loader();
    4540
  • uniconsent-cmp/trunk/uniconsent-cmp.php

    r3147308 r3203639  
    55* Plugin URI: https://www.uniconsent.com/wordpress
    66* Description: UniConsent CMP implements the Google Consent Mode, IAB TCF 2.2, IAB GPP for GDPR Google Ad Manager/Prebid.js/Amazon APS and increase advertising revenue.
    7 * Version: 1.5.4
     7* Version: 1.5.5
    88* Author: UniConsent
    99* Author URI: https://www.uniconsent.com/
     
    1515}
    1616
    17 define( 'UNIC_CMP_VERSION', '1.5.4' );
     17define( 'UNIC_CMP_VERSION', '1.5.5' );
    1818
    1919function activate_unic_cmp() {
Note: See TracChangeset for help on using the changeset viewer.