Plugin Directory

Changeset 2856121


Ignore:
Timestamp:
01/27/2023 10:12:42 PM (3 years ago)
Author:
abcfolio
Message:

Version: 0.2.9

Location:
staff-list-vcard/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • staff-list-vcard/trunk/readme.txt

    r2831822 r2856121  
    88Tested up to: 6.1
    99Requires PHP: 7.0
    10 Stable tag: 0.2.8
     10Stable tag: 0.2.9
    1111License: GPLv2 or later
    1212License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
     80= 0.2.9 20230127 =
     81* Update: BaconQrCode to version 2.0.7
     82
    8083= 0.2.8 20220415 =
    8184* Update: Added vendor prefix to Autoloader class.
  • staff-list-vcard/trunk/staff-list-vcard.php

    r2710322 r2856121  
    22/*
    33Plugin Name: Staff List vCard
    4 Plugin URI: http://abcfolio.com/wordpress-plugin-staff-list/
     4Plugin URI: https://abcfolio.com/wordpress-plugin-staff-list-vcard/
    55Description:  Extension for Staff List plugin to create and download vCards.
    66Author: abcFolio
    7 Author URI: http://www.abcfolio.com
     7Author URI: https://www.abcfolio.com
    88Text Domain: staff-list
    99Domain Path: /languages
    10 Version: 0.2.8
     10Version: 0.2.9
    1111------------------------------------------------------------------------
    1212Copyright 2009-2015 abcFolio.
     
    3636    public $pluginSlug = 'abcfolio-staff-list-vcard';
    3737    public $prefix = 'abcfvc';
    38     public $pluginVersion = '0.2.8';
     38    public $pluginVersion = '0.2.9';
    3939
    4040    public static function instance() {
     
    166166} // End class_exists check
    167167
    168 
    169168/**
    170169 * The main function responsible for returning the one true ABCFVC_Main instance to functions everywhere.
  • staff-list-vcard/trunk/vendor/BaconQrCode/Renderer/Eye/CompositeEye.php

    r2517984 r2856121  
    3434    public function getInternalPath() : Path
    3535    {
    36         return $this->externalEye->getInternalPath();
     36        return $this->internalEye->getInternalPath();
    3737    }
    3838}
  • staff-list-vcard/trunk/vendor/Endroid/QrCode/Matrix/Matrix.php

    r2646260 r2856121  
    1414    /** @var array<int, array<int, int>> */
    1515    private array $blockValues = [];
     16    // Error: syntax error, unexpected 'array' (T_ARRAY), expecting function (T_FUNCTION) or const (T_CONST)
     17    // Typing a property as an array is compliant with any PHP version >= 7.4.0.
    1618
    1719    private float $blockSize;
Note: See TracChangeset for help on using the changeset viewer.