Skip to content

Commit

Permalink
5.7.1 prerelease commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mtekk committed Jun 18, 2017
1 parent b9cf2aa commit 56340f2
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions breadcrumb-navxt.php
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Breadcrumb NavXT
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
Version: 5.7.0
Version: 5.7.1
Author: John Havlik
Author URI: http://mtekk.us/
License: GPL2
Expand Down Expand Up @@ -60,7 +60,7 @@ function bcn_phpold()
//TODO change to extends mtekk_plugKit
class breadcrumb_navxt
{
const version = '5.7.0';
const version = '5.7.1';
protected $name = 'Breadcrumb NavXT';
protected $identifier = 'breadcrumb-navxt';
protected $unique_prefix = 'bcn';
Expand Down
2 changes: 1 addition & 1 deletion class.bcn_admin.php
Expand Up @@ -42,7 +42,7 @@ function bcn_phpold()
*/
class bcn_admin extends mtekk_adminKit
{
const version = '5.7.0';
const version = '5.7.1';
protected $full_name = 'Breadcrumb NavXT Settings';
protected $short_name = 'Breadcrumb NavXT';
protected $access_level = 'manage_options';
Expand Down
2 changes: 1 addition & 1 deletion class.bcn_breadcrumb.php
Expand Up @@ -21,7 +21,7 @@
class bcn_breadcrumb
{
//Our member variables
const version = '5.7.0';
const version = '5.7.1';
//The main text that will be shown
protected $title;
//The breadcrumb's template, used durring assembly
Expand Down
2 changes: 1 addition & 1 deletion class.bcn_breadcrumb_trail.php
Expand Up @@ -21,7 +21,7 @@
class bcn_breadcrumb_trail
{
//Our member variables
const version = '5.7.0';
const version = '5.7.1';
//An array of breadcrumbs
public $breadcrumbs = array();
public $trail = array();
Expand Down
2 changes: 1 addition & 1 deletion class.bcn_network_admin.php
Expand Up @@ -42,7 +42,7 @@ function bcn_phpold()
*/
class bcn_network_admin extends mtekk_adminKit
{
const version = '5.7.0';
const version = '5.7.1';
protected $full_name = 'Breadcrumb NavXT Network Settings';
protected $short_name = 'Breadcrumb NavXT';
protected $access_level = 'manage_network_options';
Expand Down
2 changes: 1 addition & 1 deletion class.bcn_widget.php
Expand Up @@ -19,7 +19,7 @@
require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
class bcn_widget extends WP_Widget
{
const version = '5.7.0';
const version = '5.7.1';
protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false, 'force' => false);
//Default constructor
function __construct()
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Expand Up @@ -3,8 +3,8 @@ Contributors: mtekk, hakre
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
Requires at least: 4.5
Tested up to: 4.7
Stable tag: 5.7.0
Tested up to: 4.8
Stable tag: 5.7.1
License: GPLv2 or later
Adds breadcrumb navigation showing the visitor's path to their current location.

Expand Down Expand Up @@ -53,6 +53,12 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-

== Changelog ==

= 5.7.1 =
Release date: June 30th, 2017

* Bug fix: Fixed erroneous use of `$linked` that caused a PHP warning in `bcn_display_json_ld()`.
* Bug fix: Fixed issue where removing a breadcrumb from the trail could cause one or more breadcrumb separators to inappropriately disappear.

= 5.7.0 =
Release date: April 21st, 2017

Expand Down

0 comments on commit 56340f2

Please sign in to comment.