Changeset 2458977
- Timestamp:
- 01/19/2021 01:49:11 PM (5 years ago)
- Location:
- croct
- Files:
-
- 8 edited
- 1 copied
-
tags/1.0.7 (copied) (copied from croct/trunk)
-
tags/1.0.7/croct.php (modified) (1 diff)
-
tags/1.0.7/readme.txt (modified) (1 diff)
-
tags/1.0.7/src/Dependency/BootstrapScript.php (modified) (2 diffs)
-
tags/1.0.7/src/Plugin.php (modified) (1 diff)
-
trunk/croct.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Dependency/BootstrapScript.php (modified) (2 diffs)
-
trunk/src/Plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
croct/tags/1.0.7/croct.php
r2452601 r2458977 6 6 * Plugin Name: Croct 7 7 * Plugin URI: https://croct.com/wordpress 8 * Version: 1.0. 68 * Version: 1.0.7 9 9 * Description: Content Personalization for WordPress. 10 10 * Requires at least: 4.0 -
croct/tags/1.0.7/readme.txt
r2387285 r2458977 125 125 == Changelog == 126 126 127 = 1.0 (2020-09-18): =127 = 1.0.0 (2020-09-18): = 128 128 * Initial Release 129 129 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 19 19 20 20 if (typeof croct === 'undefined') { 21 const script = document.getElementById(%s) ;21 const script = document.getElementById(%s) || document.querySelector('script[src*="croct"][src*="plug"]'); 22 22 23 23 if (script === null) { … … 33 33 34 34 if (typeof wpCroct.init === 'undefined') { 35 const script = document.getElementById(%s) ;35 const script = document.getElementById(%s) || document.querySelector('script[src*="wp-croct"]'); 36 36 37 37 if (script === null) { -
croct/tags/1.0.7/src/Plugin.php
r2452601 r2458977 13 13 final class Plugin 14 14 { 15 const VERSION = '1.0. 6';15 const VERSION = '1.0.7'; 16 16 17 17 const OPTIONS_GROUP = 'croct'; -
croct/trunk/croct.php
r2452601 r2458977 6 6 * Plugin Name: Croct 7 7 * Plugin URI: https://croct.com/wordpress 8 * Version: 1.0. 68 * Version: 1.0.7 9 9 * Description: Content Personalization for WordPress. 10 10 * Requires at least: 4.0 -
croct/trunk/readme.txt
r2387285 r2458977 125 125 == Changelog == 126 126 127 = 1.0 (2020-09-18): =127 = 1.0.0 (2020-09-18): = 128 128 * Initial Release 129 129 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 19 19 20 20 if (typeof croct === 'undefined') { 21 const script = document.getElementById(%s) ;21 const script = document.getElementById(%s) || document.querySelector('script[src*="croct"][src*="plug"]'); 22 22 23 23 if (script === null) { … … 33 33 34 34 if (typeof wpCroct.init === 'undefined') { 35 const script = document.getElementById(%s) ;35 const script = document.getElementById(%s) || document.querySelector('script[src*="wp-croct"]'); 36 36 37 37 if (script === null) { -
croct/trunk/src/Plugin.php
r2452601 r2458977 13 13 final class Plugin 14 14 { 15 const VERSION = '1.0. 6';15 const VERSION = '1.0.7'; 16 16 17 17 const OPTIONS_GROUP = 'croct';
Note: See TracChangeset
for help on using the changeset viewer.