Changeset 2936286
- Timestamp:
- 07/10/2023 01:43:34 AM (3 years ago)
- Location:
- cardanopress-ispo/trunk
- Files:
-
- 5 edited
-
cardanopress-ispo.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
src/Actions.php (modified) (1 diff)
-
src/Application.php (modified) (1 diff)
-
src/PoolManager.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cardanopress-ispo/trunk/cardanopress-ispo.php
r2936282 r2936286 7 7 * Author URI: https://cardanopress.io 8 8 * Description: A CardanoPress extension for ISPO 9 * Version: 1. 1.09 * Version: 1.2.0 10 10 * License: GPL-2.0-only 11 11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 34 34 35 35 // Load the main plugin class 36 require_once plugin_dir_path(CP_ISPO_FILE) . ' vendor/autoload.php';36 require_once plugin_dir_path(CP_ISPO_FILE) . 'dependencies/vendor/autoload_packages.php'; 37 37 38 38 // Instantiate -
cardanopress-ispo/trunk/readme.txt
r2936282 r2936286 4 4 Tags: cardano, blockchain, web3, metamask, nami, eternl, ada 5 5 Requires at least: 4.9 6 Tested up to: 6. 1.17 Stable tag: 1. 0.06 Tested up to: 6.2.2 7 Stable tag: 1.2.0 8 8 Requires PHP: 7.4 9 9 License: GPLv3 … … 134 134 to the plugins. 135 135 136 137 = 1.2.0 = 138 An updated framework with prefixed dependencies 139 Handle data for unprepared pool network 140 Sanitize input stake address 141 136 142 = 1.1.0 = 137 143 Official repository release (exact same version as 0.8.0) 144 145 = 1.0.0 = 146 First stable release (exact same version as 0.7.0) 138 147 139 148 = 0.8.0 = … … 141 150 Provide helper methods for epoch conversion 142 151 Ready for translations 143 144 = 1.0.0 =145 First stable release (exact same version as 0.7.0)146 152 147 153 = v0.7.0 = -
cardanopress-ispo/trunk/src/Actions.php
r2936282 r2936286 148 148 protected function filterStakeAddress(string $inputAddress): string 149 149 { 150 $inputAddress = sanitize_text_field($inputAddress); 151 150 152 if (0 === strpos($inputAddress, 'stake1') || 0 === strpos($inputAddress, 'stake_test1')) { 151 153 return $inputAddress; -
cardanopress-ispo/trunk/src/Application.php
r2936282 r2936286 83 83 $data = $poolData[$network] ?? $this->poolManager::DATA_STRUCTURE; 84 84 85 if (empty($data)) { 86 $data = $this->poolManager::DATA_STRUCTURE; 87 } 88 85 89 return $data; 86 90 } -
cardanopress-ispo/trunk/src/PoolManager.php
r2851606 r2936286 12 12 use PBWebDev\CardanoPress\Blockfrost; 13 13 use Psr\Log\LoggerInterface; 14 use ThemePlate\Cache\CacheManager;15 use ThemePlate\Process\Tasks;14 use CardanoPress\ISPO\Dependencies\ThemePlate\Cache\CacheManager; 15 use CardanoPress\ISPO\Dependencies\ThemePlate\Process\Tasks; 16 16 use WP_Error; 17 17
Note: See TracChangeset
for help on using the changeset viewer.