Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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://progressplanner.com/plugins/aaa-option-optimizer/
* Description: Tracks autoloaded options usage and allows the user to optimize them.
* Version: 1.5.1
* Version: 1.6.0
* License: GPL-3.0+
* Author: Team Prospress Planner
* Author URI: https://prospressplanner.com/
Expand Down
9 changes: 8 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
.aaa_option_table .actions .button span.dashicons, .aaa_option_table .button.dashicon span.dashicons {
padding: 0;
margin: 0 3px 0 0;
vertical-align: middle;
}
.aaa_option_table td span.num {
font-family: monospace;
Expand Down Expand Up @@ -153,4 +152,12 @@ div.dt-container .dt-input {
display: flex;
flex-direction: column;
gap: 10px;
}

/* Version 6.9 compatibility */
.branch-6-9 {
.aaa_option_table .actions .button span.dashicons,
.aaa_option_table .button.dashicon span.dashicons {
vertical-align: middle;
}
}
7 changes: 4 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: joostdevalk, aristath, filipi
Tags: options, database, cleanup
Requires at least: 6.7
Tested up to: 6.9
Tested up to: 7.0
Requires PHP: 7.4
Stable tag: 1.5.1
Stable tag: 1.6.0
License: GPL3+
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

Expand Down Expand Up @@ -54,9 +54,10 @@ Please do a pull request via GitHub on [this file](https://github.com/ProgressPl

== Changelog ==

= 1.5.2 =
= 1.6.0

* Replace using 'all' filter for monitoring option usage with 'pre_option' filter for better performance.
* Migrate tracked options data from a single wp_option to a custom database table for improved performance and reliability.

= 1.5.1 =

Expand Down