Plugin Directory

Changeset 3393187


Ignore:
Timestamp:
11/10/2025 08:03:59 PM (5 months ago)
Author:
nko
Message:

Update to version 3.4.1 from GitHub

Location:
visual-portfolio
Files:
10 edited
1 copied

Legend:

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

    r3390302 r3393187  
    22
    33All notable changes to this project will be documented in this file.
     4
     5= 3.4.1 - Nov 11, 2025 =
     6
     7* fixed sticky posts appearing in Manual Selection posts source
     8* **Pro:**
     9* fixed option Ignore Sticky Posts incorrectly change output for Current Query and Custom Query posts sources
     10* fixed option Ignore Sticky Posts appear when Manual Selection posts source selected
    411
    512= 3.4.0 - Nov 5, 2025 =
  • visual-portfolio/tags/3.4.1/class-visual-portfolio.php

    r3390302 r3393187  
    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.4.0
     5 * Version:      3.4.1
    66 * Plugin URI:   https://www.visualportfolio.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
    77 * Author:       Visual Portfolio Team
     
    1919
    2020if ( ! defined( 'VISUAL_PORTFOLIO_VERSION' ) ) {
    21     define( 'VISUAL_PORTFOLIO_VERSION', '3.4.0' );
     21    define( 'VISUAL_PORTFOLIO_VERSION', '3.4.1' );
    2222}
    2323
  • visual-portfolio/tags/3.4.1/classes/class-get-portfolio.php

    r3390302 r3393187  
    15721572                        $query_opts['post__in'] = $options['posts_ids'];
    15731573                    }
     1574
     1575                    // Ignore sticky posts by default for manual selection.
     1576                    $query_opts['ignore_sticky_posts'] = true;
    15741577                } elseif ( 'custom_query' === $options['posts_source'] ) { // Custom Query.
    15751578                    $query_opts['post_type'] = 'any';
  • visual-portfolio/tags/3.4.1/languages/visual-portfolio.pot

    r3390302 r3393187  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Visual Portfolio, Posts & Image Gallery 3.4.0\n"
     5"Project-Id-Version: Visual Portfolio, Posts & Image Gallery 3.4.1\n"
    66"Report-Msgid-Bugs-To: https://github.com/nk-crew/visual-portfolio/issues\n"
    77"Last-Translator: Visual Portfolio\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-05T10:19:44+00:00\n"
     12"POT-Creation-Date: 2025-11-10T20:02:21+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    15041504msgstr ""
    15051505
    1506 #: classes/class-get-portfolio.php:2101
     1506#: classes/class-get-portfolio.php:2104
    15071507#: gutenberg/blocks/sort/index.php:58
    15081508#: gutenberg/blocks/sort/edit.js:13
     
    15101510msgstr ""
    15111511
    1512 #: classes/class-get-portfolio.php:2102
     1512#: classes/class-get-portfolio.php:2105
    15131513#: gutenberg/blocks/sort/index.php:59
    15141514msgid "Sort by date (newest)"
    15151515msgstr ""
    15161516
    1517 #: classes/class-get-portfolio.php:2103
     1517#: classes/class-get-portfolio.php:2106
    15181518#: gutenberg/blocks/sort/index.php:60
    15191519msgid "Sort by date (oldest)"
    15201520msgstr ""
    15211521
    1522 #: classes/class-get-portfolio.php:2104
     1522#: classes/class-get-portfolio.php:2107
    15231523#: gutenberg/blocks/sort/index.php:61
    15241524msgid "Sort by title (A-Z)"
    15251525msgstr ""
    15261526
    1527 #: classes/class-get-portfolio.php:2105
     1527#: classes/class-get-portfolio.php:2108
    15281528#: gutenberg/blocks/sort/index.php:62
    15291529msgid "Sort by title (Z-A)"
     
    15311531
    15321532#. translators: %s - published in human format.
    1533 #: classes/class-get-portfolio.php:2231
     1533#: classes/class-get-portfolio.php:2234
    15341534msgid "%s ago"
    15351535msgstr ""
  • visual-portfolio/tags/3.4.1/readme.txt

    r3390302 r3393187  
    77* Tested up to: 6.8
    88* Requires PHP: 7.2
    9 * Stable tag: 3.4.0
     9* Stable tag: 3.4.1
    1010* License: GPLv2 or later
    1111* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>
     
    324324
    325325## Changelog ##
     326
     327= 3.4.1 - Nov 11, 2025 =
     328
     329* fixed sticky posts appearing in Manual Selection posts source
     330* **Pro:**
     331* fixed option Ignore Sticky Posts incorrectly change output for Current Query and Custom Query posts sources
     332* fixed option Ignore Sticky Posts appear when Manual Selection posts source selected
    326333
    327334= 3.4.0 - Nov 5, 2025 =
  • visual-portfolio/trunk/CHANGELOG.md

    r3390302 r3393187  
    22
    33All notable changes to this project will be documented in this file.
     4
     5= 3.4.1 - Nov 11, 2025 =
     6
     7* fixed sticky posts appearing in Manual Selection posts source
     8* **Pro:**
     9* fixed option Ignore Sticky Posts incorrectly change output for Current Query and Custom Query posts sources
     10* fixed option Ignore Sticky Posts appear when Manual Selection posts source selected
    411
    512= 3.4.0 - Nov 5, 2025 =
  • visual-portfolio/trunk/class-visual-portfolio.php

    r3390302 r3393187  
    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.4.0
     5 * Version:      3.4.1
    66 * Plugin URI:   https://www.visualportfolio.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
    77 * Author:       Visual Portfolio Team
     
    1919
    2020if ( ! defined( 'VISUAL_PORTFOLIO_VERSION' ) ) {
    21     define( 'VISUAL_PORTFOLIO_VERSION', '3.4.0' );
     21    define( 'VISUAL_PORTFOLIO_VERSION', '3.4.1' );
    2222}
    2323
  • visual-portfolio/trunk/classes/class-get-portfolio.php

    r3390302 r3393187  
    15721572                        $query_opts['post__in'] = $options['posts_ids'];
    15731573                    }
     1574
     1575                    // Ignore sticky posts by default for manual selection.
     1576                    $query_opts['ignore_sticky_posts'] = true;
    15741577                } elseif ( 'custom_query' === $options['posts_source'] ) { // Custom Query.
    15751578                    $query_opts['post_type'] = 'any';
  • visual-portfolio/trunk/languages/visual-portfolio.pot

    r3390302 r3393187  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Visual Portfolio, Posts & Image Gallery 3.4.0\n"
     5"Project-Id-Version: Visual Portfolio, Posts & Image Gallery 3.4.1\n"
    66"Report-Msgid-Bugs-To: https://github.com/nk-crew/visual-portfolio/issues\n"
    77"Last-Translator: Visual Portfolio\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-11-05T10:19:44+00:00\n"
     12"POT-Creation-Date: 2025-11-10T20:02:21+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    15041504msgstr ""
    15051505
    1506 #: classes/class-get-portfolio.php:2101
     1506#: classes/class-get-portfolio.php:2104
    15071507#: gutenberg/blocks/sort/index.php:58
    15081508#: gutenberg/blocks/sort/edit.js:13
     
    15101510msgstr ""
    15111511
    1512 #: classes/class-get-portfolio.php:2102
     1512#: classes/class-get-portfolio.php:2105
    15131513#: gutenberg/blocks/sort/index.php:59
    15141514msgid "Sort by date (newest)"
    15151515msgstr ""
    15161516
    1517 #: classes/class-get-portfolio.php:2103
     1517#: classes/class-get-portfolio.php:2106
    15181518#: gutenberg/blocks/sort/index.php:60
    15191519msgid "Sort by date (oldest)"
    15201520msgstr ""
    15211521
    1522 #: classes/class-get-portfolio.php:2104
     1522#: classes/class-get-portfolio.php:2107
    15231523#: gutenberg/blocks/sort/index.php:61
    15241524msgid "Sort by title (A-Z)"
    15251525msgstr ""
    15261526
    1527 #: classes/class-get-portfolio.php:2105
     1527#: classes/class-get-portfolio.php:2108
    15281528#: gutenberg/blocks/sort/index.php:62
    15291529msgid "Sort by title (Z-A)"
     
    15311531
    15321532#. translators: %s - published in human format.
    1533 #: classes/class-get-portfolio.php:2231
     1533#: classes/class-get-portfolio.php:2234
    15341534msgid "%s ago"
    15351535msgstr ""
  • visual-portfolio/trunk/readme.txt

    r3390302 r3393187  
    77* Tested up to: 6.8
    88* Requires PHP: 7.2
    9 * Stable tag: 3.4.0
     9* Stable tag: 3.4.1
    1010* License: GPLv2 or later
    1111* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>
     
    324324
    325325## Changelog ##
     326
     327= 3.4.1 - Nov 11, 2025 =
     328
     329* fixed sticky posts appearing in Manual Selection posts source
     330* **Pro:**
     331* fixed option Ignore Sticky Posts incorrectly change output for Current Query and Custom Query posts sources
     332* fixed option Ignore Sticky Posts appear when Manual Selection posts source selected
    326333
    327334= 3.4.0 - Nov 5, 2025 =
Note: See TracChangeset for help on using the changeset viewer.