Changeset 2692362
- Timestamp:
- 03/11/2022 08:44:49 AM (4 years ago)
- Location:
- svgator
- Files:
-
- 51 added
- 3 edited
-
tags/1.2.3 (added)
-
tags/1.2.3/admin (added)
-
tags/1.2.3/admin/css (added)
-
tags/1.2.3/admin/css/loader.svg (added)
-
tags/1.2.3/admin/css/svgator.css (added)
-
tags/1.2.3/admin/imgs (added)
-
tags/1.2.3/admin/imgs/import.svg (added)
-
tags/1.2.3/admin/imgs/loader.svg (added)
-
tags/1.2.3/admin/imgs/logo.svg (added)
-
tags/1.2.3/admin/imgs/logout.svg (added)
-
tags/1.2.3/admin/imgs/magnifier.svg (added)
-
tags/1.2.3/admin/js (added)
-
tags/1.2.3/admin/js/WP_SVGatorBlock.js (added)
-
tags/1.2.3/admin/js/WP_SVGatorMedia.js (added)
-
tags/1.2.3/admin/js/WP_SVGatorMenu.js (added)
-
tags/1.2.3/admin/js/WP_SVGatorWidget.js (added)
-
tags/1.2.3/admin/projects.php (added)
-
tags/1.2.3/admin/snippets (added)
-
tags/1.2.3/admin/snippets/empty-keys.php (added)
-
tags/1.2.3/admin/snippets/projects.php (added)
-
tags/1.2.3/animated-logo.svg (added)
-
tags/1.2.3/includes (added)
-
tags/1.2.3/includes/autoload.php (added)
-
tags/1.2.3/includes/class (added)
-
tags/1.2.3/includes/class/WP_SVGator (added)
-
tags/1.2.3/includes/class/WP_SVGator/Block.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Custom_Media.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Deactivator.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Main.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Media.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Menu.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Svg_Support.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/View.php (added)
-
tags/1.2.3/includes/class/WP_SVGator/Widget_Media_SVGator.php (added)
-
tags/1.2.3/index.php (added)
-
tags/1.2.3/license.txt (added)
-
tags/1.2.3/readme.txt (added)
-
tags/1.2.3/screenshot-1.png (added)
-
tags/1.2.3/sdk (added)
-
tags/1.2.3/sdk/README.md (added)
-
tags/1.2.3/sdk/autoload.php (added)
-
tags/1.2.3/sdk/class (added)
-
tags/1.2.3/sdk/class/SVGatorSDK (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/ExportException.php (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Main.php (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Model (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Model/Project.php (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Projects.php (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Request.php (added)
-
tags/1.2.3/sdk/class/SVGatorSDK/Response.php (added)
-
tags/1.2.3/svgator.php (added)
-
trunk/admin/js/WP_SVGatorMenu.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/svgator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
svgator/trunk/admin/js/WP_SVGatorMenu.js
r2555566 r2692362 244 244 }); 245 245 }).catch(function(err) { 246 reject(err.msg.toString()); 246 let eMsg = 'Failed to connect to SVGator.'; 247 if (err) { 248 if (err.msg) { 249 if (typeof err.msg === 'string') { 250 eMsg = err.msg.toString(); 251 } else { 252 try { 253 eMsg = JSON.stringify(err.msg); 254 } catch(e) { 255 if (err.msg.toString) { 256 eMsg = err.msg.toString(); 257 } 258 } 259 } 260 } 261 262 if (err.code) { 263 eMsg += ' (' + err.code + ')'; 264 } 265 } 266 267 reject(eMsg); 247 268 }); 248 269 }); -
svgator/trunk/readme.txt
r2617013 r2692362 5 5 Tags: svg, vector image 6 6 Requires at least: 5.0 7 Tested up to: 5. 78 Stable tag: 1.2. 27 Tested up to: 5.9.1 8 Stable tag: 1.2.3 9 9 10 10 The easiest way to add SVG animations to your website right from your SVGator account. … … 79 79 == Changelog == 80 80 81 = 1.2.3 = 82 * Error handling updated 83 81 84 = 1.2.2 = 82 85 * SVGator SDK updated -
svgator/trunk/svgator.php
r2617013 r2692362 4 4 * Plugin URI: https://www.svgator.com/help/getting-started/how-to-add-svg-to-wordpress 5 5 * Description: Import your animated SVGs from SVGator.com 6 * Version: 1.2. 26 * Version: 1.2.3 7 7 * Author: SVGator 8 8 * Author URI: https://www.svgator.com … … 34 34 } 35 35 36 define('WP_SVGATOR_VERSION', '1.2. 0');36 define('WP_SVGATOR_VERSION', '1.2.3'); 37 37 define('WP_SVGATOR_PLUGIN_DIR', plugin_dir_path(__FILE__)); 38 38 define('WP_SVGATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.