Plugin Directory

Changeset 3087926

Timestamp:
05/16/2024 05:41:38 PM (3 months ago)
Author:
nko
Message:

Update to version 3.3.6 from GitHub

Location:
visual-portfolio
Files:
28 edited
1 copied

Legend:

Unmodified
Added
Removed
  • visual-portfolio/tags/3.3.6/CHANGELOG.md

    r3087172 r3087926  
    44
    55> v3 Migration Guide – <https://visualportfolio.co/docs/troubleshooting/migration-to-v3/>
     6
     7
     8
     9
     10
     11
     12
     13
     14
     15
    616
    717= 3.3.5 - May 15, 2024 =
     
    2535* improved image gallery sort code - images with empty field will be always placed after items with non-empty field
    2636* fixed the behavior of the "All" filters link when the portfolio archive page set as the home page
    27 <br />
    2837
    2938* **Pro:**
     
    4655* removed stagger delay from Masonry, Tiles and Grid layouts because it is not working properly in large galleries
    4756* minor improvements
    48 <br />
    4957
    5058* **Pro:**
     
    6068* fixed Portfolio menu item name change when on Taxonomy archive page
    6169* fixed duplicating Portfolio page after WordPress XML file import
    62 <br />
    6370
    6471* **Pro:**
     
    105112* changed lazy loading styles to use modern :has() CSS (with fallback for old browsers)
    106113* removed jQuery usage from lazy loading script
    107 <br />
    108114
    109115* **Pro:**
  • visual-portfolio/tags/3.3.6/assets/js/plugin-fj-gallery.js

    r3001683 r3087926  
    2828                                        ? parseFloat(
    2929                                                self.options.itemsGapVertical
    30                                           ) || 0
     30                                        ) || 0
    3131                                        : parseFloat(self.options.itemsGap) ||
    32                                           0,
     32                                        0,
    3333                            },
    3434                            rowHeight:
     
    4949                            imageSelector: '.vp-portfolio__item-img img',
    5050                            transitionDuration: '0.3s',
    51                       };
     51                    };
    5252
    5353            if (initOptions.maxRowsCount === 0) {
  • visual-portfolio/tags/3.3.6/assets/js/plugin-isotope.js

    r3050063 r3087926  
    4545                                    self.options.masonryHorizontalOrder ===
    4646                                    'true',
    47                           }
     47                        }
    4848                        : {},
    4949                transitionDuration: '0.3s',
  • visual-portfolio/tags/3.3.6/assets/js/plugin-photoswipe.js

    r3050063 r3087926  
    157157                                },
    158158                                msrc: item.srcMedium,
    159                           }
     159                        }
    160160                        : {}),
    161161                });
  • visual-portfolio/tags/3.3.6/class-visual-portfolio.php

    r3087172 r3087926  
    33 * Plugin Name:  Visual Portfolio, Posts & Image Gallery
    44 * Description:  Modern gallery and portfolio plugin with advanced layouts editor. Clean and powerful gallery styles with enormous settings in the Gutenberg block.
    5  * Version:      3.3.5
     5 * Version:      3.3.
    66 * Author:       Visual Portfolio Team
    77 * Author URI:   https://visualportfolio.co/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
     
    1818
    1919if ( ! defined( 'VISUAL_PORTFOLIO_VERSION' ) ) {
    20     define( 'VISUAL_PORTFOLIO_VERSION', '3.3.5' );
     20    define( 'VISUAL_PORTFOLIO_VERSION', '3.3.' );
    2121}
    2222
  • visual-portfolio/tags/3.3.6/classes/class-admin.php

    r3079290 r3087926  
    17741774                'default'       => 'default',
    17751775                'options'       => array(
    1776                     'default'           => esc_html__( 'Default', 'visual-portfolio' ),
     1776                    'default'           => esc_html__( '', 'visual-portfolio' ),
    17771777                    'title'             => esc_html__( 'Item Title', 'visual-portfolio' ),
    17781778                    'description'       => esc_html__( 'Item Description', 'visual-portfolio' ),
  • visual-portfolio/tags/3.3.6/classes/class-get-portfolio.php

    r3087172 r3087926  
    12051205        }
    12061206
     1207
     1208
     1209
     1210
     1211
     1212
     1213
    12071214        usort(
    12081215            $array,
     
    14431450                        }
    14441451
    1445                         if ( 'desc' === $custom_order_direction ) {
    1446                             $images = array_reverse( $images );
    1447                         }
    1448 
    14491452                        break;
     1453
     1454
     1455
     1456
     1457
     1458
     1459
     1460
     1461
     1462
    14501463                }
    14511464            }
  • visual-portfolio/tags/3.3.6/gutenberg/block-saved/edit.js

    r3001683 r3087926  
    3939                const val = portfolioLayouts[key];
    4040
    41                 portfolioLayoutsSelect[
    42                     ` ${val.id}`
    43                 ] = `${val.title} (#${val.id})`;
     41                portfolioLayoutsSelect[` ${val.id}`] =
     42                    `${val.title} (#${val.id})`;
    4443
    4544                if (id && parseInt(id, 10) === val.id) {
  • visual-portfolio/tags/3.3.6/gutenberg/block/variations.js

    r3001683 r3087926  
    1717                    foreground: '#2540CC',
    1818                    src: <RawHTML>{data.icon}</RawHTML>,
    19               }
     19            }
    2020            : null,
    2121    };
  • visual-portfolio/tags/3.3.6/gutenberg/components/classes-tree/index.js

    r3001683 r3087926  
    243243                            }
    244244                            return null;
    245                       })
     245                    })
    246246                    : ''}
    247247            </ul>
  • visual-portfolio/tags/3.3.6/gutenberg/components/elements-selector/index.js

    r3001683 r3087926  
    354354                                    parentProps={this.props}
    355355                                />
    356                           ))
     356                        ))
    357357                        : null}
    358358                    {Object.keys(availableElements).length ? (
  • visual-portfolio/tags/3.3.6/gutenberg/components/gallery-control/index.js

    r3050063 r3087926  
    276276                                    ? getHumanFileSize(
    277277                                            imageData.media_details.filesize
    278                                       )
     278                                    )
    279279                                    : '-'}
    280280                                {imageData?.media_details?.width ? (
     
    754754
    755755    // Automatically open images selector when first time select Images in Setup Wizard.
    756     const [isOpenedInSetupWizard, setOpenInSetupWizard] = useState(
    757         !isSetupWizard
    758     );
     756    const [isOpenedInSetupWizard, setOpenInSetupWizard] =
     757        useState(!isSetupWizard);
    759758    const [showingItems, setShowingItems] = useState(ITEMS_COUNT_DEFAULT);
    760759    const [filterCategory, setFilterCategory] = useState('');
  • visual-portfolio/tags/3.3.6/gutenberg/components/setup-wizard/steps-wizard.js

    r3001683 r3087926  
    7575                    ? `vpf-component-steps-wizard-animate-${
    7676                            newStep > step ? 'left' : 'right'
    77                       }`
     77                    }`
    7878                    : false
    7979            )}
  • visual-portfolio/tags/3.3.6/readme.txt

    r3087172 r3087926  
    77* Tested up to: 6.5
    88* Requires PHP: 7.2
    9 * Stable tag: 3.3.5
     9* Stable tag: 3.3.
    1010* License: GPLv2 or later
    1111* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>
     
    328328> v3 Migration Guide – <https://visualportfolio.co/docs/troubleshooting/migration-to-v3/>
    329329
     330
     331
     332
     333
     334
     335
     336
     337
     338
     339
    330340= 3.3.5 - May 15, 2024 =
    331341
     
    348358* improved image gallery sort code - images with empty field will be always placed after items with non-empty field
    349359* fixed the behavior of the "All" filters link when the portfolio archive page set as the home page
    350 <br />
    351360
    352361* **Pro:**
     
    369378* removed stagger delay from Masonry, Tiles and Grid layouts because it is not working properly in large galleries
    370379* minor improvements
    371 <br />
    372380
    373381* **Pro:**
     
    383391* fixed Portfolio menu item name change when on Taxonomy archive page
    384392* fixed duplicating Portfolio page after WordPress XML file import
    385 <br />
    386393
    387394* **Pro:**
     
    428435* changed lazy loading styles to use modern :has() CSS (with fallback for old browsers)
    429436* removed jQuery usage from lazy loading script
    430 <br />
    431437
    432438* **Pro:**
  • visual-portfolio/trunk/CHANGELOG.md

    r3087172 r3087926  
    44
    55> v3 Migration Guide – <https://visualportfolio.co/docs/troubleshooting/migration-to-v3/>
     6
     7
     8
     9
     10
     11
     12
     13
     14
     15
    616
    717= 3.3.5 - May 15, 2024 =
     
    2535* improved image gallery sort code - images with empty field will be always placed after items with non-empty field
    2636* fixed the behavior of the "All" filters link when the portfolio archive page set as the home page
    27 <br />
    2837
    2938* **Pro:**
     
    4655* removed stagger delay from Masonry, Tiles and Grid layouts because it is not working properly in large galleries
    4756* minor improvements
    48 <br />
    4957
    5058* **Pro:**
     
    6068* fixed Portfolio menu item name change when on Taxonomy archive page
    6169* fixed duplicating Portfolio page after WordPress XML file import
    62 <br />
    6370
    6471* **Pro:**
     
    105112* changed lazy loading styles to use modern :has() CSS (with fallback for old browsers)
    106113* removed jQuery usage from lazy loading script
    107 <br />
    108114
    109115* **Pro:**
  • visual-portfolio/trunk/assets/js/plugin-fj-gallery.js

    r3001683 r3087926  
    2828                                        ? parseFloat(
    2929                                                self.options.itemsGapVertical
    30                                           ) || 0
     30                                        ) || 0
    3131                                        : parseFloat(self.options.itemsGap) ||
    32                                           0,
     32                                        0,
    3333                            },
    3434                            rowHeight:
     
    4949                            imageSelector: '.vp-portfolio__item-img img',
    5050                            transitionDuration: '0.3s',
    51                       };
     51                    };
    5252
    5353            if (initOptions.maxRowsCount === 0) {
  • visual-portfolio/trunk/assets/js/plugin-isotope.js

    r3050063 r3087926  
    4545                                    self.options.masonryHorizontalOrder ===
    4646                                    'true',
    47                           }
     47                        }
    4848                        : {},
    4949                transitionDuration: '0.3s',
  • visual-portfolio/trunk/assets/js/plugin-photoswipe.js

    r3050063 r3087926  
    157157                                },
    158158                                msrc: item.srcMedium,
    159                           }
     159                        }
    160160                        : {}),
    161161                });
  • visual-portfolio/trunk/class-visual-portfolio.php

    r3087172 r3087926  
    33 * Plugin Name:  Visual Portfolio, Posts & Image Gallery
    44 * Description:  Modern gallery and portfolio plugin with advanced layouts editor. Clean and powerful gallery styles with enormous settings in the Gutenberg block.
    5  * Version:      3.3.5
     5 * Version:      3.3.
    66 * Author:       Visual Portfolio Team
    77 * Author URI:   https://visualportfolio.co/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
     
    1818
    1919if ( ! defined( 'VISUAL_PORTFOLIO_VERSION' ) ) {
    20     define( 'VISUAL_PORTFOLIO_VERSION', '3.3.5' );
     20    define( 'VISUAL_PORTFOLIO_VERSION', '3.3.' );
    2121}
    2222
  • visual-portfolio/trunk/classes/class-admin.php

    r3079290 r3087926  
    17741774                'default'       => 'default',
    17751775                'options'       => array(
    1776                     'default'           => esc_html__( 'Default', 'visual-portfolio' ),
     1776                    'default'           => esc_html__( '', 'visual-portfolio' ),
    17771777                    'title'             => esc_html__( 'Item Title', 'visual-portfolio' ),
    17781778                    'description'       => esc_html__( 'Item Description', 'visual-portfolio' ),
  • visual-portfolio/trunk/classes/class-get-portfolio.php

    r3087172 r3087926  
    12051205        }
    12061206
     1207
     1208
     1209
     1210
     1211
     1212
     1213
    12071214        usort(
    12081215            $array,
     
    14431450                        }
    14441451
    1445                         if ( 'desc' === $custom_order_direction ) {
    1446                             $images = array_reverse( $images );
    1447                         }
    1448 
    14491452                        break;
     1453
     1454
     1455
     1456
     1457
     1458
     1459
     1460
     1461
     1462
    14501463                }
    14511464            }
  • visual-portfolio/trunk/gutenberg/block-saved/edit.js

    r3001683 r3087926  
    3939                const val = portfolioLayouts[key];
    4040
    41                 portfolioLayoutsSelect[
    42                     ` ${val.id}`
    43                 ] = `${val.title} (#${val.id})`;
     41                portfolioLayoutsSelect[` ${val.id}`] =
     42                    `${val.title} (#${val.id})`;
    4443
    4544                if (id && parseInt(id, 10) === val.id) {
  • visual-portfolio/trunk/gutenberg/block/variations.js

    r3001683 r3087926  
    1717                    foreground: '#2540CC',
    1818                    src: <RawHTML>{data.icon}</RawHTML>,
    19               }
     19            }
    2020            : null,
    2121    };
  • visual-portfolio/trunk/gutenberg/components/classes-tree/index.js

    r3001683 r3087926  
    243243                            }
    244244                            return null;
    245                       })
     245                    })
    246246                    : ''}
    247247            </ul>
  • visual-portfolio/trunk/gutenberg/components/elements-selector/index.js

    r3001683 r3087926  
    354354                                    parentProps={this.props}
    355355                                />
    356                           ))
     356                        ))
    357357                        : null}
    358358                    {Object.keys(availableElements).length ? (
  • visual-portfolio/trunk/gutenberg/components/gallery-control/index.js

    r3050063 r3087926  
    276276                                    ? getHumanFileSize(
    277277                                            imageData.media_details.filesize
    278                                       )
     278                                    )
    279279                                    : '-'}
    280280                                {imageData?.media_details?.width ? (
     
    754754
    755755    // Automatically open images selector when first time select Images in Setup Wizard.
    756     const [isOpenedInSetupWizard, setOpenInSetupWizard] = useState(
    757         !isSetupWizard
    758     );
     756    const [isOpenedInSetupWizard, setOpenInSetupWizard] =
     757        useState(!isSetupWizard);
    759758    const [showingItems, setShowingItems] = useState(ITEMS_COUNT_DEFAULT);
    760759    const [filterCategory, setFilterCategory] = useState('');
  • visual-portfolio/trunk/gutenberg/components/setup-wizard/steps-wizard.js

    r3001683 r3087926  
    7575                    ? `vpf-component-steps-wizard-animate-${
    7676                            newStep > step ? 'left' : 'right'
    77                       }`
     77                    }`
    7878                    : false
    7979            )}
  • visual-portfolio/trunk/readme.txt

    r3087172 r3087926  
    77* Tested up to: 6.5
    88* Requires PHP: 7.2
    9 * Stable tag: 3.3.5
     9* Stable tag: 3.3.
    1010* License: GPLv2 or later
    1111* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>
     
    328328> v3 Migration Guide – <https://visualportfolio.co/docs/troubleshooting/migration-to-v3/>
    329329
     330
     331
     332
     333
     334
     335
     336
     337
     338
     339
    330340= 3.3.5 - May 15, 2024 =
    331341
     
    348358* improved image gallery sort code - images with empty field will be always placed after items with non-empty field
    349359* fixed the behavior of the "All" filters link when the portfolio archive page set as the home page
    350 <br />
    351360
    352361* **Pro:**
     
    369378* removed stagger delay from Masonry, Tiles and Grid layouts because it is not working properly in large galleries
    370379* minor improvements
    371 <br />
    372380
    373381* **Pro:**
     
    383391* fixed Portfolio menu item name change when on Taxonomy archive page
    384392* fixed duplicating Portfolio page after WordPress XML file import
    385 <br />
    386393
    387394* **Pro:**
     
    428435* changed lazy loading styles to use modern :has() CSS (with fallback for old browsers)
    429436* removed jQuery usage from lazy loading script
    430 <br />
    431437
    432438* **Pro:**
Note: See TracChangeset for help on using the changeset viewer.