Plugin Directory

Changeset 3371828


Ignore:
Timestamp:
10/02/2025 02:17:24 PM (6 months ago)
Author:
shutterpressgallery
Message:

Update to version 1.7.1 from GitHub

Location:
shutterpress-gallery
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • shutterpress-gallery/tags/1.7.1/README.txt

    r3371808 r3371828  
    66Tested up to: 6.8
    77Requires PHP: 8.0
    8 Stable tag: 1.7.0
     8Stable tag: 1.7.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114
    115115== Changelog ==
     116
     117= 1.7.1 =
     118
     119* Fix - Remove debug output from error log
    116120
    117121= 1.7.0 =
  • shutterpress-gallery/tags/1.7.1/shutterpress-gallery.php

    r3371808 r3371828  
    1212 * Plugin URI:        shutterpress.io
    1313 * Description:       The ultimate WordPress gallery plugin for professional photographers. Deliver an unforgettable experience to your clients.
    14  * Version:           1.7.0
     14 * Version:           1.7.1
    1515 * Author:            Shutterpress
    1616 * Author URI:        https://shutterpress.io
     
    2828 * Current plugin version.
    2929 */
    30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7.0');
     30define('SHUTTERPRESS_GALLERY_VERSION', '1.7.1');
    3131
    3232define('SP_GALLERY_DIR', plugin_dir_path(__FILE__));
  • shutterpress-gallery/tags/1.7.1/src/admin/Shutterpress_Gallery_Meta_Box.php

    r3371808 r3371828  
    2626    protected $gallery;
    2727    protected $zip;
     28    public $defaults;
    2829
    2930    public function __construct()
  • shutterpress-gallery/tags/1.7.1/src/includes/Shutterpress_Gallery.php

    r3371808 r3371828  
    165165        $this->loader->sp_gallery_add_action('rest_api_init', $plugin_public_rest, 'register_gallery_route');
    166166        $this->loader->sp_gallery_add_filter('the_content', $plugin_public, 'sp_gallery_display_gallery', 10, 2);
    167         add_action('posts_selection', function ($wp) {
    168             error_log(print_r($wp, true));
    169         });
    170167    }
    171168
  • shutterpress-gallery/tags/1.7.1/src/includes/Shutterpress_Gallery_Template.php

    r3371808 r3371828  
    2323    protected $template_id;
    2424    protected $post;
     25    protected $prefix;
    2526    public $attributes;
    2627    public $color_primary;
     
    5657    public $show_hover_image_caption;
    5758    public $custom_css;
     59    public $defaults;
     60    public $post_status;
     61    public $lightbox_mode;
     62    public $columns;
     63    public $show_icons;
     64    public $icon_stroke_width;
     65    public $icon_position;
     66    public $hover_icon_size;
    5867
    5968    /**
  • shutterpress-gallery/tags/1.7.1/vendor/composer/installed.php

    r3371808 r3371828  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '36b50f52869df1610d274cbda8b8f8c4a6f4cd3e',
     6        'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    3535            'pretty_version' => 'dev-master',
    3636            'version' => 'dev-master',
    37             'reference' => '36b50f52869df1610d274cbda8b8f8c4a6f4cd3e',
     37            'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b',
    3838            'type' => 'wordpress-plugin',
    3939            'install_path' => __DIR__ . '/../../',
  • shutterpress-gallery/trunk/README.txt

    r3371808 r3371828  
    66Tested up to: 6.8
    77Requires PHP: 8.0
    8 Stable tag: 1.7.0
     8Stable tag: 1.7.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114
    115115== Changelog ==
     116
     117= 1.7.1 =
     118
     119* Fix - Remove debug output from error log
    116120
    117121= 1.7.0 =
  • shutterpress-gallery/trunk/shutterpress-gallery.php

    r3371808 r3371828  
    1212 * Plugin URI:        shutterpress.io
    1313 * Description:       The ultimate WordPress gallery plugin for professional photographers. Deliver an unforgettable experience to your clients.
    14  * Version:           1.7.0
     14 * Version:           1.7.1
    1515 * Author:            Shutterpress
    1616 * Author URI:        https://shutterpress.io
     
    2828 * Current plugin version.
    2929 */
    30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7.0');
     30define('SHUTTERPRESS_GALLERY_VERSION', '1.7.1');
    3131
    3232define('SP_GALLERY_DIR', plugin_dir_path(__FILE__));
  • shutterpress-gallery/trunk/src/admin/Shutterpress_Gallery_Meta_Box.php

    r3371808 r3371828  
    2626    protected $gallery;
    2727    protected $zip;
     28    public $defaults;
    2829
    2930    public function __construct()
  • shutterpress-gallery/trunk/src/includes/Shutterpress_Gallery.php

    r3371808 r3371828  
    165165        $this->loader->sp_gallery_add_action('rest_api_init', $plugin_public_rest, 'register_gallery_route');
    166166        $this->loader->sp_gallery_add_filter('the_content', $plugin_public, 'sp_gallery_display_gallery', 10, 2);
    167         add_action('posts_selection', function ($wp) {
    168             error_log(print_r($wp, true));
    169         });
    170167    }
    171168
  • shutterpress-gallery/trunk/src/includes/Shutterpress_Gallery_Template.php

    r3371808 r3371828  
    2323    protected $template_id;
    2424    protected $post;
     25    protected $prefix;
    2526    public $attributes;
    2627    public $color_primary;
     
    5657    public $show_hover_image_caption;
    5758    public $custom_css;
     59    public $defaults;
     60    public $post_status;
     61    public $lightbox_mode;
     62    public $columns;
     63    public $show_icons;
     64    public $icon_stroke_width;
     65    public $icon_position;
     66    public $hover_icon_size;
    5867
    5968    /**
  • shutterpress-gallery/trunk/vendor/composer/installed.php

    r3371808 r3371828  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '36b50f52869df1610d274cbda8b8f8c4a6f4cd3e',
     6        'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    3535            'pretty_version' => 'dev-master',
    3636            'version' => 'dev-master',
    37             'reference' => '36b50f52869df1610d274cbda8b8f8c4a6f4cd3e',
     37            'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b',
    3838            'type' => 'wordpress-plugin',
    3939            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.