Changeset 3317020
- Timestamp:
- 06/24/2025 01:16:59 PM (9 months ago)
- Location:
- dmimag-liveblog
- Files:
-
- 28 added
- 4 edited
-
tags/1.2.3 (added)
-
tags/1.2.3/admin (added)
-
tags/1.2.3/admin/class-dmimag-liveblog-admin.php (added)
-
tags/1.2.3/admin/css (added)
-
tags/1.2.3/admin/css/dmimag-liveblog-admin.css (added)
-
tags/1.2.3/admin/index.php (added)
-
tags/1.2.3/admin/js (added)
-
tags/1.2.3/admin/js/dmimag-liveblog-admin.js (added)
-
tags/1.2.3/admin/partials (added)
-
tags/1.2.3/admin/partials/dmimag-liveblog-admin-display.php (added)
-
tags/1.2.3/dmimag-liveblog.php (added)
-
tags/1.2.3/includes (added)
-
tags/1.2.3/includes/class-dmimag-liveblog-activator.php (added)
-
tags/1.2.3/includes/class-dmimag-liveblog-deactivator.php (added)
-
tags/1.2.3/includes/class-dmimag-liveblog-loader.php (added)
-
tags/1.2.3/includes/class-dmimag-liveblog.php (added)
-
tags/1.2.3/includes/index.php (added)
-
tags/1.2.3/index.php (added)
-
tags/1.2.3/license.txt (added)
-
tags/1.2.3/public (added)
-
tags/1.2.3/public/class-dmimag-liveblog-public.php (added)
-
tags/1.2.3/public/css (added)
-
tags/1.2.3/public/css/dmimag-liveblog-public.css (added)
-
tags/1.2.3/public/index.php (added)
-
tags/1.2.3/public/js (added)
-
tags/1.2.3/public/js/dmimag-liveblog-public.js (added)
-
tags/1.2.3/readme.txt (added)
-
tags/1.2.3/uninstall.php (added)
-
trunk/dmimag-liveblog.php (modified) (2 diffs)
-
trunk/includes/class-dmimag-liveblog.php (modified) (2 diffs)
-
trunk/public/class-dmimag-liveblog-public.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dmimag-liveblog/trunk/dmimag-liveblog.php
r3316498 r3317020 17 17 * Plugin URI: https://dmimag.site 18 18 * Description: Create an unlimited of Live broadcast that easily fit into your website design. 19 * Version: 1.2. 219 * Version: 1.2.3 20 20 * Author: dmimag 21 21 * Author URI: https://dmimag.site/ … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'DMIMAG_LIVEBLOG_VERSION', '1.2. 2' );37 define( 'DMIMAG_LIVEBLOG_VERSION', '1.2.3' ); 38 38 39 39 /** -
dmimag-liveblog/trunk/includes/class-dmimag-liveblog.php
r3316498 r3317020 72 72 $this->version = DMIMAG_LIVEBLOG_VERSION; 73 73 } else { 74 $this->version = '1.2. 2';74 $this->version = '1.2.3'; 75 75 } 76 76 … … 214 214 $plugin_public = new Dmimag_Liveblog_Public( $this->dmimag_liveblog_get_plugin_name(), $this->dmimag_liveblog_get_version() ); 215 215 216 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'dmimag_liveblog_public_wp_ enqueue_style' );217 218 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'dmimag_liveblog_public_wp_ enqueue_script' );216 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'dmimag_liveblog_public_wp_register_style' ); // dmimag_liveblog_public_wp_enqueue_style 217 218 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'dmimag_liveblog_public_wp_register_script' ); // dmimag_liveblog_public_wp_enqueue_script 219 219 220 220 /** -
dmimag-liveblog/trunk/public/class-dmimag-liveblog-public.php
r3316498 r3317020 60 60 * @since 1.0.0 61 61 */ 62 public function dmimag_liveblog_public_wp_ enqueue_style() {62 public function dmimag_liveblog_public_wp_register_style() { // dmimag_liveblog_public_wp_enqueue_style 63 63 64 64 /** … … 73 73 * class. 74 74 */ 75 wp_ enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/dmimag-liveblog-public.css', array(), $this->version, 'all' ); //75 wp_register_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/dmimag-liveblog-public.css', array(), $this->version, 'all' ); // wp_enqueue_style 76 76 77 77 } … … 82 82 * @since 1.0.0 83 83 */ 84 public function dmimag_liveblog_public_wp_enqueue_script() {84 public function dmimag_liveblog_public_wp_register_script() { //dmimag_liveblog_public_wp_enqueue_script 85 85 86 86 /** … … 96 96 */ 97 97 98 wp_ enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/dmimag-liveblog-public.js', array( 'jquery' ), $this->version, array( 'in_footer' => true, 'strategy' => 'async' ) ); //wp_register_script98 wp_register_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/dmimag-liveblog-public.js', array( 'jquery' ), $this->version, array( 'in_footer' => true, 'strategy' => 'async' ) ); //wp_register_script 99 99 100 100 wp_add_inline_script( … … 256 256 257 257 } 258 259 /** 260 * Including JS and CSS only when loading shortcode 261 * 262 */ 263 wp_enqueue_style( $this->plugin_name ); 264 wp_enqueue_script( $this->plugin_name ); 258 265 259 266 ob_start(); -
dmimag-liveblog/trunk/readme.txt
r3316498 r3317020 2 2 Contributors: dmimag 3 3 Donate link: https://dmimag.site 4 Tags: liveblog plugin, live broadcast plugin, wordpress liveblog, wordpress live broadcast, live broadcast4 Tags: liveblog, livebroadcast, live blog, wordpress liveblog, live broadcast 5 5 Requires at least: 6.0 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 28 Stable tag: 1.2.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 15 15 16 16 Live text broadcasts on your site while you're in the thick of things. 17 Breaking news, concerts, sporting events, etc.17 Breaking news, concerts, sporting events, conference, etc. 18 18 Keep your readers up to date. 19 19 … … 44 44 == Changelog == 45 45 46 = 1.2.3 = 47 - Including JS and CSS only when loading plugin shortcode 48 - Fixed minor bugs 49 46 50 = 1.2.2 = 47 51 - Fixed minor bugs
Note: See TracChangeset
for help on using the changeset viewer.