Plugin Directory

Changeset 3359754


Ignore:
Timestamp:
09/11/2025 10:36:26 AM (7 months ago)
Author:
infoforte
Message:

2.0.0

  • Bug fixes and other improvements
  • Added language for AU / NZ
  • Added column of article created in dashboard
Location:
lyxity/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • lyxity/trunk/assets/js/realtime-status.js

    r3356931 r3359754  
    135135
    136136    if (!requests || !Array.isArray(requests) || !requests.length) {
    137       $tbody.append('<tr><td colspan="5" class="text-center" style="padding:40px;color:#646970;">No requests found.</td></tr>');
     137      $tbody.append('<tr><td colspan="6" class="text-center" style="padding:40px;color:#646970;">No requests found.</td></tr>');
    138138      return;
    139139    }
    140 
     140    console.log('Rendering requests:', requests);
    141141    requests.forEach(function (r) {
    142142
     
    173173
    174174      tr.append($('<td/>').text(finalCount));
     175
     176      // Extract articles created count - check multiple possible paths
     177      const articlesCreated = pick(statistics, 'articlesCompleted', 'ArticlesCompleted') ||
     178        '—';
     179
     180      tr.append($('<td/>').text(articlesCreated));
    175181
    176182      // Extract Status from nested Status object - check multiple possible paths
  • lyxity/trunk/lyxity.php

    r3356931 r3359754  
    33Plugin Name: Lyxity
    44Description: The art of modern search engine optimization
    5 Version: 1.9.0
     5Version: 2.0.0
    66Author: Infoforte
    77Author URI: https://infoforte.com
     
    2020
    2121// Define plugin constants
    22 define('LYXITY_VERSION', '1.9.0');
     22define('LYXITY_VERSION', '2.0.0');
    2323define('LYXITY_FILE', __FILE__);
    2424define('LYXITY_PATH', plugin_dir_path(__FILE__));
  • lyxity/trunk/readme.txt

    r3356931 r3359754  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 1.9.0
     6Stable tag: 2.0.0
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    113113
    114114== Changelog ==
     115= 2.0.0 =
     116- Bug fixes and other improvements
     117- Added language for AU / NZ
     118- Added column of article created in dashboard
     119
    115120= 1.9.0 =
    116121- Bug fixes and other improvements
  • lyxity/trunk/templates/dashboard-page.php

    r3356931 r3359754  
    196196                        <th class="column-created"><?php echo esc_html__('Created', 'lyxity'); ?></th>
    197197                        <th class="column-updated"><?php echo esc_html__('Updated', 'lyxity'); ?></th>
    198                         <th class="column-articles"><?php echo esc_html__('Articles', 'lyxity'); ?></th>
     198                        <th class="column-articles"><?php echo esc_html__('Articles Requested', 'lyxity'); ?></th>
     199                        <th class="column-articles-created"><?php echo esc_html__('Articles Created', 'lyxity'); ?></th>
    199200                        <th class="column-status"><?php echo esc_html__('Status', 'lyxity'); ?></th>
    200201                    </tr>
     
    202203                <tbody>
    203204                    <tr class="lyxity-loading-row">
    204                         <td colspan="5">
     205                        <td colspan="6">
    205206                            <div class="lyxity-loading-indicator">
    206207                                <span class="spinner is-active"></span>
  • lyxity/trunk/templates/settings-page.php

    r3350309 r3359754  
    244244                                                <label for="lyxity_default_language" class="form-label"><?php esc_html_e('Default Language', 'lyxity'); ?></label>
    245245                                                <select id="lyxity_default_language" name="lyxity_default_language" class="form-control">
     246                                                    <option value="en-AU" <?php selected($default_language, 'en-AU'); ?>>
     247                                                        <?php esc_html_e('English (Australia)', 'lyxity'); ?>
     248                                                    </option>
     249                                                    <option value="en-NZ" <?php selected($default_language, 'en-NZ'); ?>>
     250                                                        <?php esc_html_e('English (New Zealand)', 'lyxity'); ?>
     251                                                    </option>
    246252                                                    <option value="en-GB" <?php selected($default_language, 'en-GB'); ?>>
    247253                                                        <?php esc_html_e('English (UK)', 'lyxity'); ?>
Note: See TracChangeset for help on using the changeset viewer.