Plugin Directory

Changeset 2474442


Ignore:
Timestamp:
02/14/2021 11:50:02 AM (5 years ago)
Author:
eighty20results
Message:

Update to version 7.5 from GitHub

Location:
e20r-members-list
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • e20r-members-list/tags/7.5/README.txt

    r2474437 r2474442  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 7.4
     7Stable tag: 7.5
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl
     
    214214== Changelog ==
    215215
     216== 7.5 ==
     217* BUG FIX: Didn't automatically search for levels only when selected level is changed
     218
    216219== 7.4 ==
    217 
    218220* ENH: Adding script to remove local & upstream tasks based on string pattern
    219221* ENH: Adding support for auto-labeling of Pull Requests upon commit
     
    228230
    229231== 7.2 ==
    230 
    231232* BUG FIX: Better detection of custom one-click update when not using wordpress.org repo version of plugin
    232233
  • e20r-members-list/tags/7.5/class.e20r-members-list.php

    r2474437 r2474442  
    44Plugin URI: https://wordpress.org/plugins/e20r-members-list
    55Description: Extensible, sortable & bulk action capable members listing + export to CSV tool for Paid Memberships Pro.
    6 Version: 7.4
     6Version: 7.5
    77Author: Thomas Sjolshagen @ Eighty / 20 Results by Wicked Strong Chicks, LLC <[email protected]>
    88Author URI: https://eighty20results.com/thomas-sjolshagen/
     
    3333
    3434if ( ! defined( 'E20R_MEMBERSLIST_VER' ) ) {
    35     define( 'E20R_MEMBERSLIST_VER', '7.4' );
     35    define( 'E20R_MEMBERSLIST_VER', '7.5' );
    3636}
    3737
  • e20r-members-list/tags/7.5/class/members-list/js/e20r-memberslist-page.js

    r2474437 r2474442  
    3434            this.changed_input = $('input[class^="e20r-members-list-input-"]');
    3535            this.changed_select = $( 'select[class^="e20r-members-list-select-"]');
    36             this.bulkUpdate = $('#doaction, #doaction2');
    37             this.updateListBtn = $('#e20r-update-list');
    38             this.clearSearchBtn = $('#e20r-clear-search');
     36            this.levels_dropdown = $('#e20r-pmpro-memberslist-levels');
     37            this.bulkUpdate = $('#doaction, #doaction2');
     38            this.updateListBtn = $('#e20r-update-list');
    3939            this.search_field = $('#post-search-input');
    40             this.dateFields = $('.e20r-members-list-input-enddate, .e20r-members-list-input-startdate');
     40            this.dateFields = $('.e20r-members-list-input-enddate, .e20r-members-list-input-startdate');
    4141            this.dataSearchBtn = $('#e20r-memberslist-search-data');
    42 
    4342            this.bulkActionSelectTop = $('select#bulk-action-selector-top');
    4443            this.bulkActionSelectBottom = $('select#bulk-action-selector-bottom');
     
    7271            self.updateListBtn.unbind('click').on('click', function(ev) {
    7372
    74                 ev.preventDefault();
    75 
    7673                if ( 'Clear Search' === self.updateListBtn.val() ) {
    7774                    console.log("We're clearing the search...");
     
    8279                $('#post-search-input').val(null);
    8380            });
     81
     82            // Trigger search whenever the levels drop-down is changed
     83            self.levels_dropdown.unbind('change').on('change', function() {
     84                self.dataSearchBtn.click();
     85            });
    8486
    8587            self.changed_select.unbind('change').on('change', function() {
  • e20r-members-list/trunk/README.txt

    r2474437 r2474442  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 7.4
     7Stable tag: 7.5
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl
     
    214214== Changelog ==
    215215
     216== 7.5 ==
     217* BUG FIX: Didn't automatically search for levels only when selected level is changed
     218
    216219== 7.4 ==
    217 
    218220* ENH: Adding script to remove local & upstream tasks based on string pattern
    219221* ENH: Adding support for auto-labeling of Pull Requests upon commit
     
    228230
    229231== 7.2 ==
    230 
    231232* BUG FIX: Better detection of custom one-click update when not using wordpress.org repo version of plugin
    232233
  • e20r-members-list/trunk/class.e20r-members-list.php

    r2474437 r2474442  
    44Plugin URI: https://wordpress.org/plugins/e20r-members-list
    55Description: Extensible, sortable & bulk action capable members listing + export to CSV tool for Paid Memberships Pro.
    6 Version: 7.4
     6Version: 7.5
    77Author: Thomas Sjolshagen @ Eighty / 20 Results by Wicked Strong Chicks, LLC <[email protected]>
    88Author URI: https://eighty20results.com/thomas-sjolshagen/
     
    3333
    3434if ( ! defined( 'E20R_MEMBERSLIST_VER' ) ) {
    35     define( 'E20R_MEMBERSLIST_VER', '7.4' );
     35    define( 'E20R_MEMBERSLIST_VER', '7.5' );
    3636}
    3737
  • e20r-members-list/trunk/class/members-list/js/e20r-memberslist-page.js

    r2474437 r2474442  
    3434            this.changed_input = $('input[class^="e20r-members-list-input-"]');
    3535            this.changed_select = $( 'select[class^="e20r-members-list-select-"]');
    36             this.bulkUpdate = $('#doaction, #doaction2');
    37             this.updateListBtn = $('#e20r-update-list');
    38             this.clearSearchBtn = $('#e20r-clear-search');
     36            this.levels_dropdown = $('#e20r-pmpro-memberslist-levels');
     37            this.bulkUpdate = $('#doaction, #doaction2');
     38            this.updateListBtn = $('#e20r-update-list');
    3939            this.search_field = $('#post-search-input');
    40             this.dateFields = $('.e20r-members-list-input-enddate, .e20r-members-list-input-startdate');
     40            this.dateFields = $('.e20r-members-list-input-enddate, .e20r-members-list-input-startdate');
    4141            this.dataSearchBtn = $('#e20r-memberslist-search-data');
    42 
    4342            this.bulkActionSelectTop = $('select#bulk-action-selector-top');
    4443            this.bulkActionSelectBottom = $('select#bulk-action-selector-bottom');
     
    7271            self.updateListBtn.unbind('click').on('click', function(ev) {
    7372
    74                 ev.preventDefault();
    75 
    7673                if ( 'Clear Search' === self.updateListBtn.val() ) {
    7774                    console.log("We're clearing the search...");
     
    8279                $('#post-search-input').val(null);
    8380            });
     81
     82            // Trigger search whenever the levels drop-down is changed
     83            self.levels_dropdown.unbind('change').on('change', function() {
     84                self.dataSearchBtn.click();
     85            });
    8486
    8587            self.changed_select.unbind('change').on('change', function() {
Note: See TracChangeset for help on using the changeset viewer.