Plugin Directory

Changeset 1263839


Ignore:
Timestamp:
10/12/2015 07:21:57 AM (10 years ago)
Author:
Shopello
Message:

New release 2.7.5

Location:
shopello/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • shopello/trunk/assets/js/admin.js

    r1255619 r1263839  
    2929
    3030        // Row counting and max-count of rows
    31         var total_shortcodes_max = 50;
     31        var total_shortcodes_max = 1000;
    3232        var total_shortcodes     = shortcode_table.find('tr').length;
    3333
  • shopello/trunk/readme.txt

    r1255625 r1263839  
    55Requires at least: 4.2.0
    66Tested up to: 4.3
    7 Stable tag: 2.7.4
     7Stable tag: 2.7.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52= 2.7.5 =
     53* This is the last planned release of this plugin.
     54* Bumped the limit of max amount of listings from 50 to 1000.
     55
    5256= 2.7.4 =
    5357* Proper reducted price fix.
  • shopello/trunk/shopello_api.php

    r1255625 r1263839  
    88 * Plugin URI: http://shopello.se/api/wordpress
    99 * Description: This plugin was created to allow wordpress blogs and websites to in a simple manner include listings of products from Shopello.se.
    10  * Version: 2.7.4
     10 * Version: 2.7.5
    1111 * Author: Shopello AB
    1212 */
  • shopello/trunk/src/classes/Shopello/ListingManager.php

    r1250120 r1263839  
    99{
    1010    private $listings = array();
    11     private $maxItems = 50;
     11    private $maxItems = 1000;
    1212
    1313    private static $instance;
  • shopello/trunk/vendor/autoload.php

    r1255625 r1263839  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit26090a170ff7d474ada180d675aa0c94::getLoader();
     7return ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6::getLoader();
  • shopello/trunk/vendor/composer/autoload_real.php

    r1255625 r1263839  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit26090a170ff7d474ada180d675aa0c94
     5class ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit26090a170ff7d474ada180d675aa0c94', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit26090a170ff7d474ada180d675aa0c94', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit755733c9d2634fb1fc2af1c72063bdf6', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4545}
    4646
    47 function composerRequire26090a170ff7d474ada180d675aa0c94($file)
     47function composerRequire755733c9d2634fb1fc2af1c72063bdf6($file)
    4848{
    4949    require $file;
Note: See TracChangeset for help on using the changeset viewer.