Changeset 3220012
- Timestamp:
- 01/10/2025 06:10:27 AM (13 months ago)
- Location:
- verge3d/trunk
- Files:
-
- 3 edited
-
js/admin.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
verge3d.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
verge3d/trunk/js/admin.js
r3054421 r3220012 59 59 for (let i = 0; i < input.files.length; i++) { 60 60 const file = input.files[i]; 61 const path = file.webkitRelativePath || file.name; 61 const name = file.name; 62 const path = file.webkitRelativePath; 62 63 const ext = path.split('.').pop(); 63 64 64 // prevent upload of some files 65 if (V3D_IGNORE_EXT.includes(ext) || path.in dexOf('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('.')) { 66 67 updateProgress(); 67 68 continue; -
verge3d/trunk/readme.txt
r3219417 r3220012 68 68 69 69 == Changelog == 70 71 = 4.8.2 = 72 * Fixed app uploading error on macOS and Linux. 70 73 71 74 = 4.8.1 = -
verge3d/trunk/verge3d.php
r3219417 r3220012 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: 4.8. 16 Version: 4.8.2 7 7 Author: Soft8Soft LLC 8 8 Author URI: https://www.soft8soft.com
Note: See TracChangeset
for help on using the changeset viewer.