Changeset 1927303
- Timestamp:
- 08/20/2018 11:41:12 AM (8 years ago)
- Location:
- wp-bodymovin
- Files:
-
- 22 added
- 3 edited
-
tags/2.0.1 (added)
-
tags/2.0.1/assets (added)
-
tags/2.0.1/assets/css (added)
-
tags/2.0.1/assets/css/wpbodymovin-admin.css (added)
-
tags/2.0.1/assets/css/wpbodymovin-admin.min.css (added)
-
tags/2.0.1/assets/css/wpbodymovin-admin.min.css.map (added)
-
tags/2.0.1/assets/js (added)
-
tags/2.0.1/assets/js/isonscreen.js (added)
-
tags/2.0.1/assets/js/isonscreen.min.js (added)
-
tags/2.0.1/assets/js/lottie.js (added)
-
tags/2.0.1/assets/js/lottie.min.js (added)
-
tags/2.0.1/assets/js/wpbodymovin-backend.js (added)
-
tags/2.0.1/assets/js/wpbodymovin-backend.min.js (added)
-
tags/2.0.1/assets/js/wpbodymovin.js (added)
-
tags/2.0.1/assets/js/wpbodymovin.min.js (added)
-
tags/2.0.1/includes (added)
-
tags/2.0.1/includes/metaboxes.php (added)
-
tags/2.0.1/includes/shortcode.php (added)
-
tags/2.0.1/languages (added)
-
tags/2.0.1/languages/wp-bodymovin.pot (added)
-
tags/2.0.1/readme.txt (added)
-
tags/2.0.1/wp-bodymovin.php (added)
-
trunk/languages/wp-bodymovin.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-bodymovin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-bodymovin/trunk/languages/wp-bodymovin.pot
r1927298 r1927303 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Bodymovin 2.0. 0\n"5 "Project-Id-Version: WP Bodymovin 2.0.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bodymovin\n" 7 "POT-Creation-Date: 2018-08-20 11: 16:29+00:00\n"7 "POT-Creation-Date: 2018-08-20 11:34:54+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" -
wp-bodymovin/trunk/readme.txt
r1927298 r1927303 2 2 Contributors: develoved, ksere 3 3 Tags: animation, lottie, animated svg, After Effects 4 Stable tag: 2.0. 04 Stable tag: 2.0.1 5 5 Tested up to: 4.9 6 6 Requires at least: 4.9 … … 30 30 == Changelog == 31 31 32 = 2.0.1 = 33 * Minor fix: Changed assets version number 34 32 35 = 2.0.0 = 33 36 * Added support for image assets -
wp-bodymovin/trunk/wp-bodymovin.php
r1927298 r1927303 4 4 Plugin URI: develoved.com/wp-bodymovin/ 5 5 Description: Use bodymovin exported JSON files in WordPress 6 Version: 2.0. 06 Version: 2.0.1 7 7 Author: develoved 8 8 Author URI: develoved.com … … 44 44 $suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; 45 45 wp_register_script( 'bodymovin' , plugin_dir_url( __FILE__ ) . 'assets/js/lottie' . $suffix . '.js', array(), '5.2.1' ); 46 wp_register_script( 'wp-bodymovin' , plugin_dir_url( __FILE__ ) . 'assets/js/wpbodymovin' . $suffix . '.js', array( 'jquery', 'bodymovin' ), ' 1.0.2', true );46 wp_register_script( 'wp-bodymovin' , plugin_dir_url( __FILE__ ) . 'assets/js/wpbodymovin' . $suffix . '.js', array( 'jquery', 'bodymovin' ), '2.0.1', true ); 47 47 wp_register_script( 'jquery.isonscreen', plugin_dir_url( __FILE__ ) . 'assets/js/isonscreen' . $suffix . '.js', array( 'jquery' ), '0.0.1', true ); 48 48 } … … 52 52 $screen = get_current_screen(); 53 53 wp_register_script( 'bodymovin' , plugin_dir_url( __FILE__ ) . 'assets/js/lottie' . $suffix . '.js', array(), '5.2.1' ); 54 wp_register_script( 'wp-bodymovin-backend' , plugin_dir_url( __FILE__ ) . 'assets/js/wpbodymovin-backend' . $suffix . '.js', array( 'bodymovin' ), ' 1.0.2' );54 wp_register_script( 'wp-bodymovin-backend' , plugin_dir_url( __FILE__ ) . 'assets/js/wpbodymovin-backend' . $suffix . '.js', array( 'bodymovin' ), '2.0.1' ); 55 55 56 56 wp_localize_script( 'wp-bodymovin-backend', 'wpbdmv', array( … … 62 62 63 63 if ( $screen->post_type == 'bdm-animations' ) { 64 wp_enqueue_style( 'wp-bodymovin-admin', plugin_dir_url( __FILE__ ) . 'assets/css/wpbodymovin-admin' . $suffix . '.css', array(), ' 1.0.2' );64 wp_enqueue_style( 'wp-bodymovin-admin', plugin_dir_url( __FILE__ ) . 'assets/css/wpbodymovin-admin' . $suffix . '.css', array(), '2.0.1' ); 65 65 wp_enqueue_media(); 66 66 }
Note: See TracChangeset
for help on using the changeset viewer.