Changeset 3371828
- Timestamp:
- 10/02/2025 02:17:24 PM (6 months ago)
- Location:
- shutterpress-gallery
- Files:
-
- 12 edited
- 1 copied
-
tags/1.7.1 (copied) (copied from shutterpress-gallery/trunk)
-
tags/1.7.1/README.txt (modified) (2 diffs)
-
tags/1.7.1/shutterpress-gallery.php (modified) (2 diffs)
-
tags/1.7.1/src/admin/Shutterpress_Gallery_Meta_Box.php (modified) (1 diff)
-
tags/1.7.1/src/includes/Shutterpress_Gallery.php (modified) (1 diff)
-
tags/1.7.1/src/includes/Shutterpress_Gallery_Template.php (modified) (2 diffs)
-
tags/1.7.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/shutterpress-gallery.php (modified) (2 diffs)
-
trunk/src/admin/Shutterpress_Gallery_Meta_Box.php (modified) (1 diff)
-
trunk/src/includes/Shutterpress_Gallery.php (modified) (1 diff)
-
trunk/src/includes/Shutterpress_Gallery_Template.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shutterpress-gallery/tags/1.7.1/README.txt
r3371808 r3371828 6 6 Tested up to: 6.8 7 7 Requires PHP: 8.0 8 Stable tag: 1.7. 08 Stable tag: 1.7.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 114 114 115 115 == Changelog == 116 117 = 1.7.1 = 118 119 * Fix - Remove debug output from error log 116 120 117 121 = 1.7.0 = -
shutterpress-gallery/tags/1.7.1/shutterpress-gallery.php
r3371808 r3371828 12 12 * Plugin URI: shutterpress.io 13 13 * Description: The ultimate WordPress gallery plugin for professional photographers. Deliver an unforgettable experience to your clients. 14 * Version: 1.7. 014 * Version: 1.7.1 15 15 * Author: Shutterpress 16 16 * Author URI: https://shutterpress.io … … 28 28 * Current plugin version. 29 29 */ 30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7. 0');30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7.1'); 31 31 32 32 define('SP_GALLERY_DIR', plugin_dir_path(__FILE__)); -
shutterpress-gallery/tags/1.7.1/src/admin/Shutterpress_Gallery_Meta_Box.php
r3371808 r3371828 26 26 protected $gallery; 27 27 protected $zip; 28 public $defaults; 28 29 29 30 public function __construct() -
shutterpress-gallery/tags/1.7.1/src/includes/Shutterpress_Gallery.php
r3371808 r3371828 165 165 $this->loader->sp_gallery_add_action('rest_api_init', $plugin_public_rest, 'register_gallery_route'); 166 166 $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 });170 167 } 171 168 -
shutterpress-gallery/tags/1.7.1/src/includes/Shutterpress_Gallery_Template.php
r3371808 r3371828 23 23 protected $template_id; 24 24 protected $post; 25 protected $prefix; 25 26 public $attributes; 26 27 public $color_primary; … … 56 57 public $show_hover_image_caption; 57 58 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; 58 67 59 68 /** -
shutterpress-gallery/tags/1.7.1/vendor/composer/installed.php
r3371808 r3371828 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => '3 6b50f52869df1610d274cbda8b8f8c4a6f4cd3e',6 'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 35 35 'pretty_version' => 'dev-master', 36 36 'version' => 'dev-master', 37 'reference' => '3 6b50f52869df1610d274cbda8b8f8c4a6f4cd3e',37 'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b', 38 38 'type' => 'wordpress-plugin', 39 39 'install_path' => __DIR__ . '/../../', -
shutterpress-gallery/trunk/README.txt
r3371808 r3371828 6 6 Tested up to: 6.8 7 7 Requires PHP: 8.0 8 Stable tag: 1.7. 08 Stable tag: 1.7.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 114 114 115 115 == Changelog == 116 117 = 1.7.1 = 118 119 * Fix - Remove debug output from error log 116 120 117 121 = 1.7.0 = -
shutterpress-gallery/trunk/shutterpress-gallery.php
r3371808 r3371828 12 12 * Plugin URI: shutterpress.io 13 13 * Description: The ultimate WordPress gallery plugin for professional photographers. Deliver an unforgettable experience to your clients. 14 * Version: 1.7. 014 * Version: 1.7.1 15 15 * Author: Shutterpress 16 16 * Author URI: https://shutterpress.io … … 28 28 * Current plugin version. 29 29 */ 30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7. 0');30 define('SHUTTERPRESS_GALLERY_VERSION', '1.7.1'); 31 31 32 32 define('SP_GALLERY_DIR', plugin_dir_path(__FILE__)); -
shutterpress-gallery/trunk/src/admin/Shutterpress_Gallery_Meta_Box.php
r3371808 r3371828 26 26 protected $gallery; 27 27 protected $zip; 28 public $defaults; 28 29 29 30 public function __construct() -
shutterpress-gallery/trunk/src/includes/Shutterpress_Gallery.php
r3371808 r3371828 165 165 $this->loader->sp_gallery_add_action('rest_api_init', $plugin_public_rest, 'register_gallery_route'); 166 166 $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 });170 167 } 171 168 -
shutterpress-gallery/trunk/src/includes/Shutterpress_Gallery_Template.php
r3371808 r3371828 23 23 protected $template_id; 24 24 protected $post; 25 protected $prefix; 25 26 public $attributes; 26 27 public $color_primary; … … 56 57 public $show_hover_image_caption; 57 58 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; 58 67 59 68 /** -
shutterpress-gallery/trunk/vendor/composer/installed.php
r3371808 r3371828 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => '3 6b50f52869df1610d274cbda8b8f8c4a6f4cd3e',6 'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 35 35 'pretty_version' => 'dev-master', 36 36 'version' => 'dev-master', 37 'reference' => '3 6b50f52869df1610d274cbda8b8f8c4a6f4cd3e',37 'reference' => '30e7b3adc58760722035c14ba7f6d76c745dd71b', 38 38 'type' => 'wordpress-plugin', 39 39 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.