From faae7d0b713105c9fb0bc9589b7d54f0fae0683b Mon Sep 17 00:00:00 2001 From: Filip Ilic Date: Mon, 2 Mar 2026 16:32:09 +0100 Subject: [PATCH 1/2] bump version & readme.txt --- aaa-option-optimizer.php | 2 +- readme.txt | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/aaa-option-optimizer.php b/aaa-option-optimizer.php index 057afeb..75866c9 100644 --- a/aaa-option-optimizer.php +++ b/aaa-option-optimizer.php @@ -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/ diff --git a/readme.txt b/readme.txt index da538c8..9680811 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: options, database, cleanup Requires at least: 6.7 Tested up to: 6.9 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 @@ -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 = From 381997d0c207ebcf05e2d7c6905a3ae985132c41 Mon Sep 17 00:00:00 2001 From: Filip Ilic Date: Tue, 3 Mar 2026 10:35:00 +0100 Subject: [PATCH 2/2] WP 7.0 compat --- css/style.css | 9 ++++++++- readme.txt | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index 92fb6e1..21e90b6 100644 --- a/css/style.css +++ b/css/style.css @@ -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; @@ -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; + } } \ No newline at end of file diff --git a/readme.txt b/readme.txt index 9680811..d434e3a 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ 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.6.0 License: GPL3+