Plugin Directory

Changeset 3238810


Ignore:
Timestamp:
02/11/2025 06:03:48 PM (5 weeks ago)
Author:
kprajapati22
Message:

Update to version 1.0.2 from GitHub

Location:
kp-zip-downloader
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • kp-zip-downloader/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/assets/screenshot-1.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/assets/screenshot-2.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kp-zip-downloader/tags/1.0.2/assets/js/kp-zip-downloader.js

    r3219797 r3238810  
    66        $( 'div.theme-actions' ).each( function() {
    77            var themeName = $( this ).closest( 'div.theme' ).attr( 'data-slug' );
     8            if ( themeName === undefined ) {
     9                themeName = kp_zip_downloader.theme_name;
     10            }
    811            var url = new URL( kp_zip_downloader.themes_url );
    912            var params = new URLSearchParams( url.search );
  • kp-zip-downloader/tags/1.0.2/includes/class-kp-zip-downloader.php

    r3219797 r3238810  
    3030                ],
    3131                'download_link_text' => esc_html__( 'Download ZIP', 'kp-zip-downloader' ),
     32                'theme_name' => get_option( 'stylesheet' ),
    3233            ] );
    3334        }
  • kp-zip-downloader/tags/1.0.2/kp-zip-downloader.php

    r3219855 r3238810  
    44 * Plugin URI: https://wordpress.org/plugins/kp-zip-downloader
    55 * Description: A WordPress plugin to download installed plugins and themes as zip files from the admin dashboard.
    6  * Version: 1.0.1
     6 * Version: 1.0.2
    77 * Author: Kalpesh Prajapati
    88 * Author URI: https://profiles.wordpress.org/kprajapati22/
     
    1717
    1818// Define constants.
    19 define( 'KP_ZIP_DOWNLOADER_VERSION', '1.0.1' );
     19define( 'KP_ZIP_DOWNLOADER_VERSION', '1.0.2' );
    2020define( 'KP_ZIP_DOWNLOADER_DIR', plugin_dir_path( __FILE__ ) );
    2121define( 'KP_ZIP_DOWNLOADER_URL', plugin_dir_url( __FILE__ ) );
  • kp-zip-downloader/tags/1.0.2/readme.txt

    r3219855 r3238810  
    33Tags: plugins, themes, zip, download
    44Tested up to: 6.7
    5 Stable tag: 1.0.1
     5Stable tag: 1.0.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5555== Changelog ==
    5656
     57= Version 1.0.2 - 2025-02-11 =
     58* Fixed download issue when only one theme is available.
     59
    5760= Version 1.0.1 - 2025-01-10 =
    5861* Added pot file.
  • kp-zip-downloader/trunk/assets/js/kp-zip-downloader.js

    r3219797 r3238810  
    66        $( 'div.theme-actions' ).each( function() {
    77            var themeName = $( this ).closest( 'div.theme' ).attr( 'data-slug' );
     8            if ( themeName === undefined ) {
     9                themeName = kp_zip_downloader.theme_name;
     10            }
    811            var url = new URL( kp_zip_downloader.themes_url );
    912            var params = new URLSearchParams( url.search );
  • kp-zip-downloader/trunk/includes/class-kp-zip-downloader.php

    r3219797 r3238810  
    3030                ],
    3131                'download_link_text' => esc_html__( 'Download ZIP', 'kp-zip-downloader' ),
     32                'theme_name' => get_option( 'stylesheet' ),
    3233            ] );
    3334        }
  • kp-zip-downloader/trunk/kp-zip-downloader.php

    r3219855 r3238810  
    44 * Plugin URI: https://wordpress.org/plugins/kp-zip-downloader
    55 * Description: A WordPress plugin to download installed plugins and themes as zip files from the admin dashboard.
    6  * Version: 1.0.1
     6 * Version: 1.0.2
    77 * Author: Kalpesh Prajapati
    88 * Author URI: https://profiles.wordpress.org/kprajapati22/
     
    1717
    1818// Define constants.
    19 define( 'KP_ZIP_DOWNLOADER_VERSION', '1.0.1' );
     19define( 'KP_ZIP_DOWNLOADER_VERSION', '1.0.2' );
    2020define( 'KP_ZIP_DOWNLOADER_DIR', plugin_dir_path( __FILE__ ) );
    2121define( 'KP_ZIP_DOWNLOADER_URL', plugin_dir_url( __FILE__ ) );
  • kp-zip-downloader/trunk/readme.txt

    r3219855 r3238810  
    33Tags: plugins, themes, zip, download
    44Tested up to: 6.7
    5 Stable tag: 1.0.1
     5Stable tag: 1.0.2
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5555== Changelog ==
    5656
     57= Version 1.0.2 - 2025-02-11 =
     58* Fixed download issue when only one theme is available.
     59
    5760= Version 1.0.1 - 2025-01-10 =
    5861* Added pot file.
Note: See TracChangeset for help on using the changeset viewer.