WordPress.org

Plugin Directory

Changeset 1581255


Ignore:
Timestamp:
01/24/2017 03:23:34 PM (3 years ago)
Author:
jonathanbardo
Message:

Update to commit a1203ad from git@…:jonathanbardo/WP-Date-Range-Filter.git

Includes the following commit(s):

commit a1203ad201a1bbe6bc086304f436a0f0663c990d
Author: Jonathan Bardo <bardo.jonathan@…>

Release 0.0.11

A css/admin.min.css
A css/datepicker.min.css
M date-range-filter.php
M includes/vendor/Carbon.php
M js/admin.js
A js/admin.min.js
M readme.md
M readme.txt

Location:
date-range-filter
Files:
39 added
4 edited

Legend:

Unmodified
Added
Removed
  • date-range-filter/trunk/date-range-filter.php

    r1235432 r1581255  
    33 * Plugin Name: Date range filter
    44 * Description: Easily filter the admin list of post and custom post type with a date range
    5  * Version: 0.0.10
     5 * Version: 0.0.11
    66 * Author: Jonathan Bardo, Ricardo Losso
    77 * License: GPLv2+
     
    1515     * Holds the plugin version number
    1616     */
    17     const VERSION = '0.0.10';
     17    const VERSION = '0.0.11';
    1818
    1919    /**
     
    210210        }
    211211
     212        $suffix = SCRIPT_DEBUG ? '' : '.min';
     213
    212214        wp_register_style( 'jquery-ui', '//ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/themes/base/jquery-ui.css', array(), '1.10.1' );
    213         wp_enqueue_style( 'date-range-filter-datepicker', DATE_RANGE_FILTER_URL . 'css/datepicker.css', array( 'jquery-ui' ), self::VERSION );
    214         wp_enqueue_style( 'date-range-filter-admin', DATE_RANGE_FILTER_URL . 'css/admin.css', array(), self::VERSION );
    215         wp_register_script( 'date-range-filter-admin', DATE_RANGE_FILTER_URL . 'js/admin.js', array( 'jquery' ), self::VERSION, true );
     215        wp_enqueue_style( 'date-range-filter-datepicker', DATE_RANGE_FILTER_URL . "css/datepicker{$suffix}.css", array( 'jquery-ui' ), self::VERSION );
     216        wp_enqueue_style( 'date-range-filter-admin', DATE_RANGE_FILTER_URL . "css/admin{$suffix}.css", array(), self::VERSION );
     217        wp_register_script( 'date-range-filter-admin', DATE_RANGE_FILTER_URL . "js/admin{$suffix}.js", array( 'jquery' ), self::VERSION, true );
    216218        wp_localize_script(
    217219            'date-range-filter-admin',
  • date-range-filter/trunk/js/admin.js

    r1214434 r1581255  
    4343                        dateFormat: 'yy/mm/dd',
    4444                        maxDate: dayOffset,
    45                         defaultDate: siteTime,
    46                         beforeShow: function() {
    47                             $( this ).prop( 'disabled', true );
    48                         },
    49                         onClose: function() {
    50                             $( this ).prop( 'disabled', false );
    51                         }
     45                        defaultDate: siteTime
    5246                    });
    5347
  • date-range-filter/trunk/readme.md

    r1454790 r1581255  
    88**Tags:** [date](https://wordpress.org/plugins/tags/date), [filter](https://wordpress.org/plugins/tags/filter), [admin](https://wordpress.org/plugins/tags/admin), [dashboard](https://wordpress.org/plugins/tags/dashboard), [widget](https://wordpress.org/plugins/tags/widget), [stats](https://wordpress.org/plugins/tags/stats) 
    99**Requires at least:** 3.7 
    10 **Tested up to:** 4.4 
     10**Tested up to:** 4.7.1 
    1111**Stable tag:** trunk (master) 
    1212**License:** [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) 
     
    5252## Changelog ##
    5353
     54### 0.0.11 ###
     55* Let user enter date manually for custom date range
     56* Add min js & css
     57
     58### 0.0.10 ###
     59Fix compatibility with WooCommerce
     60
    5461### 0.0.10 ###
    5562Fix compatibility with WooCommerce
  • date-range-filter/trunk/readme.txt

    r1454790 r1581255  
    33Tags:              date, filter, admin, dashboard, widget, stats
    44Requires at least: 3.7
    5 Tested up to:      4.4
     5Tested up to:      4.7.1
    66Stable tag:        trunk
    77License:           GPLv2 or later
     
    4242== Changelog ==
    4343
     44= 0.0.11 =
     45* Let user enter date manually for custom date range
     46* Add min js & css
     47
     48= 0.0.10 =
     49Fix compatibility with WooCommerce
     50
    4451= 0.0.10 =
    4552Fix compatibility with WooCommerce
Note: See TracChangeset for help on using the changeset viewer.