Plugin Directory

Changeset 3314097


Ignore:
Timestamp:
06/18/2025 06:46:40 PM (7 months ago)
Author:
coderzstudio
Message:

release version 1.0.11

Location:
custom-iframe
Files:
2 added
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • custom-iframe/tags/1.0.11/assets/css/admin/admin.css

    r3311922 r3314097  
    431431
    432432.token-button.upgrade-button:hover {
    433     background-color: #e6c000;
     433    background-color: #3832aa;
    434434    transform: translateY(-2px);
    435435    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  • custom-iframe/tags/1.0.11/assets/js/dismiss-notice.js

    r3311922 r3314097  
    1 jQuery(document).on('click', '.notice.custif-elementor-require .notice-dismiss', function () {
     1jQuery(document).on('click', '.notice.custom-iframe-notice .notice-dismiss', function () {
    22    jQuery.post(customIframeNotice.ajax_url, {
    33        action: 'dismiss_custom_iframe_notice',
  • custom-iframe/tags/1.0.11/custom-iframe-widget.php

    r3311922 r3314097  
    44 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe
    55 * Description: An advanced Elementor widget to embed iFrames with customizable options.
    6  * Version: 1.0.10
     6 * Version: 1.0.11
    77 * Author: Coderz Studio
    88 * Author URI: https://coderzstudio.com/
     
    5151
    5252// Define constants.
    53 define( 'CUSTIF_VERSION', '1.0.10' );
     53define( 'CUSTIF_VERSION', '1.0.11' );
    5454define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) );
    5555define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) );
  • custom-iframe/tags/1.0.11/includes/class-custif-admin.php

    r3311922 r3314097  
    207207                    <div class="token-container">
    208208                        <?php if ( ! $this->is_pro_installed() || ! $this->is_pro_active() ) : ?>
    209                             <div class="token-check">⚠️</div>
     209                            <div class="token-check"><img src="<?php echo esc_url( CUSTIF_URL . 'assets/images/pro-icon.svg' ); ?>" alt="Check icon"></div>
    210210                            <div class="token-title"><?php esc_html_e( 'Upgrade to Pro', 'custom-iframe' ); ?></div>
    211211                            <div class="token-form">
  • custom-iframe/tags/1.0.11/languages/custom-iframe.pot

    r3311922 r3314097  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Custom iFrame 1.0.10\n"
     5"Project-Id-Version: Custom iFrame 1.0.11\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-iframe\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-06-15T09:46:41+00:00\n"
     12"POT-Creation-Date: 2025-06-18T18:37:00+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • custom-iframe/tags/1.0.11/readme.txt

    r3312758 r3314097  
    1 === Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily ===
     1=== Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily (Free & Pro) ===
    22Contributors: coderzstudio
    3 Tags: elementor, pdf embed, youtube embed, google maps, twitter embed
     3Tags: elementor iframe, ⁠embed iframe, youtube embed, ⁠embed iframe, twitter embed
    44Requires at least: 5.8
    55Tested up to: 6.8
    6 Stable tag: 1.0.10
     6Stable tag: 1.0.11
    77Requires PHP: 7.4
    88License: GPL-2.0+
     
    117117== Changelog ==
    118118
    119 = 1.0.10 (April 20, 2025) =
     119= 1.0.11 (June 19, 2025) =
     120* Improved: Dashboard design.
     121* Fixed: Plugin activation notice not dismissed.
     122
     123= 1.0.10 (June 15, 2025) =
    120124* Added: Admin Dashboard.
    121125* Added: Feedback form on plugin deactivation.
  • custom-iframe/trunk/assets/css/admin/admin.css

    r3311922 r3314097  
    431431
    432432.token-button.upgrade-button:hover {
    433     background-color: #e6c000;
     433    background-color: #3832aa;
    434434    transform: translateY(-2px);
    435435    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  • custom-iframe/trunk/assets/js/dismiss-notice.js

    r3311922 r3314097  
    1 jQuery(document).on('click', '.notice.custif-elementor-require .notice-dismiss', function () {
     1jQuery(document).on('click', '.notice.custom-iframe-notice .notice-dismiss', function () {
    22    jQuery.post(customIframeNotice.ajax_url, {
    33        action: 'dismiss_custom_iframe_notice',
  • custom-iframe/trunk/custom-iframe-widget.php

    r3311922 r3314097  
    44 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe
    55 * Description: An advanced Elementor widget to embed iFrames with customizable options.
    6  * Version: 1.0.10
     6 * Version: 1.0.11
    77 * Author: Coderz Studio
    88 * Author URI: https://coderzstudio.com/
     
    5151
    5252// Define constants.
    53 define( 'CUSTIF_VERSION', '1.0.10' );
     53define( 'CUSTIF_VERSION', '1.0.11' );
    5454define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) );
    5555define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) );
  • custom-iframe/trunk/includes/class-custif-admin.php

    r3311922 r3314097  
    207207                    <div class="token-container">
    208208                        <?php if ( ! $this->is_pro_installed() || ! $this->is_pro_active() ) : ?>
    209                             <div class="token-check">⚠️</div>
     209                            <div class="token-check"><img src="<?php echo esc_url( CUSTIF_URL . 'assets/images/pro-icon.svg' ); ?>" alt="Check icon"></div>
    210210                            <div class="token-title"><?php esc_html_e( 'Upgrade to Pro', 'custom-iframe' ); ?></div>
    211211                            <div class="token-form">
  • custom-iframe/trunk/languages/custom-iframe.pot

    r3311922 r3314097  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Custom iFrame 1.0.10\n"
     5"Project-Id-Version: Custom iFrame 1.0.11\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-iframe\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-06-15T09:46:41+00:00\n"
     12"POT-Creation-Date: 2025-06-18T18:37:00+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • custom-iframe/trunk/readme.txt

    r3312758 r3314097  
    1 === Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily ===
     1=== Custom iFrame for Elementor – Embed Pdf, Maps, Videos, & Websites Easily (Free & Pro) ===
    22Contributors: coderzstudio
    3 Tags: elementor, pdf embed, youtube embed, google maps, twitter embed
     3Tags: elementor iframe, ⁠embed iframe, youtube embed, ⁠embed iframe, twitter embed
    44Requires at least: 5.8
    55Tested up to: 6.8
    6 Stable tag: 1.0.10
     6Stable tag: 1.0.11
    77Requires PHP: 7.4
    88License: GPL-2.0+
     
    117117== Changelog ==
    118118
    119 = 1.0.10 (April 20, 2025) =
     119= 1.0.11 (June 19, 2025) =
     120* Improved: Dashboard design.
     121* Fixed: Plugin activation notice not dismissed.
     122
     123= 1.0.10 (June 15, 2025) =
    120124* Added: Admin Dashboard.
    121125* Added: Feedback form on plugin deactivation.
Note: See TracChangeset for help on using the changeset viewer.