Changeset 2300121
- Timestamp:
- 05/07/2020 02:44:42 PM (6 years ago)
- Location:
- cloudimage/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
cloudimage.php (modified) (2 diffs)
-
includes/class-cloudimage.php (modified) (1 diff)
-
public/class-cloudimage-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cloudimage/trunk/README.txt
r2299211 r2300121 6 6 Tested up to: 5.4.0 7 7 Requires PHP: 5.6 8 Stable tag: 2.8. 68 Stable tag: 2.8.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 256 256 * fix bug with some styles used in the JS mode 257 257 258 = 2.8.7 = 259 * fix issue with custom Cloudimage name and background image 260 258 261 == Upgrade Notice == 259 262 * Upgrading from version 1 to 2 can show you warnings in the admin section -
cloudimage/trunk/cloudimage.php
r2299211 r2300121 12 12 * Plugin Name: Cloudimage - Responsive Images as a Service 13 13 * Description: The easiest way to <strong>deliver lightning fast images</strong> to your users. 14 * Version: 2.8. 614 * Version: 2.8.7 15 15 * Author: Cloudimage 16 16 * Author URI: https://cloudimage.io … … 30 30 * Start at version 1.0.0 31 31 */ 32 define('CLOUDIMAGE_VERSION', '2.8. 6');32 define('CLOUDIMAGE_VERSION', '2.8.7'); 33 33 34 34 /** -
cloudimage/trunk/includes/class-cloudimage.php
r2299211 r2300121 83 83 $this->version = CLOUDIMAGE_VERSION; 84 84 } else { 85 $this->version = '2.8. 6';85 $this->version = '2.8.7'; 86 86 } 87 87 $this->plugin_name = 'cloudimage'; -
cloudimage/trunk/public/class-cloudimage-public.php
r2299211 r2300121 341 341 // Construct Cloudimage prefix in both cases - custom domain or token 342 342 $cloudimg_prefix = "https://" . $this->cloudimage_domain; 343 $cloudimg_prefix = strpos($this->cloudimage_domain, '.cloudimg.io') !== false ? $cloudimg_prefix . "/v7/" : $cloudimg_prefix . "/"; 343 // $cloudimg_prefix = strpos($this->cloudimage_domain, '.cloudimg.io') !== false ? $cloudimg_prefix . "/v7/" : $cloudimg_prefix . "/"; 344 $cloudimg_prefix = $cloudimg_prefix . "/v7/"; 344 345 345 346 // replace the background-image URL
Note: See TracChangeset
for help on using the changeset viewer.