Changeset 3459265
- Timestamp:
- 02/11/2026 07:22:59 PM (7 weeks ago)
- Location:
- jiniya-addons
- Files:
-
- 21 added
- 2 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/animated-heading.css (added)
-
tags/1.0.1/assets/css/style.css (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/animated-heading.js (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/jiniya-addons.php (added)
-
tags/1.0.1/languages (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/style.css (added)
-
tags/1.0.1/widgets (added)
-
tags/1.0.1/widgets/animation-heading.php (added)
-
tags/1.0.1/widgets/jiniyaaddons.php (added)
-
trunk/assets/css/scroll-style.css (added)
-
trunk/assets/js/ScrollTrigger.min.js (added)
-
trunk/assets/js/gsap.min.js (added)
-
trunk/assets/js/scroll-script.js (added)
-
trunk/jiniya-addons.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widgets/index.html (added)
-
trunk/widgets/scroll-heading.php (added)
Legend:
- Unmodified
- Added
- Removed
-
jiniya-addons/trunk/jiniya-addons.php
r3459227 r3459265 4 4 * Plugin URI: https://www.jiniyaaddons.com/jiniya-addons-free-download 5 5 * Description: Jiniya Addons is a powerful Elementor addon pack designed for beautiful website showcase sections. 6 * Version: 1.0.1 7 * Requires at least: 5.8 8 * Requires PHP: 7.2 6 * Version: 1.0.2 9 7 * Author: Jiniya Addons 10 8 * Author URI: https://jiniyaaddons.com 11 * License: GPLv2 or later12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html13 * Elementor tested up to: 3.3 5.414 * Elementor Pro tested up to: 3.3 5.015 * Text Domain: jiniya-addons16 * Domain Path: /languages9 * Text Domain: jiniya-addons 10 * Domain Path: /languages 11 * Elementor tested up to: 3.33.6 12 * Elementor Pro tested up to: 3.33.2 13 *License: GPLv2 or later 14 *License URI: https://www.gnu.org/licenses/gpl-2.0.html 17 15 */ 18 16 … … 119 117 require_once __DIR__ . '/widgets/jiniyaaddons.php'; 120 118 require_once __DIR__ . '/widgets/animation-heading.php'; 119 require_once __DIR__ . '/widgets/scroll-heading.php'; 121 120 122 121 // Elementor new widget registration method (latest recommended) 123 122 \Elementor\Plugin::instance()->widgets_manager->register( new \Jiniya_Addons() ); 124 123 \Elementor\Plugin::instance()->widgets_manager->register( new \Jiniya_Animation_Heading() ); 125 } 126 127 /** 128 * Enqueue CSS 124 \Elementor\Plugin::instance()->widgets_manager->register( new \Jiniya_Scroll_Heading() ); 125 } 126 127 /** 128 * Enqueue CSS and Scripts 129 129 */ 130 130 public function enqueue_styles() { 131 // Main Plugin Style 131 132 wp_enqueue_style( 132 133 'jiniya-addons', … … 136 137 ); 137 138 138 139 // --- Animated Heading Assets --- 139 140 wp_register_style( 140 141 'jiniya-animated-style', … … 144 145 ); 145 146 146 // JS Register (Handle: jiniya-animated-script)147 147 wp_register_script( 148 148 'jiniya-animated-script', … … 153 153 ); 154 154 155 156 155 // --- Scroll Heading Assets (With GSAP) --- 156 157 // 1. Register GSAP Core 158 wp_register_script( 159 'gsap-js', 160 plugin_dir_url( __FILE__ ) . 'assets/js/gsap.min.js', 161 [], // No dependency 162 '3.12.2', 163 true 164 ); 165 166 // 2. Register ScrollTrigger (Depends on GSAP) 167 wp_register_script( 168 'gsap-scroll-trigger', 169 plugin_dir_url( __FILE__ ) . 'assets/js/ScrollTrigger.min.js', 170 ['gsap-js'], // Must load after GSAP 171 '3.12.2', 172 true 173 ); 174 175 // 3. Register Scroll CSS 176 wp_register_style( 177 'jiniya-scroll-style', 178 plugin_dir_url( __FILE__ ) . 'assets/css/scroll-css.css', 179 [], 180 self::VERSION 181 ); 182 183 // 4. Register Custom Scroll Script 184 // Note: Added 'gsap-js' and 'gsap-scroll-trigger' to dependencies 185 wp_register_script( 186 'jiniya-scroll-script', 187 plugin_dir_url( __FILE__ ) . 'assets/js/scroll-script.js', 188 ['jquery', 'gsap-js', 'gsap-scroll-trigger'], 189 self::VERSION, 190 true 191 ); 157 192 } 158 193 -
jiniya-addons/trunk/readme.txt
r3459227 r3459265 3 3 Donate link: https://jiniyaaddons.com/contact 4 4 Tags: jiniya widgets, elementor, woocommerce, jiniya page builder, custom widgets 5 Requires at least: 5. 86 Tested up to: 6.9 .17 Stable tag: 1.0.1 8 Requires PHP: 7.25 Requires at least: 5.0 6 Tested up to: 6.9 7 Requires PHP: 7.0 8 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.