Plugin Directory

Changeset 3044859


Ignore:
Timestamp:
03/04/2024 09:34:08 AM (2 years ago)
Author:
usermaven
Message:

Fixed tested version

Location:
usermaven/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • usermaven/trunk/includes/class-usermaven.php

    r3014211 r3044859  
    7171            $this->version = USERMAVEN_VERSION;
    7272        } else {
    73             $this->version = '1.0.5';
     73            $this->version = '1.0.6';
    7474        }
    7575        $this->plugin_name = 'usermaven';
  • usermaven/trunk/public/class-usermaven-public.php

    r3008708 r3044859  
    7474         */
    7575
    76         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/usermaven-public.css', array(), $this->version, 'all' );
     76        // wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/usermaven-public.css', array(), $this->version, 'all' );
    7777
    7878    }
     
    9797         */
    9898
    99         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/usermaven-public.js', array( 'jquery' ), $this->version, false );
     99        // wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/usermaven-public.js', array( 'jquery' ), $this->version, false );
    100100
    101101    }
  • usermaven/trunk/usermaven.php

    r3014211 r3044859  
    1010 *
    1111 * @link              https://usermaven.com/
     12
    1213 * @since             1.0.5
    1314 * @package           Usermaven
     
    1718 * Plugin URI:        https://github.com/usermaven/wordpress
    1819 * Description:       The Easiest Website and Product Analytics Platform
    19  * Version:           1.0.5
     20
     21 * Version:           1.0.6
    2022 * Author:            Usermaven
    2123 * Author URI:        https://usermaven.com/
     
    3638 * Rename this for your plugin and update it as you release new versions.
    3739 */
    38 define( 'USERMAVEN_VERSION', '1.0.5' );
     40define( 'USERMAVEN_VERSION', '1.0.6' );
    3941
    4042/**
     
    6264 */
    6365function add_usermaven_settings_menu() {
    64     add_menu_page('Usermaven', 'Usermaven', 'manage_options', 'usermaven_options', 'usermaven_activation_form',  plugin_dir_url(__FILE__) . 'admin/icons/um-favicon-without-white-bg.svg', 100);
     66    add_menu_page('Usermaven', 'Usermaven', 'manage_options', 'usermaven_options', 'usermaven_activation_form',  plugin_dir_url(__FILE__) . 'admin/icons/um-favicon-white.svg', 100);
    6567    add_submenu_page( 'usermaven_options', 'Dashboard', 'Dashboard', 'manage_options', 'usermaven_dashboard', 'usermaven_embedded_stats_page' );
    6668    add_submenu_page( 'usermaven_options', 'Settings', 'Settings', 'manage_options', 'usermaven_options', 'usermaven_activation_form' );
Note: See TracChangeset for help on using the changeset viewer.