Changeset 3330676
- Timestamp:
- 07/19/2025 04:06:57 PM (8 months ago)
- Location:
- product-gallery-swiper-for-woocommerce
- Files:
-
- 37 added
- 1 deleted
- 3 edited
-
tags/1.5.5 (added)
-
tags/1.5.5/LICENSE.txt (added)
-
tags/1.5.5/README.txt (added)
-
tags/1.5.5/admin (added)
-
tags/1.5.5/admin/class-wdevs-gallery-swiper-admin.php (added)
-
tags/1.5.5/admin/index.php (added)
-
tags/1.5.5/includes (added)
-
tags/1.5.5/includes/class-wdevs-gallery-swiper-activator.php (added)
-
tags/1.5.5/includes/class-wdevs-gallery-swiper-deactivator.php (added)
-
tags/1.5.5/includes/class-wdevs-gallery-swiper-loader.php (added)
-
tags/1.5.5/includes/class-wdevs-gallery-swiper-woocommerce.php (added)
-
tags/1.5.5/includes/class-wdevs-gallery-swiper.php (added)
-
tags/1.5.5/includes/index.php (added)
-
tags/1.5.5/languages (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-en_US.l10n.php (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-en_US.mo (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-en_US.po (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-nl_NL.l10n.php (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-nl_NL.mo (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce-nl_NL.po (added)
-
tags/1.5.5/languages/product-gallery-swiper-for-woocommerce.pot (added)
-
tags/1.5.5/public (added)
-
tags/1.5.5/public/class-wdevs-gallery-swiper-public.php (added)
-
tags/1.5.5/public/css (added)
-
tags/1.5.5/public/css/wdevs-gallery-swiper-public.css (added)
-
tags/1.5.5/public/index.php (added)
-
tags/1.5.5/public/js (added)
-
tags/1.5.5/public/js/wdevs-gallery-swiper-public.js (added)
-
tags/1.5.5/public/js/woo-product-filter-by-wbw.js (added)
-
tags/1.5.5/public/js/xstore-theme.js (added)
-
tags/1.5.5/public/js/yith-infinite-scrolling.js (added)
-
tags/1.5.5/public/vendor (added)
-
tags/1.5.5/public/vendor/swiper (added)
-
tags/1.5.5/public/vendor/swiper/swiper-bundle.min.css (added)
-
tags/1.5.5/public/vendor/swiper/swiper-bundle.min.js (added)
-
tags/1.5.5/uninstall.php (added)
-
tags/1.5.5/wdevs-gallery-swiper.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-wdevs-gallery-swiper-i18n.php (deleted)
-
trunk/includes/class-wdevs-gallery-swiper.php (modified) (3 diffs)
-
trunk/wdevs-gallery-swiper.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-gallery-swiper-for-woocommerce/trunk/README.txt
r3319094 r3330676 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 1.5. 46 Stable tag: 1.5.5 7 7 Requires PHP: 7.2 8 8 License: GPL-2.0+ … … 64 64 65 65 == Changelog == 66 = 1.5.5 = 67 * Removed load_plugin_textdomain() because it has been discouraged since WordPress version 4.6. 68 * Tested WooCommerce 10.0.2 69 66 70 = 1.5.4 = 67 71 * Added compatibility for XStore theme -
product-gallery-swiper-for-woocommerce/trunk/includes/class-wdevs-gallery-swiper.php
r3313906 r3330676 76 76 77 77 $this->load_dependencies(); 78 $this->set_locale();79 78 $this->define_admin_hooks(); 80 79 $this->define_public_hooks(); … … 108 107 109 108 /** 110 * The class responsible for defining internationalization functionality111 * of the plugin.112 */113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-wdevs-gallery-swiper-i18n.php';114 115 /**116 109 * The class responsible for defining all actions that occur in the admin area. 117 110 */ … … 132 125 133 126 $this->loader = new Wdevs_Gallery_Swiper_Loader(); 134 135 }136 137 /**138 * Define the locale for this plugin for internationalization.139 *140 * Uses the Wdevs_Gallery_Swiper_i18n class in order to set the domain and to register the hook141 * with WordPress.142 *143 * @since 1.0.0144 * @access private145 */146 private function set_locale() {147 148 $plugin_i18n = new Wdevs_Gallery_Swiper_i18n();149 150 $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );151 127 152 128 } -
product-gallery-swiper-for-woocommerce/trunk/wdevs-gallery-swiper.php
r3319093 r3330676 17 17 * Plugin URI: https://products.wijnberg.dev 18 18 * Description: Enhances WooCommerce product images display on product listing sections, providing a responsive and touch-friendly swiper. 19 * Version: 1.5. 419 * Version: 1.5.5 20 20 * Author: Wijnberg Developments 21 21 * License: GPL-2.0+ … … 27 27 * Requires PHP: 7.2 28 28 * WC requires at least: 7.0.0 29 * WC tested up to: 9.9.429 * WC tested up to: 10.0.2 30 30 * Requires Plugins: woocommerce 31 31 */ … … 41 41 * Rename this for your plugin and update it as you release new versions. 42 42 */ 43 define( 'WDEVS_GALLERY_SWIPER_VERSION', '1.5. 4' );43 define( 'WDEVS_GALLERY_SWIPER_VERSION', '1.5.5' ); 44 44 45 45 /**
Note: See TracChangeset
for help on using the changeset viewer.