Plugin Directory

Changeset 2149005


Ignore:
Timestamp:
08/31/2019 05:36:04 PM (7 years ago)
Author:
Will Brownsberger
Message:

4.5.1.0

Location:
wp-issues-crm
Files:
3 edited
43 copied

Legend:

Unmodified
Added
Removed
  • wp-issues-crm/tags/4.5.1.0/php/entity/class-wic-entity-email-inbox-parse.php

    r2147450 r2149005  
    188188            $email_object->category = 'CATEGORY_GENERAL';
    189189        }
    190         // apply category filter for team members before local category function 
    191         $email_object->category = self::does_user_email_exist( $email_object->from_email ) ? 'CATEGORY_TEAM' : $email_object->category;
    192        
     190
    193191        // local category filter may or may not respect CATEGORY_TEAM
    194192        $category   =   apply_filters ( 'wp_issues_crm_local_category_filter', $email_object->category, $email_object, 'Y' == $is_my_constituent );
  • wp-issues-crm/tags/4.5.1.0/readme.txt

    r2147450 r2149005  
    55Requires at least: 5
    66Tested up to: 5.2.1
    7 Stable tag: 4.5.0.2
     7Stable tag: 4.5.1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    108108
    109109== Changelog ==
     110= 4.5.1.0 =
     111* Revise handling of CATEGORY_TEAM -- based it on new email control Tab, rather than over inclusive user table approach
     112* Add additional email security construct -- send_email to allow more granular division of email responsibility
     113* Add hook to allow consolidation of tabs retroactively
     114* Workaround wordpress update_option bug for mailer hold
     115* Fix bug in computation of open unassigned cases on dashboard
    110116= 4.5.0.2 =
    111117* Alter function to support less than full load of Wordpress in cron environment
  • wp-issues-crm/tags/4.5.1.0/wp-issues-crm.php

    r2149004 r2149005  
    44 * Plugin URI: http://wp-issues-crm.com
    55 * Description: Constituent Relationship Management for organizations that respond to constituents.  Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories.
    6  * Version: 4.5.0.2
     6 * Version: 4.5.1.0
    77 * Author: Will Brownsberger
    88 * Author URI: http://willbrownsberger.com
     
    3939// set database version global;
    4040global $wp_issues_crm_db_version;
    41 $wp_issues_crm_db_version = '4.5.0.1.1';
     41$wp_issues_crm_db_version = '4.5.1.0';
    4242/*
    4343* set js_css version global -- three possibilities:
     
    4848*/
    4949global $wp_issues_crm_js_css_version;
    50 $wp_issues_crm_js_css_version = '4.5.0.1'; // may or not be set at release time
     50$wp_issues_crm_js_css_version = '4.5.1.0'; // may or not be set at release time
    5151if ( '' == $wp_issues_crm_js_css_version ) {
    5252    if ( strpos ( site_url(), 'localhost' ) > 0 ) {
  • wp-issues-crm/trunk/php/entity/class-wic-entity-email-inbox-parse.php

    r2147450 r2149005  
    188188            $email_object->category = 'CATEGORY_GENERAL';
    189189        }
    190         // apply category filter for team members before local category function 
    191         $email_object->category = self::does_user_email_exist( $email_object->from_email ) ? 'CATEGORY_TEAM' : $email_object->category;
    192        
     190
    193191        // local category filter may or may not respect CATEGORY_TEAM
    194192        $category   =   apply_filters ( 'wp_issues_crm_local_category_filter', $email_object->category, $email_object, 'Y' == $is_my_constituent );
  • wp-issues-crm/trunk/readme.txt

    r2147450 r2149005  
    55Requires at least: 5
    66Tested up to: 5.2.1
    7 Stable tag: 4.5.0.2
     7Stable tag: 4.5.1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    108108
    109109== Changelog ==
     110= 4.5.1.0 =
     111* Revise handling of CATEGORY_TEAM -- based it on new email control Tab, rather than over inclusive user table approach
     112* Add additional email security construct -- send_email to allow more granular division of email responsibility
     113* Add hook to allow consolidation of tabs retroactively
     114* Workaround wordpress update_option bug for mailer hold
     115* Fix bug in computation of open unassigned cases on dashboard
    110116= 4.5.0.2 =
    111117* Alter function to support less than full load of Wordpress in cron environment
  • wp-issues-crm/trunk/wp-issues-crm.php

    r2149004 r2149005  
    44 * Plugin URI: http://wp-issues-crm.com
    55 * Description: Constituent Relationship Management for organizations that respond to constituents.  Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories.
    6  * Version: 4.5.0.2
     6 * Version: 4.5.1.0
    77 * Author: Will Brownsberger
    88 * Author URI: http://willbrownsberger.com
     
    3939// set database version global;
    4040global $wp_issues_crm_db_version;
    41 $wp_issues_crm_db_version = '4.5.0.1.1';
     41$wp_issues_crm_db_version = '4.5.1.0';
    4242/*
    4343* set js_css version global -- three possibilities:
     
    4848*/
    4949global $wp_issues_crm_js_css_version;
    50 $wp_issues_crm_js_css_version = '4.5.0.1'; // may or not be set at release time
     50$wp_issues_crm_js_css_version = '4.5.1.0'; // may or not be set at release time
    5151if ( '' == $wp_issues_crm_js_css_version ) {
    5252    if ( strpos ( site_url(), 'localhost' ) > 0 ) {
Note: See TracChangeset for help on using the changeset viewer.