Skip to content

Commit

Permalink
Updated readme changelog. Bumped version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Sep 2, 2015
1 parent 84646c6 commit 8d3bdf2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ You need to make sure that each image is the same height. You can do this by set

Changelog
---------
* __1.9.1__
* Titles and captions now show if present, independently of each other (previously both needed to be filled in)
* You can hide them by leaving blank, or setting _Show Slide Titles / Captions?_ to False in the settings
* New German translation courtesy of @stefan-meier
* `Undefined index` warning fixed by @pfernandez
* Carousel items now have proper CSS IDs (by @chickahoona)
* Fixed bug where interval of 0 was replaced with the default interval time
* Nicer icon in the WordPress admin (thanks @stefan-meier)
* Localization file path issue fixed (thanks @stefan-meier)
* __1.9__
* Prevented the help tab from displaying on pages other than Carousel Items
* Made the output buffer cleaning only happen if we have images (thanks @ChrisLomax)
Expand Down
2 changes: 1 addition & 1 deletion trunk/cpt-bootstrap-carousel.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: CPT Bootstrap Carousel
Plugin URI: http://www.tallphil.co.uk/bootstrap-carousel/
Description: A custom post type for choosing images and content which outputs <a href="http://getbootstrap.com/javascript/#carousel" target="_blank">Bootstrap Carousel</a> from a shortcode. Requires Bootstrap javascript and CSS to be loaded separately.
Version: 1.9
Version: 1.9.1
Author: Phil Ewels
Author URI: http://phil.ewels.co.uk
Text Domain: cpt-bootstrap-carousel
Expand Down
2 changes: 1 addition & 1 deletion trunk/cptbc-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function page_init() {
);
add_settings_field(
'showcaption', // ID
__('Show Slide Captions?', 'cpt-bootstrap-carousel'), // Title
__('Show Slide Titles / Captions?', 'cpt-bootstrap-carousel'), // Title
array( $this, 'showcaption_callback' ), // Callback
'cpt-bootstrap-carousel', // Page
'cptbc_settings_behaviour' // Section
Expand Down
14 changes: 12 additions & 2 deletions trunk/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: tallphil
Donate Link: http://www.tallphil.co.uk/bootstrap-carousel/
Tags: carousel, slider, image, bootstrap
Requires at least: 3.0.1
Tested up to: 4.2
Stable tag: 1.9
Tested up to: 4.3
Stable tag: 1.9.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -156,6 +156,16 @@ You need to make sure that each image is the same height. You can do this by set

== Changelog ==

= 1.9.1 =
* Titles and captions now show if present, independently of each other (previously both needed to be filled in)
* You can hide them by leaving blank, or setting _Show Slide Titles / Captions?_ to False in the settings
* New German translation courtesy of @stefan-meier
* `Undefined index` warning fixed by @pfernandez
* Carousel items now have proper CSS IDs (by @chickahoona)
* Fixed bug where interval of 0 was replaced with the default interval time
* Nicer icon in the WordPress admin (thanks @stefan-meier)
* Localization file path issue fixed (thanks @stefan-meier)

= 1.9 =
* Prevented the help tab from displaying on pages other than Carousel Items
* Made the output buffer cleaning only happen if we have images (thanks @ChrisLomax)
Expand Down

0 comments on commit 8d3bdf2

Please sign in to comment.