Changeset 3393088
- Timestamp:
- 11/10/2025 05:34:06 PM (5 months ago)
- Location:
- blocks-for-bandcamp/trunk
- Files:
-
- 3 edited
-
blocks-for-bandcamp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blocks-for-bandcamp/trunk/blocks-for-bandcamp.php
r3390694 r3393088 6 6 Author: Greyforest 7 7 Author URI: https://www.greyforest.digital 8 Version: 1.0. 38 Version: 1.0.4 9 9 Requires at least: 6.0 10 10 Requires PHP: 7.0 … … 21 21 if (!defined('ABSPATH')) { return; } 22 22 23 define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_VERSION','1.0. 3');23 define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_VERSION','1.0.4'); 24 24 define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_URL',plugin_dir_url( __FILE__ )); 25 25 define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_PATH',dirname( __FILE__ )); -
blocks-for-bandcamp/trunk/readme.txt
r3390694 r3393088 8 8 Requires at least: 6.0 9 9 Tested up to: 6.8 10 Stable tag: 1.0. 310 Stable tag: 1.0.4 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 69 69 == Changelog == 70 70 71 = 1.0.4 -> November 10th, 2025 = 72 * Fixed missing band_url in non-album merch links 73 71 74 = 1.0.3 -> November 5th, 2025 = 72 75 * Fixed Gutenberg component dependencies error 73 76 * Block Error CSS enqueuing fix 77 78 = 1.0.2 -> November 5th, 2025 = 79 * Discarded - commit error 74 80 75 81 = 1.0.1 -> October 1st, 2025 = -
blocks-for-bandcamp/trunk/src/functions.php
r3368247 r3393088 335 335 336 336 $data['packages'][$p]['id'] = $package['id']; 337 $data['packages'][$p]['url'] = $package['url'];337 $data['packages'][$p]['url'] = (strpos($package['url'], $data['band_url']) === 0) ? $package['url'] : $data['band_url'] . $package['url']; 338 338 $data['packages'][$p]['type'] = $package['type_name']; 339 339 $data['packages'][$p]['title'] = $package['title'];
Note: See TracChangeset
for help on using the changeset viewer.