Plugin Directory

Changeset 3373303


Ignore:
Timestamp:
10/06/2025 01:02:01 AM (5 months ago)
Author:
Webilia
Message:

Released Listdom KML 1.9.1

Location:
listdom-kml
Files:
68 added
7 edited

Legend:

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

    r3358264 r3373303  
    1010     * @var string
    1111     */
    12     public $version = '1.9.0';
     12    public $version = '1.9.1';
    1313
    1414    /**
  • listdom-kml/trunk/listdom-kml.php

    r3358264 r3373303  
    44 * Plugin URI: https://listdom.net
    55 * Description: Display KML layers on the map easily
    6  * Version: 1.9.0
     6 * Version: 1.9.1
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
     
    1111 * Requires PHP: 7.2
    1212 * License: GPLv2 or later
    13  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1414 * Requires Plugins: listdom
    1515 *
  • listdom-kml/trunk/readme.txt

    r3358264 r3373303  
    66Tested up to: 6.8
    77Requires PHP: 7.2
    8 Stable tag: 1.9.0
     8Stable tag: 1.9.1
    99Requires Plugins: listdom
    1010License: GPLv2 or later
    11 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     11License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1212
    1313Easily add KML (and GPX) map layers to your Listdom directory maps, highlighting specific areas, routes, or boundaries.
     
    6666== Changelog ==
    6767
     68= 1.9.1 - October 5th, 2025 =
     69* Addressed some background issues.
     70
    6871= 1.8.0 =
    6972* Initial public release on WordPress.org
  • listdom-kml/trunk/vendor/webilia/listdom-p-kml/app/Addon.php

    r3358264 r3373303  
    1313    {
    1414        // Don't add it for none map skins
    15         if (!in_array($skin, ['grid', 'halfmap', 'list', 'listgrid', 'singlemap', 'accordion', 'mosaic', 'gallery'])) return;
     15        if (!in_array($skin, ['grid', 'halfmap', 'list', 'listgrid', 'singlemap', 'accordion', 'mosaic', 'gallery', 'timeline'])) return;
    1616
    1717        $this->include_html_file('shortcode.php', [
  • listdom-kml/trunk/vendor/webilia/listdom-p-kml/app/Base.php

    r3345968 r3373303  
    4646    public function response(array $response)
    4747    {
    48         echo json_encode($response, JSON_NUMERIC_CHECK);
     48        echo wp_json_encode($response, JSON_NUMERIC_CHECK);
    4949        exit;
    5050    }
  • listdom-kml/trunk/vendor/webilia/listdom-p-kml/html/form.php

    r3358264 r3373303  
    1111        <div class="lsd-settings-fields-wrapper">
    1212            <div class="lsd-form-row">
    13         <div class="lsd-col-2"><?php echo LSD_Form::label([
    14             'title' => esc_html__('Display in Single Listing', 'listdom-kml'),
    15             'for' => 'lsd_addons_kml_display_in_listing_details',
    16         ]); ?></div>
    17         <div class="lsd-col-6">
    18             <?php echo LSD_Form::switcher([
    19                 'id' => 'lsd_addons_kml_display_in_listing_details',
    20                 'value' => $kml['display_in_listing_details'] ?? 1,
    21                 'name' => 'addons[kml][display_in_listing_details]',
    22             ]); ?>
    23             <p class="description lsd-mb-0 lsd-mt-2"><?php echo esc_html__('Display layers on single listing pages.', 'listdom-kml'); ?></p>
    24         </div>
    25     </div>
     13                <div class="lsd-col-3"><?php echo LSD_Form::label([
     14                    'class' => 'lsd-fields-label',
     15                    'title' => esc_html__('Display in Single Listing', 'listdom-kml'),
     16                    'for' => 'lsd_addons_kml_display_in_listing_details',
     17                ]); ?></div>
     18                <div class="lsd-col-5">
     19                    <?php echo LSD_Form::switcher([
     20                        'id' => 'lsd_addons_kml_display_in_listing_details',
     21                        'value' => $kml['display_in_listing_details'] ?? 1,
     22                        'name' => 'addons[kml][display_in_listing_details]',
     23                    ]); ?>
     24                    <p class="lsd-admin-description-tiny lsd-mb-0 lsd-mt-2"><?php echo esc_html__('Display layers on single listing pages.', 'listdom-kml'); ?></p>
     25                </div>
     26            </div>
    2627        </div>
    2728    </div>
  • listdom-kml/trunk/vendor/webilia/listdom-p-kml/html/shortcode.php

    r3358264 r3373303  
    2222            'suggestions' => 'lsd_display_options_skin_'.$skin.'_suggestions',
    2323            'values' => $skin_options['kml_layers'] ?? [],
    24             'placeholder' => esc_html__('Type at least 3 characters of the layer name ...', 'listdom-kml'),
     24            'placeholder' => esc_attr__('Type at least 3 characters of the layer name ...', 'listdom-kml'),
    2525            'description' => esc_html__('Select multiple KML layers to show on the map. Leave it empty to display all layers.', 'listdom-kml'),
    2626        ]); ?>
Note: See TracChangeset for help on using the changeset viewer.