Skip to content

Commit

Permalink
Prep for v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevalk committed Apr 19, 2024
1 parent 9921800 commit 42cee3b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
Binary file modified .wordpress-org/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion aaa-option-optimizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Plugin Name: AAA Option Optimizer
* Plugin URI: https://joost.blog/plugins/aaa-option-optimizer/
* Description: Tracks autoloaded options usage and allows the user to optimize them.
* Version: 1.0.2
* Version: 1.1
* License: GPL-3.0+
* Author: Joost de Valk
* Author URI: https://joost.blog/
Expand Down
16 changes: 15 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: options, database, cleanup
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
Stable tag: 1.0.2
Stable tag: 1.1
License: GPL3+
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down Expand Up @@ -49,6 +49,20 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro

== Changelog ==

= 1.1 =

The plugin now recognizes plugins from which the options came (thanks to a great pull by [@rogierlankhorst](https://profiles.wordpress.org/rogierlankhorst/)). If you're a plugin developer and want your plugin's options
properly recognized, please do a pull request [on this file](https://github.com/Emilia-Capital/aaa-option-optimizer/blob/main/known-plugins/known-plugins.json).

Small enhancements:
* Column width is now automatically determined which leads to better spacing.
* Action buttons are now centered in their columns.

Bugs fixed:
* If you removed autoload from or deleted an option, it'd be removed from the table but would be back when you paginated, that's fixed (thanks to [Jono Alderson](https://profiles.wordpress.org/jonoaldersonwp/)) for reporting.
* Fixed sorting by filesize by moving the `KB` to the table heading, so that you can now properly sort numbers.
* Fixed issue where an empty option would result in weird size output.

= 1.0.2 =

* Fixed a bug where the buttons wouldn't work in a paginated state.
Expand Down
2 changes: 1 addition & 1 deletion src/class-admin-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private function get_plugin_name( string $option ): string {
}
}

return __( 'Unknown plugin', 'aaa-option-optimizer' );
return __( 'Unknown', 'aaa-option-optimizer' );
}

/**
Expand Down

0 comments on commit 42cee3b

Please sign in to comment.