Plugin Directory

Changeset 2850685


Ignore:
Timestamp:
01/18/2023 06:20:41 PM (3 years ago)
Author:
photocrati
Message:

Released 3.33

Location:
nextgen-gallery/trunk
Files:
23 added
4 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • nextgen-gallery/trunk/changelog.txt

    r2847050 r2850685  
    11NextGEN Gallery
    22by Imagely
     3
     4= V3.33  - 01.18.2023 =
     5* Fixed:   FontAwesome icons were broken by 3.32 if not enqueued by another source.
    36
    47= V3.32  - 01.11.2023 =
  • nextgen-gallery/trunk/composer.lock

    r2847030 r2850685  
    116116        {
    117117            "name": "nikic/php-parser",
    118             "version": "v4.15.2",
     118            "version": "v4.15.3",
    119119            "source": {
    120120                "type": "git",
    121121                "url": "https://github.com/nikic/PHP-Parser.git",
    122                 "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
     122                "reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039"
    123123            },
    124124            "dist": {
    125125                "type": "zip",
    126                 "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
    127                 "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
     126                "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/570e980a201d8ed0236b0a62ddf2c9cbb2034039",
     127                "reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039",
    128128                "shasum": "",
    129129                "mirrors": [
     
    172172            "support": {
    173173                "issues": "https://github.com/nikic/PHP-Parser/issues",
    174                 "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
     174                "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.3"
    175175            },
    176             "time": "2022-11-12T15:38:23+00:00"
     176            "time": "2023-01-16T22:05:37+00:00"
    177177        }
    178178    ],
  • nextgen-gallery/trunk/nggallery.php

    r2847050 r2850685  
    55 * Plugin Name: NextGEN Gallery
    66 * Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 30 million downloads.
    7  * Version: 3.32
     7 * Version: 3.33
    88 * Author: Imagely
    99 * Plugin URI: https://www.imagely.com/wordpress-gallery-plugin/nextgen-gallery/
     
    684684        define('NGG_MODULE_URL', path_join(str_replace("\\", '/', NGG_PRODUCT_URL), 'photocrati_nextgen/modules'));
    685685        define('NGG_PLUGIN_STARTED_AT', microtime());
    686         define('NGG_PLUGIN_VERSION', '3.32');
     686        define('NGG_PLUGIN_VERSION', '3.33');
    687687
    688688        define(
  • nextgen-gallery/trunk/products/photocrati_nextgen/modules/nextgen_gallery_display/module.nextgen_gallery_display.php

    r2847030 r2850685  
    269269    static function enqueue_fontawesome()
    270270    {
    271         // The official plugin is active, we don't need to do anything outside of the wp-admin
     271        // The official plugin is active, we don't need to do anything outside the wp-admin
    272272        if (defined('FONT_AWESOME_OFFICIAL_LOADED') && !is_admin())
    273273            return;
     
    279279        wp_register_script(
    280280            'fontawesome_v4_shim',
    281             C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#v4-shims.min.js'),
     281            C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#fontawesome/js/v4-shims.min.js'),
    282282            [],
    283283            '5.3.1'
     
    285285        if (!wp_script_is('fontawesome', 'registered'))
    286286        {
    287             add_filter('script_loader_tag', 'M_Gallery_Display::fix_fontawesome_script_tag', 10, 2);
     287            // add_filter('script_loader_tag', 'M_Gallery_Display::fix_fontawesome_script_tag', 10, 2);
    288288            wp_enqueue_script(
    289289                'fontawesome',
    290                 C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#all.min.js'),
     290                C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#fontawesome/js/all.min.js'),
    291291                ['fontawesome_v4_shim'],
    292292                '5.3.1'
     
    298298            wp_enqueue_style(
    299299                'fontawesome_v4_shim_style',
    300                 C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#v4-shims.min.css')
     300                C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#fontawesome/css/v4-shims.min.css')
    301301            );
    302302            wp_enqueue_style(
    303303                'fontawesome',
    304                 C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#all.min.css')
     304                C_Router::get_instance()->get_static_url('photocrati-nextgen_gallery_display#fontawesome/css/all.min.css')
    305305            );
    306306        }
  • nextgen-gallery/trunk/readme.txt

    r2847050 r2850685  
    33Tags: wordpress gallery plugin, gallery, nextgen, nextgen gallery, photo gallery, image gallery, photography, slideshow, images, photo, photo album, watermark
    44Requires at least: 5.5.4
    5 Stable tag: 3.32
    6 Tested up to: 6.0.2
     5Stable tag: 3.33
     6Tested up to: 6.1.1
    77License: GPLv3
    88Requires PHP: 5.6
     
    179179
    180180== Changelog ==
     181
     182= V3.33  - 01.18.2023 =
     183* Fixed:   FontAwesome icons were broken by 3.32 if not enqueued by another source.
    181184
    182185= V3.32  - 01.11.2023 =
Note: See TracChangeset for help on using the changeset viewer.