Plugin Directory

Changeset 3381941


Ignore:
Timestamp:
10/21/2025 01:17:30 PM (5 months ago)
Author:
fishdan
Message:

Release 0.1.10

Location:
linkmaker/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • linkmaker/trunk/README.md

    r3380301 r3381941  
    104104## 🧾 Changelog
    105105
     106* **0.1.10** – Refreshed the Freemius app credentials and admin menu wiring so analytics start flowing again.
    106107* **0.1.9** – Removed HTML from the plugin author metadata to comply with WordPress.org validation.
    107108* **0.1.8** – Recorded the fishdan.com ownership contact and refreshed release packaging for WordPress.org review.
  • linkmaker/trunk/linkmaker.php

    r3380301 r3381941  
    44Plugin URI: https://fishdan.com/linkmaker
    55Description: Transforms specified hyperlinks into interactive elements for Wikipedia searches.
    6 Version: 0.1.9
     6Version: 0.1.10
    77Author: Dan Fishman
    88Author URI: https://fishdan.com
     
    1818}
    1919
    20 if (!function_exists('linkmaker_fs')) {
     20if ( ! function_exists( 'linkmaker_fs' ) ) {
     21    // Create a helper function for easy SDK access.
    2122    function linkmaker_fs() {
    2223        global $linkmaker_fs;
    2324
    24         if (!isset($linkmaker_fs)) {
    25             require_once __DIR__ . '/vendor/freemius/start.php';
    26             $linkmaker_fs = fs_dynamic_init(array(
    27                 'id'               => '21046',
    28                 'slug'             => 'linkmaker',
    29                 'type'             => 'plugin',
    30                 'public_key'       => 'pk_32b32da022dddab87b1a7ae31ac67',
    31                 'is_premium'       => false,
    32                 'has_addons'       => false,
    33                 'has_paid_plans'   => false,
    34                 'is_org_compliant' => true,
    35                 'menu'             => array(
    36                     'slug'    => 'linkmaker',
    37                     'support' => false,
     25        if ( ! isset( $linkmaker_fs ) ) {
     26            // Include Freemius SDK.
     27            require_once dirname( __FILE__ ) . '/vendor/freemius/start.php';
     28
     29            $linkmaker_fs = fs_dynamic_init( array(
     30                'id'                  => '21111',
     31                'slug'                => 'linkmaker',
     32                'type'                => 'plugin',
     33                'public_key'          => 'pk_545b81b58f2ab6f5921fb17421fe3',
     34                'is_premium'          => false,
     35                'has_addons'          => false,
     36                'has_paid_plans'      => false,
     37                'menu'                => array(
     38                    'first-path'     => 'plugins.php',
     39                    'account'        => false,
     40                    'support'        => false,
    3841                ),
    39             ));
     42            ) );
    4043        }
    4144
     
    4346    }
    4447
     48    // Init Freemius.
    4549    linkmaker_fs();
    46     do_action('linkmaker_fs_loaded');
     50    // Signal that SDK was initiated.
     51    do_action( 'linkmaker_fs_loaded' );
    4752}
    4853
    4954if (!defined('LINKMAKER_VERSION')) {
    50     define('LINKMAKER_VERSION', '0.1.9');
     55    define('LINKMAKER_VERSION', '0.1.10');
    5156}
    5257
  • linkmaker/trunk/readme.txt

    r3380301 r3381941  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 0.1.9
     7Stable tag: 0.1.10
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    4242== Changelog ==
    4343
     44= 0.1.10 =
     45* Updated the Freemius application keys and menu settings so the dashboard starts receiving events again.
     46
    4447= 0.1.9 =
    4548* Removed HTML from the plugin author field to satisfy WordPress.org header validation.
     
    6568== Upgrade Notice ==
    6669
    67 = 0.1.9 =
    68 Fixes the plugin header author field so WordPress.org validation passes without warnings.
     70= 0.1.10 =
     71Refreshes the Freemius integration so telemetry and account actions resume working.
Note: See TracChangeset for help on using the changeset viewer.