Changeset 2856121
- Timestamp:
- 01/27/2023 10:12:42 PM (3 years ago)
- Location:
- staff-list-vcard/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
staff-list-vcard.php (modified) (3 diffs)
-
vendor/BaconQrCode/Renderer/Eye/CompositeEye.php (modified) (1 diff)
-
vendor/Endroid/QrCode/Matrix/Matrix.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
staff-list-vcard/trunk/readme.txt
r2831822 r2856121 8 8 Tested up to: 6.1 9 9 Requires PHP: 7.0 10 Stable tag: 0.2. 810 Stable tag: 0.2.9 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 78 78 == Changelog == 79 79 80 = 0.2.9 20230127 = 81 * Update: BaconQrCode to version 2.0.7 82 80 83 = 0.2.8 20220415 = 81 84 * Update: Added vendor prefix to Autoloader class. -
staff-list-vcard/trunk/staff-list-vcard.php
r2710322 r2856121 2 2 /* 3 3 Plugin Name: Staff List vCard 4 Plugin URI: http ://abcfolio.com/wordpress-plugin-staff-list/4 Plugin URI: https://abcfolio.com/wordpress-plugin-staff-list-vcard/ 5 5 Description: Extension for Staff List plugin to create and download vCards. 6 6 Author: abcFolio 7 Author URI: http ://www.abcfolio.com7 Author URI: https://www.abcfolio.com 8 8 Text Domain: staff-list 9 9 Domain Path: /languages 10 Version: 0.2. 810 Version: 0.2.9 11 11 ------------------------------------------------------------------------ 12 12 Copyright 2009-2015 abcFolio. … … 36 36 public $pluginSlug = 'abcfolio-staff-list-vcard'; 37 37 public $prefix = 'abcfvc'; 38 public $pluginVersion = '0.2. 8';38 public $pluginVersion = '0.2.9'; 39 39 40 40 public static function instance() { … … 166 166 } // End class_exists check 167 167 168 169 168 /** 170 169 * 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 34 34 public function getInternalPath() : Path 35 35 { 36 return $this-> externalEye->getInternalPath();36 return $this->internalEye->getInternalPath(); 37 37 } 38 38 } -
staff-list-vcard/trunk/vendor/Endroid/QrCode/Matrix/Matrix.php
r2646260 r2856121 14 14 /** @var array<int, array<int, int>> */ 15 15 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. 16 18 17 19 private float $blockSize;
Note: See TracChangeset
for help on using the changeset viewer.