Compare commits
2 Commits
v2.0.1
...
36f2c6ab99
Author | SHA1 | Date | |
---|---|---|---|
36f2c6ab99 | |||
924abba260 |
@ -2,14 +2,16 @@
|
||||
|
||||
This directory contains assets specific to the WordPress.org plugin repository and is used for automatic deployment via GitHub Actions.
|
||||
|
||||
## Directory Contents
|
||||
## Directory Structure
|
||||
|
||||
- `icon.svg` - Plugin icon displayed in the WordPress.org plugin directory
|
||||
- `banner-772x250.png` - Standard banner for plugin header
|
||||
- `banner-1544x500.png` - Retina banner for plugin header
|
||||
- `screenshot-1.png` - First screenshot displayed on plugin page
|
||||
- `screenshot-2.png` - Second screenshot displayed on plugin page
|
||||
- `screenshot-3.png` - Third screenshot displayed on plugin page
|
||||
```
|
||||
/assets/
|
||||
icon-256x256.png
|
||||
icon-128x128.png
|
||||
banner-772x250.png
|
||||
banner-1544x500.png
|
||||
screenshot-1.png
|
||||
```
|
||||
|
||||
## Purpose
|
||||
|
||||
@ -17,4 +19,21 @@ When using GitHub Actions for WordPress.org plugin deployments (via the 10up Wor
|
||||
|
||||
## Naming Conventions
|
||||
|
||||
Files must be named exactly as shown above to be properly recognized by the WordPress.org system during the deployment process.
|
||||
Files must be named exactly as shown above to be properly recognized by the WordPress.org system during the deployment process.
|
||||
|
||||
## Right-to-Left (RTL) Support
|
||||
|
||||
For plugins that support Right-to-Left languages (like Hebrew and Arabic), you can provide RTL versions of assets by appending `-rtl` to the filename:
|
||||
|
||||
- `banner-772x250-rtl.png`
|
||||
- `banner-1544x500-rtl.png`
|
||||
- `icon-256x256-rtl.png`
|
||||
|
||||
Note that the `-rtl` suffix is specifically for Right-to-Left language support, not for dark mode versions of assets.
|
||||
|
||||
## Additional Resources
|
||||
|
||||
For more detailed information about WordPress.org plugin assets, please see:
|
||||
|
||||
- [WordPress Plugin Developer Handbook - Plugin Assets](https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/)
|
||||
- [WordPress Plugin Directory README.txt Standard](https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/)
|
BIN
.wordpress-org/assets/banner-1544x500.png
Normal file
BIN
.wordpress-org/assets/banner-1544x500.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
BIN
.wordpress-org/assets/banner-772x250.png
Normal file
BIN
.wordpress-org/assets/banner-772x250.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
.wordpress-org/assets/icon-128x128.png
Normal file
BIN
.wordpress-org/assets/icon-128x128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
.wordpress-org/assets/icon-256x256.png
Normal file
BIN
.wordpress-org/assets/icon-256x256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
.wordpress-org/assets/screenshot-1.png
Normal file
BIN
.wordpress-org/assets/screenshot-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 392 KiB |
@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [2.0.2] - 2024-05-17
|
||||
### Changed
|
||||
- Consolidated WordPress.org assets into .wordpress-org directory
|
||||
- Improved organization of assets for WordPress.org submission
|
||||
- Updated .wordpress-org/README.md with comprehensive information
|
||||
|
||||
## [2.0.1] - 2024-05-17
|
||||
### Added
|
||||
- Contributing section to readme.txt
|
||||
|
@ -159,6 +159,11 @@ The plugin works by:
|
||||
|
||||
## Changelog
|
||||
|
||||
### 2.0.2
|
||||
* Consolidated WordPress.org assets into .wordpress-org directory
|
||||
* Improved organization of assets for WordPress.org submission
|
||||
* Updated .wordpress-org/README.md with comprehensive information
|
||||
|
||||
### 2.0.1
|
||||
* Added Contributing section to readme.txt
|
||||
* Updated "tested up to" version to WordPress 6.7.2
|
||||
|
@ -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.
|
||||
* Version: 2.0.1
|
||||
* Version: 2.0.2
|
||||
* 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', '2.0.1' );
|
||||
define( 'FPDEN_VERSION', '2.0.2' );
|
||||
define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||
define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
||||
define( 'FPDEN_PLUGIN_FILE', __FILE__ );
|
||||
|
@ -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 2.0.1\n"
|
||||
"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 2.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fix-plugin-does-not-exist-notices\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
10
readme.txt
10
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.7.2
|
||||
Requires PHP: 7.0
|
||||
Stable tag: 2.0.1
|
||||
Stable tag: 2.0.2
|
||||
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 ==
|
||||
|
||||
= 2.0.2 =
|
||||
* Consolidated WordPress.org assets into .wordpress-org directory
|
||||
* Improved organization of assets for WordPress.org submission
|
||||
* Updated .wordpress-org/README.md with comprehensive information
|
||||
|
||||
= 2.0.1 =
|
||||
* Added Contributing section to readme.txt
|
||||
* Updated "tested up to" version to WordPress 6.7.2
|
||||
@ -379,6 +384,9 @@ Manually editing the WordPress database is risky and requires technical knowledg
|
||||
|
||||
== Upgrade Notice ==
|
||||
|
||||
= 2.0.2 =
|
||||
Improved organization of assets for WordPress.org submission.
|
||||
|
||||
= 2.0.1 =
|
||||
Improved documentation with Contributing section and updated WordPress compatibility to 6.7.2.
|
||||
|
||||
|
Reference in New Issue
Block a user