Plugin Directory

Changeset 3393088


Ignore:
Timestamp:
11/10/2025 05:34:06 PM (5 months ago)
Author:
greyforestdigital
Message:

Update to version 1.0.4

Location:
blocks-for-bandcamp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • blocks-for-bandcamp/trunk/blocks-for-bandcamp.php

    r3390694 r3393088  
    66Author: Greyforest
    77Author URI: https://www.greyforest.digital
    8 Version: 1.0.3
     8Version: 1.0.4
    99Requires at least: 6.0
    1010Requires PHP: 7.0
     
    2121if (!defined('ABSPATH')) { return; }
    2222
    23 define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_VERSION','1.0.3');
     23define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_VERSION','1.0.4');
    2424define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_URL',plugin_dir_url( __FILE__ ));
    2525define('GF_BLOCKS_FOR_BANDCAMP_PLUGIN_PATH',dirname( __FILE__ ));
  • blocks-for-bandcamp/trunk/readme.txt

    r3390694 r3393088  
    88Requires at least: 6.0
    99Tested up to: 6.8
    10 Stable tag: 1.0.3
     10Stable tag: 1.0.4
    1111Requires PHP: 7.0
    1212License: GPLv2 or later
     
    6969== Changelog ==
    7070
     71= 1.0.4 -> November 10th, 2025 =
     72* Fixed missing band_url in non-album merch links
     73
    7174= 1.0.3 -> November 5th, 2025 =
    7275* Fixed Gutenberg component dependencies error
    7376* Block Error CSS enqueuing fix
     77
     78= 1.0.2 -> November 5th, 2025 =
     79* Discarded - commit error
    7480
    7581= 1.0.1 -> October 1st, 2025 =
  • blocks-for-bandcamp/trunk/src/functions.php

    r3368247 r3393088  
    335335
    336336        $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'];
    338338        $data['packages'][$p]['type'] = $package['type_name'];
    339339        $data['packages'][$p]['title'] = $package['title'];
Note: See TracChangeset for help on using the changeset viewer.