diff --git a/README.md b/README.md index a475453..9f26c7a 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ This section describes how to install the plugin and get it working. # Changelog += 1.3.1 = + +* Fix for BMLT Drupal download link. + = 1.3.0 = * Added settings page for GitHub API Token. diff --git a/bmlt-versions/bmlt-versions.php b/bmlt-versions/bmlt-versions.php index 7a25e15..0cbeeda 100644 --- a/bmlt-versions/bmlt-versions.php +++ b/bmlt-versions/bmlt-versions.php @@ -5,7 +5,7 @@ Description: A simple content generator to display the versions and links of the various BMLT components. Add [bmlt_versions] to a page or a post to generate the list. Author: BMLT Authors Author URI: https://bmlt.app -Version: 1.3.0 +Version: 1.3.1 Install: Drop this directory into the "wp-content/plugins/" directory and activate it. */ /* Disallow direct access to the plugin file */ @@ -160,8 +160,9 @@ public function bmltVersionsFunc($atts = []) } if ($drupal) { $drupal_date = $this->githubLatestReleaseDate('bmlt-drupal'); + $drupal_version = $this->githubLatestReleaseVersion('bmlt-drupal'); $content .= '
  • '; - $content .= 'Drupal 7 Module (zip file) - ' . $drupal_date . ''; + $content .= 'Drupal 7 Module (zip file) - ' . $drupal_date . ''; $content .= '
  • '; } if ($basic) { diff --git a/bmlt-versions/readme.txt b/bmlt-versions/readme.txt index fda73cf..e094d4e 100644 --- a/bmlt-versions/readme.txt +++ b/bmlt-versions/readme.txt @@ -3,7 +3,7 @@ Contributors: pjaudiomv, radius314 Tags: bmlt, meeting list Tested up to: 5.3.2 -Stable tag: 1.3.0 +Stable tag: 1.3.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -35,6 +35,10 @@ This section describes how to install the plugin and get it working. == Changelog == += 1.3.1 = + +* Fix for BMLT Drupal download link. + = 1.3.0 = * Added settings page for GitHub API Token.