Plugin Directory

Changeset 3220012


Ignore:
Timestamp:
01/10/2025 06:10:27 AM (13 months ago)
Author:
soft8soft
Message:

New version 4.8.2

Location:
verge3d/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • verge3d/trunk/js/admin.js

    r3054421 r3220012  
    5959    for (let i = 0; i < input.files.length; i++) {
    6060        const file = input.files[i];
    61         const path = file.webkitRelativePath || file.name;
     61        const name = file.name;
     62        const path = file.webkitRelativePath;
    6263        const ext = path.split('.').pop();
    6364
    64         // prevent upload of some files
    65         if (V3D_IGNORE_EXT.includes(ext) || path.indexOf('v3d_app_data') > -1) {
     65        // prevent upload of some files (such as .DS_Store)
     66        if (V3D_IGNORE_EXT.includes(ext) || path.includes('v3d_app_data') || name.startsWith('.')) {
    6667            updateProgress();
    6768            continue;
  • verge3d/trunk/readme.txt

    r3219417 r3220012  
    6868
    6969== Changelog ==
     70
     71= 4.8.2 =
     72* Fixed app uploading error on macOS and Linux.
    7073
    7174= 4.8.1 =
  • verge3d/trunk/verge3d.php

    r3219417 r3220012  
    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: 4.8.1
     6Version: 4.8.2
    77Author: Soft8Soft LLC
    88Author URI: https://www.soft8soft.com
Note: See TracChangeset for help on using the changeset viewer.