Plugin Directory

Changeset 2204733


Ignore:
Timestamp:
12/02/2019 05:27:15 PM (6 years ago)
Author:
endortrails
Message:

Update to version 2.4.4 from GitHub

Location:
sell-media
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sell-media/tags/2.4.4/inc/class-layouts.php

    r2201626 r2204733  
    139139        }
    140140
     141        // Sell Media Item goes to attachment after version 2.4
     142        if( is_attachment() && 'sell_media_item' == get_post_type($post->post_parent)) {
     143            $classes[] = 'single-sell_media_item';
     144        }
     145       
    141146        // Theme
    142147        $theme = wp_get_theme();
  • sell-media/tags/2.4.4/js/sell_media.js

    r2123444 r2204733  
    720720 */
    721721function sm_update_cart_menu() {
    722     var sell_media_cart_info = jQuery.parseJSON(jQuery.cookie('sell_media_cart_info'));
     722    var sell_media_cart_info = jQuery.parseJSON(jQuery.cookie('sell_media_cart_info') || null);
    723723    if (sell_media_cart_info != null) {
    724724        jQuery('.checkout-price').text(sell_media_cart_info.subtotal);
  • sell-media/tags/2.4.4/readme.txt

    r2201626 r2204733  
    11=== Sell Media ===
    22
    3 Contributors: endortrails, racase
     3Contributors: endortrails, racase, nhuja
    44Donate link: https://graphpaperpress.com/plugins/sell-media/
    55Tags: photography, photos, sell media, sell photos, sell videos, sell downloads, download, downloads, e-commerce, paypal, stock photos, photo gallery, photo cart
    6 Requires at least: 5.0
     6Requires at least: 5.3
    77Tested up to: 5.3
    8 Stable tag: 2.4.3
     8Stable tag: 2.4.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    232232
    233233== Changelog ==
     234
     235= 2.4.4 =
     236* Fix: Magnifier extension support
     237* Fix: Parse json if cookie present
    234238
    235239= 2.4.3 =
  • sell-media/tags/2.4.4/sell-media.php

    r2201626 r2204733  
    44 * Plugin URI: http://graphpaperpress.com/plugins/sell-media/
    55 * Description: A plugin for selling photos, prints and other downloads.
    6  * Version: 2.4.3
     6 * Version: 2.4.4
    77 * Author: Graph Paper Press
    88 * Author URI: http://graphpaperpress.com
  • sell-media/trunk/inc/class-layouts.php

    r2201626 r2204733  
    139139        }
    140140
     141        // Sell Media Item goes to attachment after version 2.4
     142        if( is_attachment() && 'sell_media_item' == get_post_type($post->post_parent)) {
     143            $classes[] = 'single-sell_media_item';
     144        }
     145       
    141146        // Theme
    142147        $theme = wp_get_theme();
  • sell-media/trunk/js/sell_media.js

    r2123444 r2204733  
    720720 */
    721721function sm_update_cart_menu() {
    722     var sell_media_cart_info = jQuery.parseJSON(jQuery.cookie('sell_media_cart_info'));
     722    var sell_media_cart_info = jQuery.parseJSON(jQuery.cookie('sell_media_cart_info') || null);
    723723    if (sell_media_cart_info != null) {
    724724        jQuery('.checkout-price').text(sell_media_cart_info.subtotal);
  • sell-media/trunk/readme.txt

    r2201626 r2204733  
    11=== Sell Media ===
    22
    3 Contributors: endortrails, racase
     3Contributors: endortrails, racase, nhuja
    44Donate link: https://graphpaperpress.com/plugins/sell-media/
    55Tags: photography, photos, sell media, sell photos, sell videos, sell downloads, download, downloads, e-commerce, paypal, stock photos, photo gallery, photo cart
    6 Requires at least: 5.0
     6Requires at least: 5.3
    77Tested up to: 5.3
    8 Stable tag: 2.4.3
     8Stable tag: 2.4.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    232232
    233233== Changelog ==
     234
     235= 2.4.4 =
     236* Fix: Magnifier extension support
     237* Fix: Parse json if cookie present
    234238
    235239= 2.4.3 =
  • sell-media/trunk/sell-media.php

    r2201626 r2204733  
    44 * Plugin URI: http://graphpaperpress.com/plugins/sell-media/
    55 * Description: A plugin for selling photos, prints and other downloads.
    6  * Version: 2.4.3
     6 * Version: 2.4.4
    77 * Author: Graph Paper Press
    88 * Author URI: http://graphpaperpress.com
Note: See TracChangeset for help on using the changeset viewer.