Plugin Directory

Changeset 3485248


Ignore:
Timestamp:
03/18/2026 03:14:12 AM (3 weeks ago)
Author:
1platform
Message:

Update to version 2.3.6 from GitHub

Location:
1platform-content-ai
Files:
10 added
10 deleted
26 edited
1 copied

Legend:

Unmodified
Added
Removed
  • 1platform-content-ai/tags/2.3.6/.git/FETCH_HEAD

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4        branch 'main' of https://github.com/1platformlabs/1platform-content-ai
     1f1f352bdf675504805f3554f4359033d151ce274        branch 'main' of https://github.com/1platformlabs/1platform-content-ai
  • 1platform-content-ai/tags/2.3.6/.git/ORIG_HEAD

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/tags/2.3.6/.git/config

    r3483441 r3485248  
    1010    auto = 0
    1111[http "https://github.com/"]
    12     extraheader = AUTHORIZATION: basic eC1hY2Nlc3MtdG9rZW46Z2hzX2REc29sVnAyNkhiWmI4VjM2a2x2ZXIzeHJ2U0ZvNzN0QzZBZA==
     12    extraheader = AUTHORIZATION: basic eC1hY2Nlc3MtdG9rZW46Z2hzX2RPMVBGR09zOEFxSlo3ZE03d0xrUFZOZldhRXJzdTNCTE5XNg==
    1313[branch "main"]
    1414    remote = origin
  • 1platform-content-ai/tags/2.3.6/.git/logs/HEAD

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    checkout: moving from master to main
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  checkout: moving from master to main
  • 1platform-content-ai/tags/2.3.6/.git/logs/refs/heads/main

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    branch: Created from refs/remotes/origin/main
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  branch: Created from refs/remotes/origin/main
  • 1platform-content-ai/tags/2.3.6/.git/logs/refs/remotes/origin/main

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*: storing head
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*: storing head
  • 1platform-content-ai/tags/2.3.6/.git/refs/heads/main

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/tags/2.3.6/.git/refs/remotes/origin/main

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/tags/2.3.6/1platform-content-ai.php

    r3483441 r3485248  
    55 * Plugin URI: https://1platform.pro/
    66 * Description: SaaS client for AI-powered content generation, SEO optimization, and site management. All AI processing happens on 1Platform external servers. Includes free local tools: Table of Contents and Internal Links.
    7  * Version: 2.3.5
     7 * Version: 2.3.6
    88 * Author: 1Platform
    99 * License: GPLv2 or later
  • 1platform-content-ai/tags/2.3.6/includes/admin/billing/panels/BillingHistoryPanel.php

    r3483422 r3485248  
    136136        $created_at = $transaction['created_at'] ?? '';
    137137
    138         // Priorizar usd_amount si existe
    139         if (isset($transaction['usd_amount']) || isset($transaction['usdAmount'])) {
    140             $amount = $transaction['usd_amount'] ?? $transaction['usdAmount'] ?? 0;
    141             $currency = 'USD';
    142         } else {
    143             $amount = $transaction['amount'] ?? 0;
    144             $currency = $transaction['currency'] ?? '';
    145         }
     138        // Priorizar usd_amount (monto original del merchant) si existe
     139        $amount = $transaction['usd_amount'] ?? $transaction['usdAmount'] ?? $transaction['amount'] ?? 0;
     140        $currency = $transaction['currency'] ?? '';
    146141
    147142        $status = $transaction['status'] ?? '';
  • 1platform-content-ai/tags/2.3.6/includes/services/logs/ContaiClientLogReporter.php

    r3483422 r3485248  
    143143                'php_version'      => PHP_VERSION,
    144144                'wp_version'       => get_bloginfo('version'),
    145                 'plugin_version'   => defined('CONTAI_VERSION') ? CONTAI_VERSION : '2.3.3',
     145                'plugin_version'   => defined('CONTAI_VERSION') ? CONTAI_VERSION : '2.3.5',
    146146            ],
    147147        ];
  • 1platform-content-ai/tags/2.3.6/readme.txt

    r3483441 r3485248  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 2.3.5
     7Stable tag: 2.3.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    160160== Changelog ==
    161161
     162= 2.3.5 =
     163* Fix: BillingHistoryPanel now shows the correct merchant currency instead of hardcoding USD when usd_amount is present
     164
     165= 2.3.4 =
     166* Added client-side logging system (ContaiClientLogReporter, Logs admin panel)
     167* Added API trace ID propagation for error traceability
     168
    162169= 2.3.3 =
    163170* Fix: Search Console Disconnect Website now properly deletes the website from the 1Platform API before clearing local state
  • 1platform-content-ai/trunk/.git/FETCH_HEAD

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4        branch 'main' of https://github.com/1platformlabs/1platform-content-ai
     1f1f352bdf675504805f3554f4359033d151ce274        branch 'main' of https://github.com/1platformlabs/1platform-content-ai
  • 1platform-content-ai/trunk/.git/ORIG_HEAD

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/trunk/.git/config

    r3483441 r3485248  
    1010    auto = 0
    1111[http "https://github.com/"]
    12     extraheader = AUTHORIZATION: basic eC1hY2Nlc3MtdG9rZW46Z2hzX2REc29sVnAyNkhiWmI4VjM2a2x2ZXIzeHJ2U0ZvNzN0QzZBZA==
     12    extraheader = AUTHORIZATION: basic eC1hY2Nlc3MtdG9rZW46Z2hzX2RPMVBGR09zOEFxSlo3ZE03d0xrUFZOZldhRXJzdTNCTE5XNg==
    1313[branch "main"]
    1414    remote = origin
  • 1platform-content-ai/trunk/.git/logs/HEAD

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    checkout: moving from master to main
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  checkout: moving from master to main
  • 1platform-content-ai/trunk/.git/logs/refs/heads/main

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    branch: Created from refs/remotes/origin/main
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  branch: Created from refs/remotes/origin/main
  • 1platform-content-ai/trunk/.git/logs/refs/remotes/origin/main

    r3483441 r3485248  
    1 0000000000000000000000000000000000000000 dfe48725f31a95abac239723d863f43b55d506a4 runner <runner@runnervm0kj6c.4qvv0lt3cckengxra1ydaipxhh.ex.internal.cloudapp.net> 1773642180 +0000    fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*: storing head
     10000000000000000000000000000000000000000 f1f352bdf675504805f3554f4359033d151ce274 runner <runner@runnervm46oaq.qpzkutmjvgyufgtdg0u1on0xvf.phxx.internal.cloudapp.net> 1773803612 +0000  fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*: storing head
  • 1platform-content-ai/trunk/.git/refs/heads/main

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/trunk/.git/refs/remotes/origin/main

    r3483441 r3485248  
    1 dfe48725f31a95abac239723d863f43b55d506a4
     1f1f352bdf675504805f3554f4359033d151ce274
  • 1platform-content-ai/trunk/1platform-content-ai.php

    r3483441 r3485248  
    55 * Plugin URI: https://1platform.pro/
    66 * Description: SaaS client for AI-powered content generation, SEO optimization, and site management. All AI processing happens on 1Platform external servers. Includes free local tools: Table of Contents and Internal Links.
    7  * Version: 2.3.5
     7 * Version: 2.3.6
    88 * Author: 1Platform
    99 * License: GPLv2 or later
  • 1platform-content-ai/trunk/includes/admin/billing/panels/BillingHistoryPanel.php

    r3483422 r3485248  
    136136        $created_at = $transaction['created_at'] ?? '';
    137137
    138         // Priorizar usd_amount si existe
    139         if (isset($transaction['usd_amount']) || isset($transaction['usdAmount'])) {
    140             $amount = $transaction['usd_amount'] ?? $transaction['usdAmount'] ?? 0;
    141             $currency = 'USD';
    142         } else {
    143             $amount = $transaction['amount'] ?? 0;
    144             $currency = $transaction['currency'] ?? '';
    145         }
     138        // Priorizar usd_amount (monto original del merchant) si existe
     139        $amount = $transaction['usd_amount'] ?? $transaction['usdAmount'] ?? $transaction['amount'] ?? 0;
     140        $currency = $transaction['currency'] ?? '';
    146141
    147142        $status = $transaction['status'] ?? '';
  • 1platform-content-ai/trunk/includes/services/logs/ContaiClientLogReporter.php

    r3483422 r3485248  
    143143                'php_version'      => PHP_VERSION,
    144144                'wp_version'       => get_bloginfo('version'),
    145                 'plugin_version'   => defined('CONTAI_VERSION') ? CONTAI_VERSION : '2.3.3',
     145                'plugin_version'   => defined('CONTAI_VERSION') ? CONTAI_VERSION : '2.3.5',
    146146            ],
    147147        ];
  • 1platform-content-ai/trunk/readme.txt

    r3483441 r3485248  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 2.3.5
     7Stable tag: 2.3.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    160160== Changelog ==
    161161
     162= 2.3.5 =
     163* Fix: BillingHistoryPanel now shows the correct merchant currency instead of hardcoding USD when usd_amount is present
     164
     165= 2.3.4 =
     166* Added client-side logging system (ContaiClientLogReporter, Logs admin panel)
     167* Added API trace ID propagation for error traceability
     168
    162169= 2.3.3 =
    163170* Fix: Search Console Disconnect Website now properly deletes the website from the 1Platform API before clearing local state
Note: See TracChangeset for help on using the changeset viewer.