Plugin Directory

Changeset 3459079


Ignore:
Timestamp:
02/11/2026 03:22:57 PM (6 weeks ago)
Author:
plausible
Message:

Update to version 2.5.5 from GitHub

Location:
plausible-analytics
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • plausible-analytics/tags/2.5.5/languages/plausible-analytics.pot

    r3457339 r3459079  
    88"Content-Transfer-Encoding: 8bit\n"
    99"Language-Team: Plausible Analytics Team <hello@plausible.io>\n"
    10 "POT-Creation-Date: 2026-02-09 18:13+0000\n"
     10"POT-Creation-Date: 2026-02-11 15:22+0000\n"
    1111"Report-Msgid-Bugs-To: https://github.com/plausible/wordpress/issues/new\n"
    1212"X-Poedit-Basepath: ..\n"
  • plausible-analytics/tags/2.5.5/plausible-analytics.php

    r3457339 r3459079  
    66 * Author: Plausible.io
    77 * Author URI: https://plausible.io
    8  * Version: 2.5.4
     8 * Version: 2.5.5
    99 * Text Domain: plausible-analytics
    1010 * Domain Path: /languages
  • plausible-analytics/tags/2.5.5/readme.txt

    r3457339 r3459079  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 2.5.4
     8Stable tag: 2.5.5
    99License: Massachusetts Institute of Technology (MIT) license
    1010License URI: https://opensource.org/licenses/MIT
     
    157157== Changelog ==
    158158
     159= 2.5.5 =
     160* Fixed: a typo would cause users to with a valid API token to get a notice that the Plugin token should be entered.
     161
    159162= 2.5.4 =
    160163* Improved: added a separate notice for Cloud users that haven't entered the Plugin token yet.
  • plausible-analytics/tags/2.5.5/src/Admin/Upgrades.php

    r3457339 r3459079  
    376376
    377377    /**
    378      * Show an admin-wide notice to CE users that haven't entered an API token yet.
     378     * Show an admin-wide notice to Cloud users that haven't entered an API token yet.
    379379     *
    380380     * @return void
     
    385385
    386386        // This user apparently hasn't entered an API token yet.
    387         if ( ! empty( $api_token ) && empty ( $self_hosted_domain ) ) {
     387        if ( empty( $api_token ) && empty ( $self_hosted_domain ) ) {
    388388            update_option( 'plausible_analytics_version', '2.5.4' );
    389389
  • plausible-analytics/trunk/languages/plausible-analytics.pot

    r3457339 r3459079  
    88"Content-Transfer-Encoding: 8bit\n"
    99"Language-Team: Plausible Analytics Team <hello@plausible.io>\n"
    10 "POT-Creation-Date: 2026-02-09 18:13+0000\n"
     10"POT-Creation-Date: 2026-02-11 15:22+0000\n"
    1111"Report-Msgid-Bugs-To: https://github.com/plausible/wordpress/issues/new\n"
    1212"X-Poedit-Basepath: ..\n"
  • plausible-analytics/trunk/plausible-analytics.php

    r3457339 r3459079  
    66 * Author: Plausible.io
    77 * Author URI: https://plausible.io
    8  * Version: 2.5.4
     8 * Version: 2.5.5
    99 * Text Domain: plausible-analytics
    1010 * Domain Path: /languages
  • plausible-analytics/trunk/readme.txt

    r3457339 r3459079  
    66Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 2.5.4
     8Stable tag: 2.5.5
    99License: Massachusetts Institute of Technology (MIT) license
    1010License URI: https://opensource.org/licenses/MIT
     
    157157== Changelog ==
    158158
     159= 2.5.5 =
     160* Fixed: a typo would cause users to with a valid API token to get a notice that the Plugin token should be entered.
     161
    159162= 2.5.4 =
    160163* Improved: added a separate notice for Cloud users that haven't entered the Plugin token yet.
  • plausible-analytics/trunk/src/Admin/Upgrades.php

    r3457339 r3459079  
    376376
    377377    /**
    378      * Show an admin-wide notice to CE users that haven't entered an API token yet.
     378     * Show an admin-wide notice to Cloud users that haven't entered an API token yet.
    379379     *
    380380     * @return void
     
    385385
    386386        // This user apparently hasn't entered an API token yet.
    387         if ( ! empty( $api_token ) && empty ( $self_hosted_domain ) ) {
     387        if ( empty( $api_token ) && empty ( $self_hosted_domain ) ) {
    388388            update_option( 'plausible_analytics_version', '2.5.4' );
    389389
Note: See TracChangeset for help on using the changeset viewer.