From 785266e455965a31f4cd78bcaca14724d0c606f4 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sat, 29 Mar 2025 15:42:49 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8chore:=20Update=20changelog=20for=20ve?= =?UTF-8?q?rsion=201.6.1;=20fix=20filter=20removal=20bug=20and=20enhance?= =?UTF-8?q?=20template=20customization=20instructions=20#release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ README.md | 18 +++++++----------- resource-filter.php | 3 ++- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4563d5..2eec430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.6.1 - 2025-03-29 + +- Fixed bug in filter removal functionality +- Updated templates for a better starting point for customization + ## 1.6.0 - 2025-03-29 - Implement full admin configuarability diff --git a/README.md b/README.md index ff3651b..dba1d76 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,8 @@ Add one of the following shortcodes to your page or post content where you want The plugin is designed to work out of the box with minimal configuration. However, you can customize the following: -- **Templates**: Override the default templates and styles by placing your custom versions in your theme's `resource-filter` directory. You will need to add `"./resource-filter/**/*.{php,vue,js,cjs}",` to the `content` object in your `tailwind-config.js` file to compile the custom styles. +- **Templates**: Override the default templates and styles by placing your custom versions in your theme's `resource-filter` directory. You will need to add `"./resource-filter/**/*.{php,css}",` to the `content` object in your `tailwind-config.js` or `@source "./resource-filter/**/*.{php,css}` in your main css file is using Tailwind 4 to compile the custom styles. + - **Template Files**: - `filter-form.php` - Main form template - `filter-homepage.php` - Secondary form template for the homepage or other uses @@ -43,18 +44,13 @@ The plugin is designed to work out of the box with minimal configuration. Howeve - `resource-results.php` - Template for the search results - `style.css` - Custom styles for the filter system -- **Taxonomies**: Ensure your WordPress site has the `resource_type` and `resource_subject` taxonomies set up for the `resource` post type. - -## Roadmap - -- ~~Repo updates~~ -- ~~Admin configuration page~~ -- ~~tag close functionality~~ -- ~~general reset button~~ -- ~~pagination~~ - ## Changelog +## 1.6.1 - 2025-03-29 + +- Fixed bug in filter removal functionality +- Updated templates for a better starting point for customization + ## 1.6.0 - 2025-03-29 - Implement full admin configuarability diff --git a/resource-filter.php b/resource-filter.php index e9b41c8..115c29d 100644 --- a/resource-filter.php +++ b/resource-filter.php @@ -4,8 +4,9 @@ * Plugin URI: https://github.com/Vincent-Design-Inc/resource-filter * Update URI: https://github.com/Vincent-Design-Inc/resource-filter * Description: Adds filtering for the content typed by various taxonomies. - * Version: 1.6.0 + * Version: 1.6.1 * Author: Keith Solomon + * Author URI: https://vincentdesign.ca */ if (!defined('ABSPATH')) { exit; } // Prevent direct access