Plugin Directory

Changeset 1953799


Ignore:
Timestamp:
10/09/2018 09:12:53 AM (7 years ago)
Author:
soft8soft
Message:

Verge3D for WordPress 2.8.0 update
--this line, and those below, will be ignored--

M trunk/app.php
M trunk/readme.txt
M trunk/verge3d.php

Location:
verge3d/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • verge3d/trunk/app.php

    r1943524 r1953799  
    528528        return '';
    529529
    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)
    533533       $html = $htmls[0];
     534    else
     535       $html = $htmls[$html_idx];
    534536
    535537    $url = v3d_get_upload_url().$app_id.'/'.$html;
  • verge3d/trunk/readme.txt

    r1943524 r1953799  
    55Tested up to: 4.9.5
    66Requires PHP: 5.6
    7 Stable tag: 2.7.1
     7Stable tag: 2.8.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1818== Installation ==
    1919
    20 1. Install and activate the plugin via the \"Plugins\" menu in WordPress admin interface.
     201. Install and activate the plugin via the "Plugins" menu in WordPress admin interface.
    21212. Verge3D menu should appear in the admin panel.
    22223. Use the Verge3D->Settings submenu to configure the plugin.
     
    3333== Changelog ==
    3434
     35= 2.8 =
     36* Fixed issue in applications with multiple HTML files
     37
    3538= 2.7.1 =
    3639* Minor update, fixes possible security issues
  • verge3d/trunk/verge3d.php

    r1943524 r1953799  
    44Plugin URI: https://www.soft8soft.com/verge3d
    55Description: 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.1
     6Version: 2.8.0
    77Author: Soft8Soft LLC
    88Author URI: https://www.soft8soft.com
     
    8787                   'view_item'  => 'View Application',
    8888               ),
    89                'public'      => true,
     89               'public'      => false,
    9090               'has_archive' => false,
    9191               'show_ui' => false,
     
    104104                   'view_item'  => 'View Order',
    105105               ),
    106                'public'      => true,
     106               'public'      => false,
    107107               'has_archive' => false,
    108108               'show_ui' => false,
Note: See TracChangeset for help on using the changeset viewer.