Skip to content

Commit

Permalink
Bumper version to v3.0.1 and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Viper007Bond committed Dec 23, 2017
1 parent b6d940b commit 670eb44
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,21 @@ The source code for this plugin is available on [GitHub](https://github.com/Vipe

== ChangeLog ==

= Version 3.0.1 =

* Temporarily disable the update post functionality. I tested it a lot but it seems there's still some bugs.
* Temporarily disable the delete old thumbnails functionality. It seems to work fine but without the update post functionality, it's not as useful.
* Try to more gracefully handle cases where there's missing metadata for attachments.
* Wait until `init` to initialize the plugin so themes can filter the plugin's capability. `plugins_loaded` is too early.
* Fix a JavaScript error that would cause the whole regeneration process to stop if an individual image returned non-JSON, such as a 500 error code.
* Accept GET requests for the regenerate REST API endpoint instead of just POSTs. For some reasons some people's sites are using GET despite the code saying use POST.
* Make the attachment ID clickable in error messages.
* Fetch 25 attachments at a time instead of 5. I was using 5 for testing.
* PHP notice fixes.

= Version 3.0.0 =

Complete rewrite from scratch using Vue.js and the WordPress REST API.
* Complete rewrite from scratch using Vue.js and the WordPress REST API.

= Version 2.2.4 =

Expand Down
4 changes: 2 additions & 2 deletions regenerate-thumbnails.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Plugin Name: Regenerate Thumbnails
Description: Regenerate the thumbnails for one or more of your image uploads. Useful when changing their sizes or your theme.
Plugin URI: https://alex.blog/wordpress-plugins/regenerate-thumbnails/
Version: 3.0.0
Version: 3.0.1
Author: Alex Mills (Viper007Bond)
Author URI: https://alex.blog/
Text Domain: regenerate-thumbnails
Expand Down Expand Up @@ -43,7 +43,7 @@ class RegenerateThumbnails {
*
* @var string
*/
public $version = '3.0.0';
public $version = '3.0.1';

/**
* The menu ID of this plugin, as returned by add_management_page().
Expand Down

0 comments on commit 670eb44

Please sign in to comment.