diff --git a/CHANGELOG.md b/CHANGELOG.md index ed7e37a..a76489a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [1.6.24] - 2024-05-17 +### Added +- Properly named icon PNG files (icon-256x256.png and icon-128x128.png) + +### Changed +- Updated asset preparation documentation +- Improved WordPress.org submission readiness + ## [1.6.23] - 2024-05-17 ### Added - Properly named icon, banner, and screenshot files for WordPress.org submission diff --git a/README.md b/README.md index 7a7e850..6137ac0 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,11 @@ The plugin works by: ## Changelog +### 1.6.24 +* Added properly named icon PNG files for WordPress.org submission +* Created icon-256x256.png and icon-128x128.png files +* Updated asset preparation documentation + ### 1.6.23 * Prepared assets for WordPress.org plugin submission * Added properly named icon, banner, and screenshot files diff --git a/assets/WORDPRESS_ORG_SUBMISSION.md b/assets/WORDPRESS_ORG_SUBMISSION.md index 739af54..03c07a9 100644 --- a/assets/WORDPRESS_ORG_SUBMISSION.md +++ b/assets/WORDPRESS_ORG_SUBMISSION.md @@ -31,7 +31,7 @@ This document outlines the requirements for assets when submitting a plugin to t ### Icon - ✅ SVG source available -- ❌ Need to create `icon-256x256.png` from the SVG +- ✅ PNG files created (`icon-256x256.png` and `icon-128x128.png`) ### Banner - ✅ Both sizes available diff --git a/assets/icon-png/icon-128x128.png b/assets/icon-png/icon-128x128.png new file mode 100644 index 0000000..c1029b5 Binary files /dev/null and b/assets/icon-png/icon-128x128.png differ diff --git a/assets/icon-png/icon-256x256.png b/assets/icon-png/icon-256x256.png new file mode 100644 index 0000000..67f6101 Binary files /dev/null and b/assets/icon-png/icon-256x256.png differ diff --git a/fix-plugin-does-not-exist-notices.php b/fix-plugin-does-not-exist-notices.php index faa02c2..93a8edf 100644 --- a/fix-plugin-does-not-exist-notices.php +++ b/fix-plugin-does-not-exist-notices.php @@ -13,7 +13,7 @@ * Plugin Name: Fix 'Plugin file does not exist.' Notices * Plugin URI: https://wordpress.org/plugins/fix-plugin-does-not-exist-notices/ * Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can permanently clean up invalid plugin entries and remove error notices. By Marcus Quinn (marcusquinn.com) & WP ALLSTARS (wpallstars.com). - * Version: 1.6.23 + * Version: 1.6.24 * Author: Marcus Quinn & WP ALLSTARS * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -48,7 +48,7 @@ if ( ! defined( 'ABSPATH' ) ) { } // Define plugin constants -define( 'FPDEN_VERSION', '1.6.23' ); +define( 'FPDEN_VERSION', '1.6.24' ); define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'FPDEN_PLUGIN_FILE', __FILE__ ); diff --git a/languages/fix-plugin-does-not-exist-notices.pot b/languages/fix-plugin-does-not-exist-notices.pot index e483275..9964f6b 100644 --- a/languages/fix-plugin-does-not-exist-notices.pot +++ b/languages/fix-plugin-does-not-exist-notices.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 1.6.23\n" +"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 1.6.24\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fix-plugin-does-not-exist-notices\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/readme.txt b/readme.txt index 5b3aa61..efb8519 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: plugins, missing plugins, cleanup, error fix, admin tools, plugin file doe Requires at least: 5.0 Tested up to: 6.4 Requires PHP: 7.0 -Stable tag: 1.6.23 +Stable tag: 1.6.24 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -111,6 +111,11 @@ Manually editing the WordPress database is risky and requires technical knowledg == Changelog == += 1.6.24 = +* Added properly named icon PNG files for WordPress.org submission +* Created icon-256x256.png and icon-128x128.png files +* Updated asset preparation documentation + = 1.6.23 = * Prepared assets for WordPress.org plugin submission * Added properly named icon, banner, and screenshot files @@ -338,6 +343,9 @@ Manually editing the WordPress database is risky and requires technical knowledg == Upgrade Notice == += 1.6.24 = +Added properly named icon PNG files for WordPress.org submission. + = 1.6.23 = Prepared assets for WordPress.org plugin submission with properly named icon, banner, and screenshot files.