Plugin Directory

Changeset 2458977


Ignore:
Timestamp:
01/19/2021 01:49:11 PM (5 years ago)
Author:
marcospassos
Message:

Update to version 1.0.7 from GitHub

Location:
croct
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • croct/tags/1.0.7/croct.php

    r2452601 r2458977  
    66 * Plugin Name:       Croct
    77 * Plugin URI:        https://croct.com/wordpress
    8  * Version:           1.0.6
     8 * Version:           1.0.7
    99 * Description:       Content Personalization for WordPress.
    1010 * Requires at least: 4.0
  • croct/tags/1.0.7/readme.txt

    r2387285 r2458977  
    125125== Changelog ==
    126126
    127 = 1.0 (2020-09-18): =
     127= 1.0.0 (2020-09-18): =
    128128* Initial Release
    129129
     130= 1.0.1 (2020-09-23): =
     131* Fix dependencies sort order (#2), thanks amorimjuliana!
     132
     133= 1.0.2 (2020-09-23): =
     134* Fix release workflow to correctly set plugin version (#3), thanks Fryuni!
     135
     136= 1.0.3 (2020-09-24): =
     137* Fix interest auto-complete (#4), thanks marcospassos!
     138
     139= 1.0.4 (2021-01-07): =
     140* Add support for async script loading (#5), thanks marcospassos!
     141
     142= 1.0.5 (2021-01-07): =
     143* Fix interest tracking with async script loading (#6), thanks marcospassos!
     144
     145= 1.0.6 (2021-01-08): =
     146* Fix initialization script (#7), thanks marcospassos!
  • croct/tags/1.0.7/src/Dependency/BootstrapScript.php

    r2452601 r2458977  
    1919   
    2020    if (typeof croct === 'undefined') {
    21         const script = document.getElementById(%s);
     21        const script = document.getElementById(%s) || document.querySelector('script[src*="croct"][src*="plug"]');
    2222       
    2323        if (script === null) {
     
    3333
    3434    if (typeof wpCroct.init === 'undefined') {
    35         const script = document.getElementById(%s);
     35        const script = document.getElementById(%s) || document.querySelector('script[src*="wp-croct"]');
    3636       
    3737        if (script === null) {
  • croct/tags/1.0.7/src/Plugin.php

    r2452601 r2458977  
    1313final class Plugin
    1414{
    15     const VERSION = '1.0.6';
     15    const VERSION = '1.0.7';
    1616
    1717    const OPTIONS_GROUP = 'croct';
  • croct/trunk/croct.php

    r2452601 r2458977  
    66 * Plugin Name:       Croct
    77 * Plugin URI:        https://croct.com/wordpress
    8  * Version:           1.0.6
     8 * Version:           1.0.7
    99 * Description:       Content Personalization for WordPress.
    1010 * Requires at least: 4.0
  • croct/trunk/readme.txt

    r2387285 r2458977  
    125125== Changelog ==
    126126
    127 = 1.0 (2020-09-18): =
     127= 1.0.0 (2020-09-18): =
    128128* Initial Release
    129129
     130= 1.0.1 (2020-09-23): =
     131* Fix dependencies sort order (#2), thanks amorimjuliana!
     132
     133= 1.0.2 (2020-09-23): =
     134* Fix release workflow to correctly set plugin version (#3), thanks Fryuni!
     135
     136= 1.0.3 (2020-09-24): =
     137* Fix interest auto-complete (#4), thanks marcospassos!
     138
     139= 1.0.4 (2021-01-07): =
     140* Add support for async script loading (#5), thanks marcospassos!
     141
     142= 1.0.5 (2021-01-07): =
     143* Fix interest tracking with async script loading (#6), thanks marcospassos!
     144
     145= 1.0.6 (2021-01-08): =
     146* Fix initialization script (#7), thanks marcospassos!
  • croct/trunk/src/Dependency/BootstrapScript.php

    r2452601 r2458977  
    1919   
    2020    if (typeof croct === 'undefined') {
    21         const script = document.getElementById(%s);
     21        const script = document.getElementById(%s) || document.querySelector('script[src*="croct"][src*="plug"]');
    2222       
    2323        if (script === null) {
     
    3333
    3434    if (typeof wpCroct.init === 'undefined') {
    35         const script = document.getElementById(%s);
     35        const script = document.getElementById(%s) || document.querySelector('script[src*="wp-croct"]');
    3636       
    3737        if (script === null) {
  • croct/trunk/src/Plugin.php

    r2452601 r2458977  
    1313final class Plugin
    1414{
    15     const VERSION = '1.0.6';
     15    const VERSION = '1.0.7';
    1616
    1717    const OPTIONS_GROUP = 'croct';
Note: See TracChangeset for help on using the changeset viewer.