Skip to content

Commit 9dc54ec

Browse files
authored
Release
1 parent 98e41fe commit 9dc54ec

7 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/gemini-assistant.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
- \`@gemini-cli write tests for X\` - Test implementation guidance
203203
- \`@gemini-cli debug this issue\` - Bug investigation and resolution
204204
205-
> 🔄 **Note:** This is an AI-generated response for Optimizations ACE MC v1.0.5. Please review suggestions carefully and test thoroughly.
205+
> 🔄 **Note:** This is an AI-generated response for Optimizations ACE MC (latest version). Please review suggestions carefully and test thoroughly.
206206
207207
**Analysis Date:** ${new Date().toISOString()}
208208
`;

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.6] - 2025-08-22
11+
1012
### Added
1113
- **Settings Page:**
1214
- Comprehensive admin settings page for managing all plugin optimizations
@@ -38,7 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3840
- Refactored long methods (init_settings, settings_page) into smaller, focused methods
3941
- Improved code maintainability and readability
4042
- Enhanced method separation for better testing and debugging
41-
- **PARTIAL:** Started conversion from space indentation to WordPress-standard tab indentation (ongoing)
43+
- Converted entire codebase from space indentation to WordPress-standard tab indentation
4244
- Updated PHPCS configuration to allow tabs for indentation per WordPress standards
4345

4446
## [1.0.5] - 2025-08-11

GEMINI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a lightweight WordPress optimization plugin designed specifically for a
99

1010
## Plugin Details
1111
- **Name:** Optimizations ACE MC
12-
- **Version:** 1.0.5
12+
- **Version:** Latest
1313
- **WordPress Compatibility:** 6.5+
1414
- **PHP Compatibility:** 7.4+
1515
- **License:** GPL-3.0-or-later

class-optimizations-ace-mc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public function add_user_order_count_column( $columns ) {
176176
* @return string
177177
*/
178178
public function display_user_order_count_column( $output, $column_name, $user_id ) {
179-
// Security check - only for admins with list_users capability
179+
// Security check - only for admins with list_users capability.
180180
if ( ! is_admin() || ! current_user_can( 'list_users' ) ) {
181181
return $output;
182182
}

languages/optimizations-ace-mc.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Optimizations ACE MC plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Optimizations ACE MC 1.0.5\n"
5+
"Project-Id-Version: Optimizations ACE MC 1.0.6\n"
66
"Report-Msgid-Bugs-To: https://github.com/PDowney/optimizations-ace-mc/issues\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"

optimizations-ace-mc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Optimizations ACE MC
44
* Plugin URI: https://github.com/PDowney/optimizations-ace-mc
55
* Description: A lightweight WordPress optimization plugin with pre-configured performance enhancements for WooCommerce, WP Store Locator, and WordPress admin.
6-
* Version: 1.0.5
6+
* Version: 1.0.6
77
* Author: PDowney
88
* Author URI: https://github.com/PDowney
99
* License: GPL-3.0-or-later
@@ -23,7 +23,7 @@
2323
}
2424

2525
// Define plugin constants.
26-
define( 'OPTIMIZATIONS_ACE_MC_VERSION', '1.0.5' );
26+
define( 'OPTIMIZATIONS_ACE_MC_VERSION', '1.0.6' );
2727
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_FILE', __FILE__ );
2828
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
2929
define( 'OPTIMIZATIONS_ACE_MC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

readme.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: optimization, performance, wp-optimizer, speed, seo
44
Requires at least: 6.5
55
Tested up to: 6.8
66
Requires PHP: 7.4
7-
Stable tag: 1.0.5
7+
Stable tag: 1.0.6
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -68,7 +68,7 @@ Yes, this plugin focuses on specific admin and functionality enhancements rather
6868

6969
== Changelog ==
7070

71-
= Unreleased =
71+
= 1.0.6 - 2025-08-22 =
7272
* Added: Comprehensive admin settings page for managing all plugin optimizations
7373
* Added: User-configurable options for WooCommerce, WP Store Locator, and WordPress admin features
7474
* Added: Individual enable/disable controls for each optimization feature
@@ -79,6 +79,7 @@ Yes, this plugin focuses on specific admin and functionality enhancements rather
7979
* Changed: Features load conditionally based on user settings
8080
* Fixed: Array alignment issues to meet WordPress coding standards
8181
* Fixed: Removed unused variables and refactored long methods for better code quality
82+
* Fixed: Converted entire codebase to WordPress-standard tab indentation
8283
* Fixed: Updated PHPCS configuration to properly allow tabs for indentation per WordPress standards
8384

8485
= 1.0.5 - 2025-08-11 =

0 commit comments

Comments
 (0)