Plugin Directory

Changeset 3373877


Ignore:
Timestamp:
10/06/2025 05:14:39 PM (6 months ago)
Author:
blobaugh
Message:

Tagging 2.4.8.1

Location:
simple-feature-requests/tags/2.4.8.1
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simple-feature-requests/tags/2.4.8.1/inc/class-post-types.php

    r3347125 r3373877  
    843843     */
    844844    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 );
    846846        if ( is_admin() ) {
    847847            $pending = SFR_Query::count_pending_requests();
  • simple-feature-requests/tags/2.4.8.1/plugin-data.json

    r3372576 r3373877  
    11{
    2   "version": "2.4.8",
     2  "version": "2.4.8.1",
    33  "wp": "6.8.2",
    44  "wp_requires": "6.0",
  • simple-feature-requests/tags/2.4.8.1/readme.txt

    r3372576 r3373877  
    44Tags: feature request, customer feedback, user feedback, roadmap, idea management
    55Requires at least: 6.0
    6 Tested up to: 6.8.2
    7 Stable tag: 2.4.8
     6Tested up to: 6.8.3
     7Stable tag: 2.4.8.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    151151
    152152== Changelog ==
     153**v2.4.8.1 (2025-10-06)**
     154Update: Tested with WordPress Core 6.8.3
     155Bugfix: 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
    153157**v2.4.8 (2025-10-05)**
    154158New Feature: AAdded compatibility with Easy Digital Downloads email queuing system
  • simple-feature-requests/tags/2.4.8.1/simple-feature-requests.php

    r3372576 r3373877  
    55 * Plugin URI: https://simplefeaturerequests.com
    66 * 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
    88 * Author: Mindsize
    99 * Author URI: https://mindsize.com
     
    2222     * @var string
    2323     */
    24     public static $version = '2.4.8';
     24    public static $version = '2.4.8.1';
    2525
    2626    /**
     
    255255        $this->settings = SFR_Core_Settings::run( array(
    256256            'vendor_path'   => SFR_VENDOR_PATH,
    257             'title'         => __( 'Simple Feature Requests', 'simple-feature-requests' ),
     257            'title'         => 'Simple Feature Requests',
    258258            'version'       => self::$version,
    259259            'menu_title'    => SFR_Post_Types::get_menu_title(),
Note: See TracChangeset for help on using the changeset viewer.