Changeset 3388312
- Timestamp:
- 11/02/2025 10:00:21 AM (5 months ago)
- Location:
- aitrackerstats
- Files:
-
- 4 edited
- 1 copied
-
tags/4.1.0 (copied) (copied from aitrackerstats/trunk)
-
tags/4.1.0/aitrackerstats.php (modified) (4 diffs)
-
tags/4.1.0/readme.md (modified) (1 diff)
-
trunk/aitrackerstats.php (modified) (4 diffs)
-
trunk/readme.md (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aitrackerstats/tags/4.1.0/aitrackerstats.php
r3386154 r3388312 3 3 /** 4 4 * @package AiTrackerStats 5 * @version 4. 0.05 * @version 4.1.0 6 6 */ 7 7 /* … … 9 9 Slug: aitrackerstats 10 10 Description: This plugin tracks how many times A.I. references your website and posts. 11 Version: 4. 0.011 Version: 4.1.0 12 12 Requires at least: 6.0 13 13 Author: Ashley Jackson … … 19 19 20 20 global $PLUGIN_VERSION; 21 $PLUGIN_VERSION = "4. 0.0";21 $PLUGIN_VERSION = "4.1.0"; 22 22 if (! defined('ABSPATH')) exit; // Exit if accessed directly 23 23 … … 175 175 $site_url = home_url(); 176 176 $hostname = wp_parse_url($site_url, PHP_URL_HOST); 177 $base = base64_encode($hostname); 177 178 178 179 $response = wp_remote_post('https://analytics.ashleyjackson.net/api/register', [ 179 'body' => wp_json_encode(['hostname' => $hostname]), 180 'body' => wp_json_encode( 181 [ 182 'hostname' => $hostname, 183 'version' => $GLOBALS['PLUGIN_VERSION'], 184 'base' => $base, 185 ] 186 ), 180 187 'headers' => [ 181 188 'Content-Type' => 'application/json', 182 189 'version' => $GLOBALS['PLUGIN_VERSION'], 183 184 190 ], 185 191 'data_format' => 'body', -
aitrackerstats/tags/4.1.0/readme.md
r3386154 r3388312 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 4. 0.06 Stable tag: 4.1.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later -
aitrackerstats/trunk/aitrackerstats.php
r3386154 r3388312 3 3 /** 4 4 * @package AiTrackerStats 5 * @version 4. 0.05 * @version 4.1.0 6 6 */ 7 7 /* … … 9 9 Slug: aitrackerstats 10 10 Description: This plugin tracks how many times A.I. references your website and posts. 11 Version: 4. 0.011 Version: 4.1.0 12 12 Requires at least: 6.0 13 13 Author: Ashley Jackson … … 19 19 20 20 global $PLUGIN_VERSION; 21 $PLUGIN_VERSION = "4. 0.0";21 $PLUGIN_VERSION = "4.1.0"; 22 22 if (! defined('ABSPATH')) exit; // Exit if accessed directly 23 23 … … 175 175 $site_url = home_url(); 176 176 $hostname = wp_parse_url($site_url, PHP_URL_HOST); 177 $base = base64_encode($hostname); 177 178 178 179 $response = wp_remote_post('https://analytics.ashleyjackson.net/api/register', [ 179 'body' => wp_json_encode(['hostname' => $hostname]), 180 'body' => wp_json_encode( 181 [ 182 'hostname' => $hostname, 183 'version' => $GLOBALS['PLUGIN_VERSION'], 184 'base' => $base, 185 ] 186 ), 180 187 'headers' => [ 181 188 'Content-Type' => 'application/json', 182 189 'version' => $GLOBALS['PLUGIN_VERSION'], 183 184 190 ], 185 191 'data_format' => 'body', -
aitrackerstats/trunk/readme.md
r3386154 r3388312 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 4. 0.06 Stable tag: 4.1.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.