Changeset 3368085
- Timestamp:
- 09/25/2025 10:01:48 PM (6 months ago)
- Location:
- videomail-for-ninja-forms
- Files:
-
- 6 added
- 6 deleted
- 8 edited
- 1 copied
-
tags/8.1.1 (copied) (copied from videomail-for-ninja-forms/trunk)
-
tags/8.1.1/readme.txt (modified) (2 diffs)
-
tags/8.1.1/target/css/main-min.css (added)
-
tags/8.1.1/target/css/main.min.css (deleted)
-
tags/8.1.1/target/js/main-min.js (added)
-
tags/8.1.1/target/js/main.min.js (deleted)
-
tags/8.1.1/target/js/videomail-client/index-min.js (added)
-
tags/8.1.1/target/js/videomail-client/index.min.js (deleted)
-
tags/8.1.1/target/php/fields/videomail.php (modified) (3 diffs)
-
tags/8.1.1/target/php/videomail.php (modified) (1 diff)
-
tags/8.1.1/videomail-for-ninja-forms.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/target/css/main-min.css (added)
-
trunk/target/css/main.min.css (deleted)
-
trunk/target/js/main-min.js (added)
-
trunk/target/js/main.min.js (deleted)
-
trunk/target/js/videomail-client/index-min.js (added)
-
trunk/target/js/videomail-client/index.min.js (deleted)
-
trunk/target/php/fields/videomail.php (modified) (3 diffs)
-
trunk/target/php/videomail.php (modified) (1 diff)
-
trunk/videomail-for-ninja-forms.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
videomail-for-ninja-forms/tags/8.1.1/readme.txt
r3366104 r3368085 6 6 Requires at least: 6.0 7 7 Tested up to: 6.8.2 8 Stable tag: 8.1. 08 Stable tag: 8.1.1 9 9 Requires PHP: 8.1.0 10 10 Donate link: https://videomail.io/faq … … 71 71 72 72 == Changelog == 73 = 8.1.1 (26 Sept 2025) = 74 **Fix** 75 * Rename minified files to prevent LiteSpeed from minifying them all over again, see https://github.com/litespeedtech/lscache_wp/issues/908 76 73 77 = 8.1.0 (23 Sept 2025) = 74 78 **Fix** -
videomail-for-ninja-forms/tags/8.1.1/target/php/fields/videomail.php
r3366104 r3368085 156 156 wp_enqueue_style( 157 157 'nf-videomail-main', 158 NF_Videomail::$cssUrl . 'main .min.css',158 NF_Videomail::$cssUrl . 'main-min.css', 159 159 array(), 160 160 NF_Videomail::VERSION … … 165 165 wp_register_script( 166 166 'nf-videomail-client', 167 NF_Videomail::$jsUrl . 'videomail-client/index .min.js',167 NF_Videomail::$jsUrl . 'videomail-client/index-min.js', 168 168 array(), 169 169 NF_Videomail::VERSION … … 172 172 wp_enqueue_script( 173 173 'nf-videomail-main', 174 NF_Videomail::$jsUrl . 'main .min.js',174 NF_Videomail::$jsUrl . 'main-min.js', 175 175 // The script nf-front-end is defined by the Ninja Forms plugin and 176 176 // enqueued along with the ("front-end", client-side) form. -
videomail-for-ninja-forms/tags/8.1.1/target/php/videomail.php
r3366104 r3368085 3 3 4 4 const NAME = 'Videomail'; 5 const VERSION = '8.1. 0';5 const VERSION = '8.1.1'; 6 6 const AUTHOR = 'Michael Heuberger + Kyle B. Johnson'; 7 7 const SLUG = 'videomail'; -
videomail-for-ninja-forms/tags/8.1.1/videomail-for-ninja-forms.php
r3366104 r3368085 4 4 Plugin URI: https://github.com/binarykitchen/videomail-for-ninja-forms 5 5 Description: Express yourself in more than just words. Record and send a short video from your webcam. 6 Version: 8.1. 06 Version: 8.1.1 7 7 Author: Michael Heuberger + Kyle B. Johnson 8 8 Author URI: https://videomail.io -
videomail-for-ninja-forms/trunk/readme.txt
r3366104 r3368085 6 6 Requires at least: 6.0 7 7 Tested up to: 6.8.2 8 Stable tag: 8.1. 08 Stable tag: 8.1.1 9 9 Requires PHP: 8.1.0 10 10 Donate link: https://videomail.io/faq … … 71 71 72 72 == Changelog == 73 = 8.1.1 (26 Sept 2025) = 74 **Fix** 75 * Rename minified files to prevent LiteSpeed from minifying them all over again, see https://github.com/litespeedtech/lscache_wp/issues/908 76 73 77 = 8.1.0 (23 Sept 2025) = 74 78 **Fix** -
videomail-for-ninja-forms/trunk/target/php/fields/videomail.php
r3366104 r3368085 156 156 wp_enqueue_style( 157 157 'nf-videomail-main', 158 NF_Videomail::$cssUrl . 'main .min.css',158 NF_Videomail::$cssUrl . 'main-min.css', 159 159 array(), 160 160 NF_Videomail::VERSION … … 165 165 wp_register_script( 166 166 'nf-videomail-client', 167 NF_Videomail::$jsUrl . 'videomail-client/index .min.js',167 NF_Videomail::$jsUrl . 'videomail-client/index-min.js', 168 168 array(), 169 169 NF_Videomail::VERSION … … 172 172 wp_enqueue_script( 173 173 'nf-videomail-main', 174 NF_Videomail::$jsUrl . 'main .min.js',174 NF_Videomail::$jsUrl . 'main-min.js', 175 175 // The script nf-front-end is defined by the Ninja Forms plugin and 176 176 // enqueued along with the ("front-end", client-side) form. -
videomail-for-ninja-forms/trunk/target/php/videomail.php
r3366104 r3368085 3 3 4 4 const NAME = 'Videomail'; 5 const VERSION = '8.1. 0';5 const VERSION = '8.1.1'; 6 6 const AUTHOR = 'Michael Heuberger + Kyle B. Johnson'; 7 7 const SLUG = 'videomail'; -
videomail-for-ninja-forms/trunk/videomail-for-ninja-forms.php
r3366104 r3368085 4 4 Plugin URI: https://github.com/binarykitchen/videomail-for-ninja-forms 5 5 Description: Express yourself in more than just words. Record and send a short video from your webcam. 6 Version: 8.1. 06 Version: 8.1.1 7 7 Author: Michael Heuberger + Kyle B. Johnson 8 8 Author URI: https://videomail.io
Note: See TracChangeset
for help on using the changeset viewer.