Changeset 601560
- Timestamp:
- 09/20/2012 12:46:56 PM (13 years ago)
- Location:
- auto-animateimage/trunk
- Files:
-
- 3 edited
-
animateimage-utils.php (modified) (1 diff)
-
animateimage.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
auto-animateimage/trunk/animateimage-utils.php
r601557 r601560 29 29 } 30 30 31 // @note '$plugin' is defined since WordPress 2.8 32 function plugins_url( $path, $plugin = '' ) { 33 if (!$plugin) $plugin = __FILE__; 34 return version_compare('2.8', get_bloginfo('version')) > 0 ? plugins_url( 'auto-animateimage/' . $path ) : plugins_url( $path, $plugin ); 35 } 36 31 37 } # class Animate_Image_Utils 32 38 ?> -
auto-animateimage/trunk/animateimage.php
r601557 r601560 4 4 Plugin URI: http://attosoft.info/en/blog/auto-animateimage/ 5 5 Description: Automatically applies AnimateImage script to your site. AnimateImage displays multiple images continuously like animated GIF. All you have to do is write img elements, and the images will be animated automatically. 6 Version: 0. 16 Version: 0.2 7 7 Author: attosoft 8 8 Author URI: http://attosoft.info/en/ … … 29 29 */ 30 30 31 define('AUTO_ANIMATE_IMAGE_VER', '0. 1');31 define('AUTO_ANIMATE_IMAGE_VER', '0.2'); 32 32 33 33 class Animate_Image { … … 39 39 **/ 40 40 function scripts() { 41 wp_enqueue_script('animate-image', plugins_url('animate-image.min.js', __FILE__), false, AUTO_ANIMATE_IMAGE_VER);41 wp_enqueue_script('animate-image', $this->util->plugins_url('animate-image.min.js'), false, AUTO_ANIMATE_IMAGE_VER); 42 42 } 43 43 -
auto-animateimage/trunk/readme.txt
r601557 r601560 3 3 Donate link: http://attosoft.info/en/donate/ 4 4 Tags: animation, animated, slider, slideshow, slide show, gallery, image, images, photo, photos, picture, pictures, javascript, plugin, plugins 5 Requires at least: 2. 85 Requires at least: 2.7 6 6 Tested up to: 3.4.2 7 7 Stable tag: trunk … … 21 21 * Automatically applies [AnimateImage script](http://attosoft.info/en/blog/animate-image/) to your site 22 22 * All you have to do is write `img` elements. No JavaScript, No Shortcode, No Gallery. 23 * Compatible widely down to even obsolete WordPress 2. 823 * Compatible widely down to even obsolete WordPress 2.7 24 24 25 25 = AnimateImage Features = … … 137 137 138 138 = Latest Version = 139 140 = 0.2 = 139 141 * NEW: Localization support 142 * NEW: Compatibility with obsolete WordPress 2.7 140 143 * UPDATED: Added Japanese (ja) translation 141 144
Note: See TracChangeset
for help on using the changeset viewer.