Plugin Directory

Changeset 3450648


Ignore:
Timestamp:
01/30/2026 06:14:27 PM (8 weeks ago)
Author:
surflabtech
Message:

v2.4.5

Location:
surflink
Files:
306 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • surflink/trunk/assets/css/surfl.css

    r3450586 r3450648  
    451451  border-collapse: collapse;
    452452}
    453 
     453.surfl-progress-container {
     454  max-width: 1500px;
     455}
    454456.surfl-sr-table > * label {
    455457  position: relative;
     
    14821484  width: 100%;
    14831485  border-radius: 10px;
    1484   margin: 20px 0;
     1486  margin: 20px auto;
    14851487
    14861488  position: relative;
     
    15031505  position: absolute;
    15041506  font-weight: bold;
    1505   font-size: 0.9em;
     1507  font-size: 14px;
    15061508  width: 100%;
    15071509  text-align: center;
     
    15161518
    15171519.surfl-log-container {
    1518   padding: 3px;
    1519   margin-top: 2px;
    1520   font-size: 0.85em;
     1520  font-size: 0.9em;
     1521  text-align: center;
    15211522}
    15221523
     
    24372438/* Hide premium lock icons when sidebar is collapsed */
    24382439/* Only target lock icons that are NOT inside the icon wrapper (main icons) */
    2439 .surfl-side-navs:not(.surfl-sidebar-expanded) .surfl-side-nav > .dashicons-lock {
     2440.surfl-side-navs:not(.surfl-sidebar-expanded)
     2441  .surfl-side-nav
     2442  > .dashicons-lock {
    24402443  display: none;
    24412444}
     
    41384141
    41394142  .surfl-progress-container {
    4140     background: linear-gradient(90deg, #eff1f4, #bae2e4 90%);
     4143    /* inner depth shadow */
     4144    box-shadow:
     4145      inset 0 2px 4px rgba(0, 0, 0, 0.35),
     4146      inset 0 -2px 3px rgba(255, 255, 255, 0.15);
    41414147  }
    41424148
     
    41544160
    41554161  .surfl-log-container {
    4156     background: linear-gradient(90deg, #eff1f4, #bae2e4 90%);
    41574162    color: var(--surfl-primary-color-light);
    41584163  }
     
    44264431  .surfl-table-report code {
    44274432    background-color: #f0f0f0;
    4428   }
    4429 
    4430   .surfl-report-container {
    4431     border: 1px solid #ccd0d4;
    4432     background-color: #ffffff;
    4433     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    44344433  }
    44354434
  • surflink/trunk/assets/js/surfl.js

    r3448576 r3450648  
    487487          <div class="surfl-progress-bar" style="width: 0%;"></div>
    488488        </div>
    489         <div class="surfl-log-container"></div>
     489        <div class="surfl-log-container"><p>Initializing...</p></div>
    490490      `);
    491491      submitButton
     
    515515          const report_html = data.report_html || "";
    516516          const history_html = data.history_html || false;
    517           const message = data.message || "";
    518517          const current_table = data.current_table || "";
    519518          const current_table_index = data.current_table_index || 0;
     519          const message =
     520            data.message || `Processed ${current_table_index + 1}`;
    520521
    521522          // Update progress bar
     
    536537          let displayMessage = "";
    537538          if (current_table) {
    538             displayMessage = `Processing ${current_table}: rows scanned ${processed_rows} (${Math.min(
     539            displayMessage = `${current_table} - ${Math.min(
    539540              100,
    540541              Math.round((processed_rows / total_rows) * 100),
    541             )}%)`;
     542            )}%`;
    542543          } else if (message) {
    543544            displayMessage = message;
    544545          }
    545546
     547          // Only update if there's a new message, otherwise preserve existing text for stability
    546548          if (displayMessage) {
    547549            $(containerId)
    548               .find(".surfl-log-container")
    549               .html(`<p>${displayMessage}</p>`);
     550              .find(".surfl-log-container p")
     551              .text(`${displayMessage}`);
    550552          }
    551553
  • surflink/trunk/readme.txt

    r3450586 r3450648  
    66**Requires PHP:** 7.4   
    77**Tested up to:** 6.9 
    8 **Stable tag:** 2.4.4
     8**Stable tag:** 2.4.5
    99**License:** GPLv3 or later 
    1010**License URI:** https://opensource.org/licenses/GPL-3.0 
     
    209209== Changelog ==
    210210
     211= 2.4.5 =
     212* Improved: Progress bar UI Improvised.
     213
    211214= 2.4.4 =
    212215* Fix: Bugs fixed in Module Manager and Select Backup Modal.
    213 * Improved: Custom login form is now similar to default WordPress login form.
     216* Improved: Custom Login Form UI Improvised.
    214217* Security: Overall security is improved.
    215218
  • surflink/trunk/surf-link.php

    r3450586 r3450648  
    77 * Author: SurfLab
    88 * Author URI: https://surflabtech.com
    9  * Version: 2.4.4
     9 * Version: 2.4.5
    1010 * Text Domain: surflink
    1111 * License: GPL-3.0-or-later
     
    6767    }
    6868    if ( !defined( 'SURFL_VERSION' ) ) {
    69         define( 'SURFL_VERSION', '2.4.4' );
     69        define( 'SURFL_VERSION', '2.4.5' );
    7070    }
    7171    if ( !defined( 'SURFL_PLUGIN' ) ) {
     
    100100        }
    101101        if ( !defined( 'SURFL_VERSION' ) ) {
    102             define( 'SURFL_VERSION', '2.4.4' );
     102            define( 'SURFL_VERSION', '2.4.5' );
    103103        }
    104104        if ( !defined( 'SURFL_SITE_URL' ) ) {
Note: See TracChangeset for help on using the changeset viewer.