Plugin Directory

Changeset 3450114


Ignore:
Timestamp:
01/30/2026 03:34:27 AM (2 months ago)
Author:
optimal360
Message:

Update to 1.1.0, add woocommerce, divi, elementor, shortcode, update gutenberg.

Location:
optimal-360
Files:
38 added
2 edited

Legend:

Unmodified
Added
Removed
  • optimal-360/trunk/assets/block-editor.js

    r3355667 r3450114  
    4747            var width = props.attributes.width || '100';
    4848            var widthUnit = props.attributes.widthUnit || '%';
     49            var [manualUuid, setManualUuid] = useState(selectedProject ? selectedProject.projectuuid : '');
    4950           
    5051            function openModal() {
     
    192193
    193194            var inspectorControls = el(InspectorControls, { key: 'inspector' },
    194                 el(PanelBody, { 
     195                el(PanelBody, {
    195196                    title: __('Dimensions'),
    196197                    initialOpen: true
     
    225226                        })
    226227                    )
     228                ),
     229                el(PanelBody, {
     230                    title: __('Manual Input'),
     231                    initialOpen: false
     232                },
     233                    el(TextControl, {
     234                        label: __('Project UUID'),
     235                        value: manualUuid,
     236                        onChange: setManualUuid,
     237                        placeholder: 'Paste UUID here'
     238                    }),
     239                    el(Button, {
     240                        isPrimary: true,
     241                        onClick: function() {
     242                            var uuid = sanitizeUUID(manualUuid);
     243                            if (uuid) {
     244                                props.setAttributes({
     245                                    selectedProject: {
     246                                        projectuuid: uuid,
     247                                        friendlyname: 'Manual Entry',
     248                                        status: 'manual'
     249                                    }
     250                                });
     251                                setManualUuid('');
     252                            } else {
     253                                alert('Invalid UUID format');
     254                            }
     255                        }
     256                    }, __('Apply UUID'))
    227257                )
    228258            );
  • optimal-360/trunk/readme.txt

    r3371943 r3450114  
    1 === Optimal 360 | 3D Scanner & 3D Viewer ===
     1=== Optimal 360 | 3D Scanner & Viewer ===
    22Contributors: optimal360
    33Author: Optimal360
    44Author URI: https://optml360.com
    55Tags: 360 viewer, 3D viewer, AI, gutenberg, 3D visualization, 3D scanner
    6 Requires at least: 5.5
     6Requires at least: 5.0
    77Tested up to: 6.8
    8 Stable tag: 1.0.0
     8Stable tag: 1.1.0
    99Requires PHP: 7.0
    1010License: GPLv3
    1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
    12 Easily create 3D 360 product views and display them on your pages interactively. No 3D Modeling required. For Gutenberg, Elementor, Divi, WooCommerce
     12Easily create 3D 360 product views and display them on your pages interactively. No 3D Modeling required. For WooCommerce, Gutenberg, Elementor, Divi
    1313
    1414== Description ==
    1515
    16 ### Optimal 360° 3D Scanner & 3D Viewer for Wordpress
     16### Optimal 360° 3D Scanner & 3D Viewer for Wordpress & WooCommerce
    1717
    18 Showcase your products with interactive 3D spins and 360° views directly inside WordPress. No 3D modeling skills are required, just use your phone camera. Simply upload a short video circling your product, and the plugin generates a responsive, mobile-optimized 3D model hologram and viewer that works on any landing page, product page, or post.
     18Showcase your products with interactive photorealistic 3D views and smooth 360° spins directly inside WordPress. No 3D modeling skills are required, just use your phone camera. Simply upload a short video circling your product, and the plugin generates a responsive, mobile-optimized 3D model hologram and viewer that works on any landing page, product page, or post.
    1919
    20 [Learn Mode](https://optml360.com) | [Sign Up](https://app.optml360.com) | [Demo](https://app.optml360.com)
     20[Learn Mode](https://optml360.com) | [Demo](https://app.optml360.com)
     21
     22[Android App](https://play.google.com/store/apps/details?id=com.optml.optimal360) | [iPhone App](https://apps.apple.com/us/app/optimal-360-3d-photography/id6753699164) | [Web Sign Up](https://app.optml360.com)
     23
    2124
    2225= Increase Engagement & Boost Sales =
     
    2932* Mobile Optimized 360 Viewer
    3033* Advanced Professional Editing Features
    31 * Supports Wordpress Block Editor (Gutenberg). WooCommerce, Shortcode, Elementor and Divi Coming Soon
     34* Supports Wordpress Block Editor (Gutenberg).
     35* Supports WooCommerce Products
     36* Supports Elementor and Divi Editors.  Plus Shortcodes.
    3237* AI Enhanced Workflow Takes 15 Minutes
    3338* Free Scans Available
Note: See TracChangeset for help on using the changeset viewer.