Changeset 848833
- Timestamp:
- 01/31/2014 01:50:43 PM (12 years ago)
- Location:
- hammy/trunk
- Files:
-
- 10 added
- 2 edited
-
README.md (added)
-
WPThumb/.git (added)
-
WPThumb/.gitignore (added)
-
WPThumb/.gitmodules (added)
-
WPThumb/.travis.yml (added)
-
WPThumb/CONTRIBUTING.md (added)
-
WPThumb/README.md (added)
-
WPThumb/bin (added)
-
WPThumb/bin/install-wp-tests.sh (added)
-
WPThumb/phpunit.xml (added)
-
hammy.php (modified) (2 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hammy/trunk/hammy.php
r848532 r848833 5 5 Description: Creates adaptive images for your content area with breakpoints that you set. 6 6 Author: Noel Tock 7 Version: 1.4 7 Version: 1.4.1 8 8 Author URI: http://www.noeltock.com 9 9 */ … … 12 12 * Defines 13 13 */ 14 define ( 'HAMMY_VERSION', '1.3.2' ); 15 define ( 'HAMMY_PATH', WP_PLUGIN_URL . '/' . end( explode( DIRECTORY_SEPARATOR, dirname( __FILE__ ) ) ) ); 14 $path = explode( DIRECTORY_SEPARATOR, dirname( __FILE__ ) ); 15 define ( 'HAMMY_VERSION', '1.4.1' ); 16 define ( 'HAMMY_PATH', WP_PLUGIN_URL . '/' . end( $path ) ); 16 17 17 18 /** -
hammy/trunk/readme.txt
r848532 r848833 5 5 Requires at least: 3.5 6 6 Tested up to: 3.8.1 7 Stable tag: 1.4 7 Stable tag: 1.4.1 8 8 9 9 Hammy speeds up your website by generating and serving resized images for your content area depending on content width. … … 13 13 = Introduction = 14 14 15 Hammy takes your regular content images ( within posts and pages) and regenerates a number of smaller sized images. When a person visits your website, it then automatically provides them with the most appropriate image (or the smallest one possible). This makes for a better experience, especially on mobile. This uses the new WP 3.5 image code.15 Hammy takes your regular content images (only within posts and pages, not custom post types) and regenerates a number of smaller sized images. When a person visits your website, it then automatically provides them with the most appropriate image (or the smallest one possible). This makes for a better experience, especially on mobile. This uses the new WP 3.5 image code. 16 16 17 17 = Will it work on my Theme? = 18 18 19 **Yes!** 19 **Yes!** (the only exception being themes with no standard posts or pages) 20 20 21 21 = How does it work? = … … 35 35 36 36 Follow me for updates at [@noeltock](http://www.twitter.com/noeltock) 37 38 = GitHub = 39 40 If you have technical issues or other enhancements that you'd like to contribute, please do so in the form of a pull request or issue here: 41 42 [http://wordpress.org/plugins/hammy/](http://wordpress.org/plugins/hammy/) 37 43 38 44 == Installation == … … 83 89 84 90 == Changelog == 91 92 = 1.4.1 = 93 94 * Fixed Warnings 95 * Typo 96 * Tested PNG 85 97 86 98 = 1.4 = … … 144 156 == Upgrade Notice == 145 157 158 = 1.4.1 = 159 * Important fix 160 146 161 = 1.4 = 147 162 * Bug fix, 3.8.1 check and WPThumb update
Note: See TracChangeset
for help on using the changeset viewer.