Skip to content

Commit 4c9a053

Browse files
🔧 Release v1.3.11: Fix log filters UI with WordPress .filtered-by pattern, closes #50 #48
1 parent f28ccf4 commit 4c9a053

35 files changed

+45
-35
lines changed

‎CHANGELOG.md‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to CF7 to API will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
9+
## [1.3.11] - 2026-01-22
10+
11+
### Fixed
12+
- **Log Filters UI** (#50, #48): Fixed broken filters after refactor
13+
* Filters now use the WordPress `.filtered-by` pattern
14+
* Active filters are shown as removable tags
15+
* "Clear all" link added, duplicate "Clear Filters" button removed
16+
* Unified into a single filter bar with native admin styles
17+
818
## [Unreleased]
919

1020
## [1.3.10] - 2026-01-22

‎assets/css/dashboard-widget.css‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.2.0
8-
* @version 1.3.10
8+
* @version 1.3.11
99
* @author Silver Assist
1010
*/
1111

‎assets/css/settings-page.css‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @package ContactFormToAPI
88
* @since 1.1.1
99
* @author Silver Assist
10-
* @version 1.3.10
10+
* @version 1.3.11
1111
* @license Polyform-Noncommercial-1.0.0
1212
*/
1313

‎assets/js/migration.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @package SilverAssist\ContactFormToAPI
88
* @subpackage Assets
99
* @since 1.3.4
10-
* @version 1.3.10
10+
* @version 1.3.11
1111
* @author Silver Assist
1212
*/
1313

‎assets/js/settings-page.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.2.0
8-
* @version 1.3.10
8+
* @version 1.3.11
99
*/
1010

1111
(function ($) {

‎contact-form-to-api.php‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
* @package SilverAssist\ContactFormToAPI
77
* @since 1.0.0
88
* @author Silver Assist
9-
* @version 1.3.10
9+
* @version 1.3.11
1010
* @license Polyform-Noncommercial-1.0.0
1111
*
1212
* @wordpress-plugin
1313
* Plugin Name: CF7 to API
1414
* Plugin URI: https://github.com/SilverAssist/contact-form-to-api
1515
* Description: Extend Contact Form 7 functionality by connecting forms to external APIs. Send form submissions to custom API endpoints with advanced configuration options.
16-
* Version: 1.3.10
16+
* Version: 1.3.11
1717
* Requires at least: 6.5
1818
* Requires PHP: 8.2
1919
* Author: Silver Assist

‎includes/Admin/DashboardWidget.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Admin
1010
* @since 1.2.0
11-
* @version 1.3.10
11+
* @version 1.3.11
1212
* @author Silver Assist
1313
*/
1414

‎includes/Admin/GlobalSettingsController.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Admin
1010
* @since 1.2.0
11-
* @version 1.3.10
11+
* @version 1.3.11
1212
* @author Silver Assist
1313
*/
1414

‎includes/Admin/Loader.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @package SilverAssist\ContactFormToAPI
88
* @subpackage Admin
99
* @since 1.1.0
10-
* @version 1.3.10
10+
* @version 1.3.11
1111
* @author Silver Assist
1212
*/
1313

‎includes/Admin/RequestLogController.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @package SilverAssist\ContactFormToAPI
99
* @subpackage Admin
1010
* @since 1.1.0
11-
* @version 1.3.10
11+
* @version 1.3.11
1212
* @author Silver Assist
1313
*/
1414

0 commit comments

Comments
 (0)