Changeset 1953799
- Timestamp:
- 10/09/2018 09:12:53 AM (7 years ago)
- Location:
- verge3d/trunk
- Files:
-
- 3 edited
-
app.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
verge3d.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
verge3d/trunk/app.php
r1943524 r1953799 528 528 return ''; 529 529 530 $html = array_search('index.html', $htmls);531 532 if ( empty($html))530 $html_idx = array_search('index.html', $htmls); 531 532 if ($html_idx === false) 533 533 $html = $htmls[0]; 534 else 535 $html = $htmls[$html_idx]; 534 536 535 537 $url = v3d_get_upload_url().$app_id.'/'.$html; -
verge3d/trunk/readme.txt
r1943524 r1953799 5 5 Tested up to: 4.9.5 6 6 Requires PHP: 5.6 7 Stable tag: 2. 7.17 Stable tag: 2.8.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 18 18 == Installation == 19 19 20 1. Install and activate the plugin via the \"Plugins\" menu in WordPress admin interface.20 1. Install and activate the plugin via the "Plugins" menu in WordPress admin interface. 21 21 2. Verge3D menu should appear in the admin panel. 22 22 3. Use the Verge3D->Settings submenu to configure the plugin. … … 33 33 == Changelog == 34 34 35 = 2.8 = 36 * Fixed issue in applications with multiple HTML files 37 35 38 = 2.7.1 = 36 39 * Minor update, fixes possible security issues -
verge3d/trunk/verge3d.php
r1943524 r1953799 4 4 Plugin URI: https://www.soft8soft.com/verge3d 5 5 Description: Verge3D is the most artist-friendly toolkit for creating interactive web-based experiences. It can be used to create product configurators, 3D presentations, online stores, e-learning apps, 3D portfolios, browser games and more. 6 Version: 2. 7.16 Version: 2.8.0 7 7 Author: Soft8Soft LLC 8 8 Author URI: https://www.soft8soft.com … … 87 87 'view_item' => 'View Application', 88 88 ), 89 'public' => true,89 'public' => false, 90 90 'has_archive' => false, 91 91 'show_ui' => false, … … 104 104 'view_item' => 'View Order', 105 105 ), 106 'public' => true,106 'public' => false, 107 107 'has_archive' => false, 108 108 'show_ui' => false,
Note: See TracChangeset
for help on using the changeset viewer.