Plugin Directory

Changeset 3396477


Ignore:
Timestamp:
11/16/2025 06:54:02 AM (5 months ago)
Author:
pistonui
Message:

1.2.1

  • Fix: Dashboard "Activate All" toggle now properly activates all 16 core widgets (was missing 6 widgets in JavaScript array)
  • Fix: WordPress coding standards compliance - All output properly escaped for security
  • Fix: Replaced deprecated file functions with WordPress filesystem API (WP_Filesystem)
  • Fix: Added missing translators comment for internationalization
  • Improved: Code quality and WordPress.org plugin repository compliance
Location:
pistonui
Files:
65 added
3 edited

Legend:

Unmodified
Added
Removed
  • pistonui/trunk/assets/js/admin-dashboard.js

    r3394344 r3396477  
    1010            core: [
    1111                'sliding_hero', 'sliding_text_bar', 'tiktok_videos', 'promo_banner', 'accordion',
    12                 'logo_slider', 'youtube_popup', 'video_hero', 'sticky_content', 'image_comparison'
     12                'logo_slider', 'youtube_popup', 'video_hero', 'sticky_content', 'scroll_reveal_cards',
     13                'image_comparison', 'feature_cards', 'counter_stats', 'posts_grid', 'skills_tabs', 'rich_title'
    1314            ],
    1415            woo: [
  • pistonui/trunk/pistonui.php

    r3396475 r3396477  
    33Plugin Name: PistonUI
    44Description: High-performance custom widgets for Elementor.
    5 Version: 1.2.0
     5Version: 1.2.1
    66Author: Lasindu Nadishan
    77Author URI: https://pistonui.com/lasindu
     
    1919
    2020// Define plugin constants
    21 define( 'PISTONUI_VERSION', '1.2.0' );
     21define( 'PISTONUI_VERSION', '1.2.1' );
    2222define( 'PISTONUI_PATH', plugin_dir_path( __FILE__ ) );
    2323define( 'PISTONUI_URL', plugin_dir_url( __FILE__ ) );
  • pistonui/trunk/readme.txt

    r3396475 r3396477  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    125125
    126126== Changelog ==
     127= 1.2.1 =
     128- Fix: Dashboard "Activate All" toggle now properly activates all 16 core widgets (was missing 6 widgets in JavaScript array)
     129- Fix: WordPress coding standards compliance - All output properly escaped for security
     130- Fix: Replaced deprecated file functions with WordPress filesystem API (WP_Filesystem)
     131- Fix: Added missing translators comment for internationalization
     132- Improved: Code quality and WordPress.org plugin repository compliance
     133
    127134= 1.2.0 =
    128135- New: Skills Tabs widget - Tabbed interface with progress bars, icons, and descriptions for showcasing skills or services
Note: See TracChangeset for help on using the changeset viewer.