Changeset 3373877
- Timestamp:
- 10/06/2025 05:14:39 PM (6 months ago)
- Location:
- simple-feature-requests/tags/2.4.8.1
- Files:
-
- 4 edited
-
inc/class-post-types.php (modified) (1 diff)
-
plugin-data.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
simple-feature-requests.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-feature-requests/tags/2.4.8.1/inc/class-post-types.php
r3347125 r3373877 843 843 */ 844 844 public static function get_menu_title() { 845 $title = __( sfr_apply_filters( 'sfr_plural_request_name', 'Requests', true ), 'simple-feature-requests');845 $title = sfr_apply_filters( 'sfr_plural_request_name', 'Requests', true ); 846 846 if ( is_admin() ) { 847 847 $pending = SFR_Query::count_pending_requests(); -
simple-feature-requests/tags/2.4.8.1/plugin-data.json
r3372576 r3373877 1 1 { 2 "version": "2.4.8 ",2 "version": "2.4.8.1", 3 3 "wp": "6.8.2", 4 4 "wp_requires": "6.0", -
simple-feature-requests/tags/2.4.8.1/readme.txt
r3372576 r3373877 4 4 Tags: feature request, customer feedback, user feedback, roadmap, idea management 5 5 Requires at least: 6.0 6 Tested up to: 6.8. 27 Stable tag: 2.4.8 6 Tested up to: 6.8.3 7 Stable tag: 2.4.8.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 151 151 152 152 == Changelog == 153 **v2.4.8.1 (2025-10-06)** 154 Update: Tested with WordPress Core 6.8.3 155 Bugfix: Resolved an issue that threw a notice about translations loading too early. This was due to a change in WordPress Core 6.7.0 which enforces stricter best practices for translation loading. 156 153 157 **v2.4.8 (2025-10-05)** 154 158 New Feature: AAdded compatibility with Easy Digital Downloads email queuing system -
simple-feature-requests/tags/2.4.8.1/simple-feature-requests.php
r3372576 r3373877 5 5 * Plugin URI: https://simplefeaturerequests.com 6 6 * Description: Collect and manage user feedback using your existing WordPress website. Prioritize the product features important to you and your customers. 7 * Version: 2.4.8 7 * Version: 2.4.8.1 8 8 * Author: Mindsize 9 9 * Author URI: https://mindsize.com … … 22 22 * @var string 23 23 */ 24 public static $version = '2.4.8 ';24 public static $version = '2.4.8.1'; 25 25 26 26 /** … … 255 255 $this->settings = SFR_Core_Settings::run( array( 256 256 'vendor_path' => SFR_VENDOR_PATH, 257 'title' => __( 'Simple Feature Requests', 'simple-feature-requests' ),257 'title' => 'Simple Feature Requests', 258 258 'version' => self::$version, 259 259 'menu_title' => SFR_Post_Types::get_menu_title(),
Note: See TracChangeset
for help on using the changeset viewer.