Plugin Directory

Changeset 3405554


Ignore:
Timestamp:
11/29/2025 12:55:50 AM (3 months ago)
Author:
Webilia
Message:

Released Listdom Bridge 1.3.0

Location:
listdom-bridge
Files:
48 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • listdom-bridge/trunk/init.php

    r3373302 r3405554  
    1010     * @var string
    1111     */
    12     public $version = '1.2.1';
     12    public $version = '1.3.0';
    1313
    1414    /**
  • listdom-bridge/trunk/listdom-bridge.php

    r3373302 r3405554  
    44 * Plugin URI: https://listdom.net
    55 * Description: Migrate listings from other plugins to Listdom
    6  * Version: 1.2.1
     6 * Version: 1.3.0
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
    99 * Requires at least: 4.2
    10  * Tested up to: 6.8
    11  * Requires PHP: 7.2
     10 * Tested up to: 6.9
     11 * Requires PHP: 7.4
    1212 * License: GPLv2 or later
    1313 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • listdom-bridge/trunk/readme.txt

    r3373302 r3405554  
    44Tags: migration, listings, importer, directory, listdom
    55Requires at least: 4.2
    6 Tested up to: 6.8
    7 Requires PHP: 7.2
    8 Stable tag: 1.2.1
     6Tested up to: 6.9
     7Requires PHP: 7.4
     8Stable tag: 1.3.0
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333While the Bridge addon offers a quick migration path, the most accurate approach is to import listings via Listdom's built-in CSV importer or the Excel Importer addon. These tools provide precise field mapping and are best when custom fields matter. Use the Bridge addon when speed is more important than perfect custom-field handling.
     34
    3435== Features and Capabilities ==
    3536
     
    9798The Bridge addon is completely free. Webilia also offers paid addons and a Pro version of Listdom, but the migration tool itself does not require a purchase.
    9899
    99 == Changelog ==
    100 
    101 = 1.0.0 =
    102 * Initial release
    103 * Migration support for Business Directory, Directorist, HivePress, WP GeoDirectory, WP Go Maps, and Classified Listing
    104 * Full import of listing content, media, categories, tags, taxonomies, and map shapes
    105 * Batch processing, duplicate handling, and listing author mapping
    106 
    107100== About Listdom ==
    108101
     
    119112== Changelog ==
    120113
     114= 1.3.0 - November 28th, 2025 =
     115* Maintenance updates.
     116
    121117= 1.2.1 - October 5th, 2025 =
    122118* Addressed some background issues.
     
    127123= 1.0.0 =
    128124* Initial public release on WordPress.org
     125* Migration support for Business Directory, Directorist, HivePress, WP GeoDirectory, WP Go Maps, and Classified Listing
     126* Full import of listing content, media, categories, tags, taxonomies, and map shapes
     127* Batch processing, duplicate handling, and listing author mapping
  • listdom-bridge/trunk/vendor/webilia/listdom-p-bridge/app/Addon.php

    r3358261 r3405554  
    103103            $message = sprintf(
    104104                /* translators: 1: plugin name, 2: import type */
    105                 esc_html__('Finished importing %2$s from %1$s.', 'listdom-bridge'),
     105                esc_html__("Finished importing %2\$s from %1\$s.", 'listdom-bridge'),
    106106                $plugin_name,
    107107                ucfirst($type)
     
    112112            $message = sprintf(
    113113                /* translators: 1: imported so far, 2: total, 3: plugin name, 4: import type */
    114                 esc_html__('Imported %1$d of %2$d %4$s from %3$s. Please wait...', 'listdom-bridge'),
     114                esc_html__("Imported %1\$d of %2\$d %4\$s from %3\$s. Please wait...", 'listdom-bridge'),
    115115                min($offset + $count, $total),
    116116                $total,
  • listdom-bridge/trunk/vendor/webilia/listdom-p-bridge/html/thirdparty.php

    r3373302 r3405554  
    1818                        <div class="lsd-col-3">
    1919                            <?php echo LSD_Form::label([
     20                                'class' => 'lsd-fields-label-tiny',
    2021                                'for' => 'lsdaddbrg_plugin',
    2122                                'title' => esc_html__('Plugin', 'listdom-bridge'),
     
    3233                        <div class="lsd-col-3">
    3334                            <?php echo LSD_Form::label([
     35                                'class' => 'lsd-fields-label-tiny',
    3436                                'for' => 'lsdaddbrg_category',
    3537                                'title' => esc_html__('Category', 'listdom-bridge'),
Note: See TracChangeset for help on using the changeset viewer.