Changeset 3044859
- Timestamp:
- 03/04/2024 09:34:08 AM (2 years ago)
- Location:
- usermaven/trunk
- Files:
-
- 3 edited
-
includes/class-usermaven.php (modified) (1 diff)
-
public/class-usermaven-public.php (modified) (2 diffs)
-
usermaven.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
usermaven/trunk/includes/class-usermaven.php
r3014211 r3044859 71 71 $this->version = USERMAVEN_VERSION; 72 72 } else { 73 $this->version = '1.0. 5';73 $this->version = '1.0.6'; 74 74 } 75 75 $this->plugin_name = 'usermaven'; -
usermaven/trunk/public/class-usermaven-public.php
r3008708 r3044859 74 74 */ 75 75 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' ); 77 77 78 78 } … … 97 97 */ 98 98 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 ); 100 100 101 101 } -
usermaven/trunk/usermaven.php
r3014211 r3044859 10 10 * 11 11 * @link https://usermaven.com/ 12 12 13 * @since 1.0.5 13 14 * @package Usermaven … … 17 18 * Plugin URI: https://github.com/usermaven/wordpress 18 19 * Description: The Easiest Website and Product Analytics Platform 19 * Version: 1.0.5 20 21 * Version: 1.0.6 20 22 * Author: Usermaven 21 23 * Author URI: https://usermaven.com/ … … 36 38 * Rename this for your plugin and update it as you release new versions. 37 39 */ 38 define( 'USERMAVEN_VERSION', '1.0. 5' );40 define( 'USERMAVEN_VERSION', '1.0.6' ); 39 41 40 42 /** … … 62 64 */ 63 65 function 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-w ithout-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); 65 67 add_submenu_page( 'usermaven_options', 'Dashboard', 'Dashboard', 'manage_options', 'usermaven_dashboard', 'usermaven_embedded_stats_page' ); 66 68 add_submenu_page( 'usermaven_options', 'Settings', 'Settings', 'manage_options', 'usermaven_options', 'usermaven_activation_form' );
Note: See TracChangeset
for help on using the changeset viewer.