Skip to content

Commit fa599f6

Browse files
committed
Prepared for 1.3.0 release
1 parent 3996283 commit fa599f6

25 files changed

Lines changed: 272 additions & 184 deletions

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.3.0
2+
While primarily a maintenance release, one new feature has been added. WP Featherlight now supports Gutenberg galleries.
3+
4+
Here's a full list of what's changed since the last release:
5+
6+
- Feature: Gutenberg support
7+
- Tweak: General code cleanup in plugin
8+
- Dev: Updated [Featherlight](https://github.com/noelboss/featherlight/) to `1.7.13`
9+
- Change of ownership
10+
111
## 1.2.0
212
This is primarily a maintenance release, but one new feature has been added. HTML in captions is now supported!
313

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

2434
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.
2535

26-
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.
36+
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.
2737

2838
- Tweak: Improved transition between images within galleries
2939
- Tweak: Moved our disable lightbox checkbox into the publish meta box to streamline the admin

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributing to WP Featherlight
2+
3+
:+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
4+
5+
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:
6+
7+
- Clone forked repo
8+
- Run `yarn install`
9+
- Run `bower install`
10+
- Run `grunt build`
11+
- Commit all changes and generated files and create a pull request against `develop`
12+
13+
If you run into any issues or have any questions, please open an issue.
14+
15+
Thanks again!

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Here's an example of the plugin being used to load a large (5mb) external image
2525

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

28-
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/).
28+
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/).
2929

3030
## Installation ##
3131

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

3636
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.
3737

38-
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).
38+
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).
3939

4040
## Contributing ##
4141

42-
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.
42+
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.

admin/class-meta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Methods used for adding and saving meta data for WP Featherlight.
44
*
55
* @package WPFeatherlight\Admin
6-
* @copyright Copyright (c) 2016, WP Site Care
6+
* @copyright Copyright (c) 2018, Cipher Development, LLC
77
* @license GPL-2.0+
88
* @since 0.1.0
99
*/

admin/views/meta-box.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Template to display the WP Featherlight admin sidebar meta box.
44
*
55
* @package WPFeatherlight\Admin\Views
6-
* @copyright Copyright (c) 2016, WP Site Care
6+
* @copyright Copyright (c) 2018, Cipher Development, LLC
77
* @license GPL-2.0+
88
* @since 0.1.0
99
*/

css/wp-featherlight-rtl.css

Lines changed: 10 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/wp-featherlight-rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)