Plugin Directory

Changeset 3442783


Ignore:
Timestamp:
01/19/2026 07:55:59 PM (2 months ago)
Author:
butterflybutton
Message:

Deploy version 0.1.2 from GitHub

Location:
butterfly-button
Files:
37 added
4 edited

Legend:

Unmodified
Added
Removed
  • butterfly-button/trunk/README.txt

    r3442773 r3442783  
    55Requires at least: 5.0
    66Tested up to: 6.9
    7 Stable tag: 0.1.1
     7Stable tag: 0.1.2
    88License: GPL-2.0+
    99License URI: http://www.gnu.org/licenses/gpl-2.0.txt
  • butterfly-button/trunk/admin/class-butterfly-button-admin.php

    r3442617 r3442783  
    347347         */
    348348
    349         wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/butterfly-button-admin.css', array(), $this->version, 'all');
     349        $css_file = plugin_dir_path(__FILE__) . 'css/butterfly-button-admin.css';
     350        $version = file_exists($css_file) ? filemtime($css_file) : $this->version;
     351        wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'css/butterfly-button-admin.css', array(), $version, 'all');
    350352
    351353    }
     
    371373         */
    372374
    373         wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/butterfly-button-admin.js', array('jquery'), $this->version, false);
     375        $js_file = plugin_dir_path(__FILE__) . 'js/butterfly-button-admin.js';
     376        $version = file_exists($js_file) ? filemtime($js_file) : $this->version;
     377        wp_enqueue_script($this->plugin_name, plugin_dir_url(__FILE__) . 'js/butterfly-button-admin.js', array('jquery'), $version, false);
    374378
    375379    }
  • butterfly-button/trunk/admin/css/butterfly-button-admin.css

    r3442617 r3442783  
    246246/* Position Picker Grid */
    247247.bf-snap-to-grid-container {
    248     display: flex;
     248    /* display: flex; */
     249    display: none !important;
    249250    flex-direction: column;
    250251    align-items: center;
  • butterfly-button/trunk/butterfly-button.php

    r3442773 r3442783  
    1717 * Plugin URI:        https://github.com/TheButterflyButton/wp-butterfly-button
    1818 * Description:       The Butterfly Button is a digital safe zone that secretly provides information, assistance and contacts domestic violence victims with experts who will be happy to assist. By adding it to your website, you help to hide the usage of The Butterfly, no one can trace the actions made inside The Butterfly and no entry is saved in the browsing history. With a few finger taps, without leaving traces, everybody can get help, consult and read info about domestic violence.
    19  * Version:           0.1.1
     19 * Version:           0.1.2
    2020 * Author:            CAVO - Connecting for a safer world
    2121 * Author URI:        https://butterfly-button.com
Note: See TracChangeset for help on using the changeset viewer.