Plugin Directory

Changeset 3439011


Ignore:
Timestamp:
01/13/2026 09:32:36 PM (5 weeks ago)
Author:
mustafauzun0
Message:

Update to version 2.3.3

Location:
mau-ai-summary-button/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mau-ai-summary-button/trunk/assets/js/frontend.js

    r3439004 r3439011  
    4949      // console.log("PROMPT HEAD:", prompt.slice(0, 120));
    5050
    51       var u = new URL('https://chatgpt.com/');
    52       u.searchParams.set('prompt', prompt);
    53       u.searchParams.set('hints', 'search');
     51      var base = "https://chatgpt.com/?prompt=";
     52      window.open(base + encodeURIComponent(prompt), "_blank", "noopener");
    5453
    55       window.open(u.toString(), '_blank', 'noopener,noreferrer');
    5654    } catch (err) {
    5755      console.error('MAUASB error:', err);
  • mau-ai-summary-button/trunk/mau-ai-summary-button.php

    r3439004 r3439011  
    33Plugin Name: MAU AI Summary Button
    44Description: Adds a multilingual button that sends the post/page content to AI for summarization. You can customize the prompt, colors, and texts.
    5 Version: 2.3.2
     5Version: 2.3.3
    66Author: mustafauzun0
    77License: GPL2+
     
    1414}
    1515
    16 define( 'MAUASB_VERSION', '2.3.2' );
     16define( 'MAUASB_VERSION', '2.3.3' );
    1717
    1818define( 'MAUASB_OPTION_KEY', 'mauasb_options' );
  • mau-ai-summary-button/trunk/readme.txt

    r3439004 r3439011  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 2.3.2
     7Stable tag: 2.3.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2626= 2.3.1 =
    2727* Initial public release.
    28 = 2.3.2 =
     28= 2.3.3 =
    2929* mobile button style
Note: See TracChangeset for help on using the changeset viewer.