Changeset 3381941
- Timestamp:
- 10/21/2025 01:17:30 PM (5 months ago)
- Location:
- linkmaker/trunk
- Files:
-
- 3 edited
-
README.md (modified) (1 diff)
-
linkmaker.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linkmaker/trunk/README.md
r3380301 r3381941 104 104 ## 🧾 Changelog 105 105 106 * **0.1.10** – Refreshed the Freemius app credentials and admin menu wiring so analytics start flowing again. 106 107 * **0.1.9** – Removed HTML from the plugin author metadata to comply with WordPress.org validation. 107 108 * **0.1.8** – Recorded the fishdan.com ownership contact and refreshed release packaging for WordPress.org review. -
linkmaker/trunk/linkmaker.php
r3380301 r3381941 4 4 Plugin URI: https://fishdan.com/linkmaker 5 5 Description: Transforms specified hyperlinks into interactive elements for Wikipedia searches. 6 Version: 0.1. 96 Version: 0.1.10 7 7 Author: Dan Fishman 8 8 Author URI: https://fishdan.com … … 18 18 } 19 19 20 if (!function_exists('linkmaker_fs')) { 20 if ( ! function_exists( 'linkmaker_fs' ) ) { 21 // Create a helper function for easy SDK access. 21 22 function linkmaker_fs() { 22 23 global $linkmaker_fs; 23 24 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, 38 41 ), 39 ) );42 ) ); 40 43 } 41 44 … … 43 46 } 44 47 48 // Init Freemius. 45 49 linkmaker_fs(); 46 do_action('linkmaker_fs_loaded'); 50 // Signal that SDK was initiated. 51 do_action( 'linkmaker_fs_loaded' ); 47 52 } 48 53 49 54 if (!defined('LINKMAKER_VERSION')) { 50 define('LINKMAKER_VERSION', '0.1. 9');55 define('LINKMAKER_VERSION', '0.1.10'); 51 56 } 52 57 -
linkmaker/trunk/readme.txt
r3380301 r3381941 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 0.1. 97 Stable tag: 0.1.10 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 42 42 == Changelog == 43 43 44 = 0.1.10 = 45 * Updated the Freemius application keys and menu settings so the dashboard starts receiving events again. 46 44 47 = 0.1.9 = 45 48 * Removed HTML from the plugin author field to satisfy WordPress.org header validation. … … 65 68 == Upgrade Notice == 66 69 67 = 0.1. 9=68 Fixes the plugin header author field so WordPress.org validation passes without warnings.70 = 0.1.10 = 71 Refreshes the Freemius integration so telemetry and account actions resume working.
Note: See TracChangeset
for help on using the changeset viewer.