Changeset 2315019
- Timestamp:
- 05/30/2020 12:25:12 PM (6 years ago)
- Location:
- image4io
- Files:
-
- 5 edited
- 33 copied
-
tags/0.3.2 (copied) (copied from image4io/trunk)
-
tags/0.3.2/assets (copied) (copied from image4io/trunk/assets)
-
tags/0.3.2/assets/img/ajax-loader.gif (copied) (copied from image4io/trunk/assets/img/ajax-loader.gif)
-
tags/0.3.2/assets/img/edit-button.png (copied) (copied from image4io/trunk/assets/img/edit-button.png)
-
tags/0.3.2/assets/js/image4io-mce-button.js (copied) (copied from image4io/trunk/assets/js/image4io-mce-button.js)
-
tags/0.3.2/build (copied) (copied from image4io/trunk/build)
-
tags/0.3.2/composer.json (copied) (copied from image4io/trunk/composer.json)
-
tags/0.3.2/image4io.php (copied) (copied from image4io/trunk/image4io.php) (1 diff)
-
tags/0.3.2/inc (copied) (copied from image4io/trunk/inc)
-
tags/0.3.2/inc/Api/Callbacks/AdminCallbacks.php (copied) (copied from image4io/trunk/inc/Api/Callbacks/AdminCallbacks.php)
-
tags/0.3.2/inc/Api/Image4IOApi.php (copied) (copied from image4io/trunk/inc/Api/Image4IOApi.php)
-
tags/0.3.2/inc/Api/Image4IOManager.php (copied) (copied from image4io/trunk/inc/Api/Image4IOManager.php)
-
tags/0.3.2/inc/Base/BaseController.php (copied) (copied from image4io/trunk/inc/Base/BaseController.php)
-
tags/0.3.2/inc/Base/Enqueue.php (copied) (copied from image4io/trunk/inc/Base/Enqueue.php)
-
tags/0.3.2/inc/Manager/MediaManager.php (copied) (copied from image4io/trunk/inc/Manager/MediaManager.php) (1 diff)
-
tags/0.3.2/inc/Pages/Admin.php (copied) (copied from image4io/trunk/inc/Pages/Admin.php)
-
tags/0.3.2/index.php (copied) (copied from image4io/trunk/index.php)
-
tags/0.3.2/npm-debug.log (copied) (copied from image4io/trunk/npm-debug.log)
-
tags/0.3.2/package-lock.json (copied) (copied from image4io/trunk/package-lock.json) (1 diff)
-
tags/0.3.2/package.json (copied) (copied from image4io/trunk/package.json) (1 diff)
-
tags/0.3.2/readme.txt (copied) (copied from image4io/trunk/readme.txt) (1 diff)
-
tags/0.3.2/screenshot-1.png (copied) (copied from image4io/trunk/screenshot-1.png)
-
tags/0.3.2/screenshot-2.png (copied) (copied from image4io/trunk/screenshot-2.png)
-
tags/0.3.2/screenshot-3.png (copied) (copied from image4io/trunk/screenshot-3.png)
-
tags/0.3.2/screenshot-4.png (copied) (copied from image4io/trunk/screenshot-4.png)
-
tags/0.3.2/screenshot-5.png (copied) (copied from image4io/trunk/screenshot-5.png)
-
tags/0.3.2/screenshot-6.png (copied) (copied from image4io/trunk/screenshot-6.png)
-
tags/0.3.2/src (copied) (copied from image4io/trunk/src)
-
tags/0.3.2/templates (copied) (copied from image4io/trunk/templates)
-
tags/0.3.2/templates/admin.php (copied) (copied from image4io/trunk/templates/admin.php)
-
tags/0.3.2/templates/loading.php (copied) (copied from image4io/trunk/templates/loading.php)
-
tags/0.3.2/templates/media.php (copied) (copied from image4io/trunk/templates/media.php)
-
tags/0.3.2/vendor (copied) (copied from image4io/trunk/vendor)
-
trunk/image4io.php (modified) (1 diff)
-
trunk/inc/Manager/MediaManager.php (modified) (1 diff)
-
trunk/package-lock.json (modified) (1 diff)
-
trunk/package.json (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
image4io/tags/0.3.2/image4io.php
r2313195 r2315019 8 8 Description: Speeds up the images' load time: image optimization, image CDN and image storage, all-in-one platform. To get started: activate the image4io plugin and then go to your Image4io Settings page to set up your credentials. 9 9 Author: image4io 10 Version: 0.3. 110 Version: 0.3.2 11 11 Author URI: https://image4.io 12 12 */ -
image4io/tags/0.3.2/inc/Manager/MediaManager.php
r2313195 r2315019 370 370 } 371 371 372 $full_path = $attachment->guid; 372 //$full_path = $attachment->guid; 373 //$full_path = wp_get_original_image_url($attachment_id); 374 $full_path=wp_get_attachment_image_src($attachment_id,"attached-image")[0]; 375 373 376 if (empty($full_path)) { 374 377 return 'Unsupported attachment type!'; 375 378 } 379 376 380 $full_path = $this->update_urls_for_ssl($full_path); 377 381 -
image4io/tags/0.3.2/package-lock.json
r2313195 r2315019 1 1 { 2 2 "name": "image4io", 3 "version": "0.3. 1",3 "version": "0.3.2", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
image4io/tags/0.3.2/package.json
r2313195 r2315019 1 1 { 2 2 "name": "image4io", 3 "version": "0.3. 1",3 "version": "0.3.2", 4 4 "description": "image4io Wordpress Plugin. Speeds up the images' load time: image optimization, image CDN and image storage, all-in-one platform.", 5 5 "main": "index.js", -
image4io/tags/0.3.2/readme.txt
r2313195 r2315019 121 121 * Fixed a bug when hosting server activated ssl. 122 122 123 = 0.3.2 = 124 * Fixed a bug when uploading images to image4io servers. 125 123 126 == UPGRADE NOTICE == 124 127 -
image4io/trunk/image4io.php
r2313195 r2315019 8 8 Description: Speeds up the images' load time: image optimization, image CDN and image storage, all-in-one platform. To get started: activate the image4io plugin and then go to your Image4io Settings page to set up your credentials. 9 9 Author: image4io 10 Version: 0.3. 110 Version: 0.3.2 11 11 Author URI: https://image4.io 12 12 */ -
image4io/trunk/inc/Manager/MediaManager.php
r2313195 r2315019 370 370 } 371 371 372 $full_path = $attachment->guid; 372 //$full_path = $attachment->guid; 373 //$full_path = wp_get_original_image_url($attachment_id); 374 $full_path=wp_get_attachment_image_src($attachment_id,"attached-image")[0]; 375 373 376 if (empty($full_path)) { 374 377 return 'Unsupported attachment type!'; 375 378 } 379 376 380 $full_path = $this->update_urls_for_ssl($full_path); 377 381 -
image4io/trunk/package-lock.json
r2313195 r2315019 1 1 { 2 2 "name": "image4io", 3 "version": "0.3. 1",3 "version": "0.3.2", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
image4io/trunk/package.json
r2313195 r2315019 1 1 { 2 2 "name": "image4io", 3 "version": "0.3. 1",3 "version": "0.3.2", 4 4 "description": "image4io Wordpress Plugin. Speeds up the images' load time: image optimization, image CDN and image storage, all-in-one platform.", 5 5 "main": "index.js", -
image4io/trunk/readme.txt
r2313195 r2315019 121 121 * Fixed a bug when hosting server activated ssl. 122 122 123 = 0.3.2 = 124 * Fixed a bug when uploading images to image4io servers. 125 123 126 == UPGRADE NOTICE == 124 127
Note: See TracChangeset
for help on using the changeset viewer.