Skip to content

Commit

Permalink
Prepared for 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ozzyrod committed Aug 14, 2018
1 parent 3996283 commit fa599f6
Show file tree
Hide file tree
Showing 25 changed files with 272 additions and 184 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.3.0
While primarily a maintenance release, one new feature has been added. WP Featherlight now supports Gutenberg galleries.

Here's a full list of what's changed since the last release:

- Feature: Gutenberg support
- Tweak: General code cleanup in plugin
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.13`
- Change of ownership

## 1.2.0
This is primarily a maintenance release, but one new feature has been added. HTML in captions is now supported!

Expand All @@ -23,7 +33,7 @@ If you're just using the plugin on your site and haven't customized it or paid a

If you're a developer and have written custom code extending the PHP side of WP Featherlight, be sure to test your code before updating.

Under the hood, we've [deprecated some internal methods](https://github.com/wpsitecare/wp-featherlight/search?utf8=%E2%9C%93&q=_deprecated_function) which could potentially break custom code which extends WP Featherlight. The changes are primarily limited to class initialization, so unless you were doing something specific to that, it's unlikely that you'll run into issues.
Under the hood, we've [deprecated some internal methods](https://github.com/cipherdevgroup/wp-featherlight/search?utf8=%E2%9C%93&q=_deprecated_function) which could potentially break custom code which extends WP Featherlight. The changes are primarily limited to class initialization, so unless you were doing something specific to that, it's unlikely that you'll run into issues.

- Tweak: Improved transition between images within galleries
- Tweak: Moved our disable lightbox checkbox into the publish meta box to streamline the admin
Expand Down
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Contributing to WP Featherlight

:+1::tada: First off, thanks for taking the time to contribute! :tada::+1:

Please make all pull requests against the develop branch. These are the steps required to get up and running with the development version of the plugin:

- Clone forked repo
- Run `yarn install`
- Run `bower install`
- Run `grunt build`
- Commit all changes and generated files and create a pull request against `develop`

If you run into any issues or have any questions, please open an issue.

Thanks again!
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Here's an example of the plugin being used to load a large (5mb) external image

![Loader in Action](https://cloud.githubusercontent.com/assets/2184093/7943635/5ba2155e-092b-11e5-8b97-be5ca8cc77d8.gif)

If you find a display problem, it may be related to your theme but please [open an issue](https://github.com/wpsitecare/wp-featherlight/issues) about it so we can look into it. For more information about the Featherlight script itself, check out their [GitHub plugin page](http://noelboss.github.io/featherlight/).
If you find a display problem, it may be related to your theme but please [open an issue](https://github.com/cipherdevgroup/wp-featherlight/issues) about it so we can look into it. For more information about the Featherlight script itself, check out their [GitHub plugin page](http://noelboss.github.io/featherlight/).

## Installation ##

Expand All @@ -35,8 +35,8 @@ The best way to install this plugin is to either [download a copy](https://wordp

While there are no options in the plugin, there are some handy filters to modify the default behavior. As of `0.3.0` all images which use the default WordPress captions will also include a caption when the image is lightboxed. To disable this behavior, filter `wp_featherlight_captions` to false.

You can also disable inclusion of the CSS and JavaScript conditionally using filters which can be found in the `/includes/class-scripts.php` file. If you have questions about how any part of the plugin works, please don't hesitate to [open an issue](https://github.com/wpsitecare/wp-featherlight/issues).
You can also disable inclusion of the CSS and JavaScript conditionally using filters which can be found in the `/includes/class-scripts.php` file. If you have questions about how any part of the plugin works, please don't hesitate to [open an issue](https://github.com/cipherdevgroup/wp-featherlight/issues).

## Contributing ##

If you're a developer, the most current version can be found on the [develop branch](https://github.com/wpsitecare/wp-featherlight/tree/develop). Pull requests, issues, and any feedback are all more than welcome. If you would like to contribute code, please make your pull requests against the develop branch rather than the master.
If you're a developer, the most current version can be found on the [develop branch](https://github.com/cipherdevgroup/wp-featherlight/tree/develop). Pull requests, issues, and any feedback are all more than welcome. If you would like to contribute code, please make your pull requests against the develop branch rather than the master.
2 changes: 1 addition & 1 deletion admin/class-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Methods used for adding and saving meta data for WP Featherlight.
*
* @package WPFeatherlight\Admin
* @copyright Copyright (c) 2016, WP Site Care
* @copyright Copyright (c) 2018, Cipher Development, LLC
* @license GPL-2.0+
* @since 0.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion admin/views/meta-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Template to display the WP Featherlight admin sidebar meta box.
*
* @package WPFeatherlight\Admin\Views
* @copyright Copyright (c) 2016, WP Site Care
* @copyright Copyright (c) 2018, Cipher Development, LLC
* @license GPL-2.0+
* @since 0.1.0
*/
Expand Down
34 changes: 10 additions & 24 deletions css/wp-featherlight-rtl.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/wp-featherlight-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fa599f6

Please sign in to comment.