Plugin Directory

Changeset 2828509


Ignore:
Timestamp:
12/05/2022 05:12:01 AM (3 years ago)
Author:
crowdaa
Message:

Added tag 1.7.1 (minor patch).

Location:
crowdaa-sync
Files:
4 edited
74 copied

Legend:

Unmodified
Added
Removed
  • crowdaa-sync/tags/1.7.1/CHANGELOG

    r2825896 r2828509  
    66
    77## [Unreleased]
     8
     9## [1.7.1] - 2022-12-05
     10
     11### Changed
     12
     13- Fixed badges checking on API categories (requiring at least one badge instead of all)
    814
    915## [1.7.0] - 2022-11-29
  • crowdaa-sync/tags/1.7.1/README.txt

    r2825896 r2828509  
    66Requires PHP: 7.3
    77Tested up to: 5.9
    8 Stable tag: 1.7.0
     8Stable tag: 1.7.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • crowdaa-sync/tags/1.7.1/admin/class-crowdaa-sync-api.php

    r2825896 r2828509  
    991991    if (is_array($badges)) {
    992992      $data['badges'] = $badges;
    993       $data['badgesAllow'] = 'all';
     993      $data['badgesAllow'] = 'any';
    994994    }
    995995
     
    10461046    if (is_array($badges)) {
    10471047      $data['badges'] = $badges;
    1048       $data['badgesAllow'] = 'all';
     1048      $data['badgesAllow'] = 'any';
    10491049    }
    10501050
  • crowdaa-sync/tags/1.7.1/crowdaa-sync.php

    r2825896 r2828509  
    1414 * Plugin URI:       
    1515 * Description:       Plugin for synchronizing WordPress site and Crowdaa CMS
    16  * Version:           1.7.0
     16 * Version:           1.7.1
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.2
     
    3434 * Uses SemVer - https://semver.org
    3535 */
    36 define('CROWDAA_SYNC_VERSION', '1.7.0');
     36define('CROWDAA_SYNC_VERSION', '1.7.1');
    3737define('CROWDAA_SYNC_PLUGIN_DIR', __DIR__);
    3838define('CROWDAA_SYNC_PLUGIN_NAME', 'crowdaa-sync');
  • crowdaa-sync/trunk/CHANGELOG

    r2825896 r2828509  
    66
    77## [Unreleased]
     8
     9## [1.7.1] - 2022-12-05
     10
     11### Changed
     12
     13- Fixed badges checking on API categories (requiring at least one badge instead of all)
    814
    915## [1.7.0] - 2022-11-29
  • crowdaa-sync/trunk/README.txt

    r2825896 r2828509  
    66Requires PHP: 7.3
    77Tested up to: 5.9
    8 Stable tag: 1.7.0
     8Stable tag: 1.7.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • crowdaa-sync/trunk/admin/class-crowdaa-sync-api.php

    r2825896 r2828509  
    991991    if (is_array($badges)) {
    992992      $data['badges'] = $badges;
    993       $data['badgesAllow'] = 'all';
     993      $data['badgesAllow'] = 'any';
    994994    }
    995995
     
    10461046    if (is_array($badges)) {
    10471047      $data['badges'] = $badges;
    1048       $data['badgesAllow'] = 'all';
     1048      $data['badgesAllow'] = 'any';
    10491049    }
    10501050
  • crowdaa-sync/trunk/crowdaa-sync.php

    r2825896 r2828509  
    1414 * Plugin URI:       
    1515 * Description:       Plugin for synchronizing WordPress site and Crowdaa CMS
    16  * Version:           1.7.0
     16 * Version:           1.7.1
    1717 * Requires at least: 5.5
    1818 * Requires PHP:      7.2
     
    3434 * Uses SemVer - https://semver.org
    3535 */
    36 define('CROWDAA_SYNC_VERSION', '1.7.0');
     36define('CROWDAA_SYNC_VERSION', '1.7.1');
    3737define('CROWDAA_SYNC_PLUGIN_DIR', __DIR__);
    3838define('CROWDAA_SYNC_PLUGIN_NAME', 'crowdaa-sync');
Note: See TracChangeset for help on using the changeset viewer.