diff --git a/README.md b/README.md index cd62478..8fde4e2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # WebP Generator for Jekyll -WebP Image Generator for Jekyll Sites can automatically generate WebP images for all images on your static site and serve them when possible. +WebP Image Generator for Jekyll Sites can automatically generate WebP images for all images on your static site and serve them when possible. View on [rubygems.org](https://rubygems.org/gems/jekyll-webp). + > Read more about this tool on my blog at blog.sverrirs.com ## Installation @@ -11,7 +12,7 @@ gem install jekyll-webp The release includes all necessary files to run, including the WebP redistributable executable files. -> Currently the release includes the v0.5.1 version of the WebP utilities for Windows, Linux and Mac OS X 10.9 (Mountain Lion). Other versions and releases can be downloaded directly from the Google page. +> Currently the release includes the v0.6.1 version of the WebP utilities for Windows, Linux and Mac OS X 10.9 (Mountain Lion). Other versions and releases can be downloaded directly from the Google page. Add the gem to your `Gemfile` and to Jekyll's `_config.yml` then run `jekyll serve` again and you should see the generator run during site generation. @@ -62,7 +63,7 @@ In case you don't have control over your webserver then using the `` el ``` ## Advanced use: Webserver Configuration -If you can then configuring your webserver to serve your new _.webp_ files to clients that support the format is probably the least problematic approach. This way you don't need to make any changes to your HTML files as your webserver will automatically serve WebP images when the client supports them. +If you can, then configuring your webserver to serve your new _.webp_ files to clients that support the format is probably the least problematic approach. This way you don't need to make any changes to your HTML files as your webserver will automatically serve WebP images when the client supports them. Below is an example for a .htaccess configuration section in an Apache web-server. It will redirect users to webp images whenever possible. diff --git a/bin/linux-x64-cwebp b/bin/linux-x64-cwebp index f2f7678..e8c1dcb 100644 Binary files a/bin/linux-x64-cwebp and b/bin/linux-x64-cwebp differ diff --git a/bin/linux-x86-cwebp b/bin/linux-x86-cwebp index 08ba063..afdfb23 100644 Binary files a/bin/linux-x86-cwebp and b/bin/linux-x86-cwebp differ diff --git a/bin/osx-cwebp b/bin/osx-cwebp index 35de28c..767a6ed 100644 Binary files a/bin/osx-cwebp and b/bin/osx-cwebp differ diff --git a/bin/win-x64-cwebp.exe b/bin/win-x64-cwebp.exe index 244df43..67e748e 100644 Binary files a/bin/win-x64-cwebp.exe and b/bin/win-x64-cwebp.exe differ diff --git a/bin/win-x86-cwebp.exe b/bin/win-x86-cwebp.exe index 6f8c0f6..75f6e50 100644 Binary files a/bin/win-x86-cwebp.exe and b/bin/win-x86-cwebp.exe differ diff --git a/jekyll-webp.gemspec b/jekyll-webp.gemspec index a5aadeb..ff76bc6 100644 --- a/jekyll-webp.gemspec +++ b/jekyll-webp.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.license = "MIT" spec.summary = %q{WebP image generator for Jekyll 3 websites} - spec.description = %q{WebP Image Generator for Jekyll 3 Sites that automatically generate WebP images for all images on your static site and serves them when possible.} + spec.description = %q{WebP Image Generator for Jekyll 3 Sites that automatically generate WebP images for all images on your static site and serves them when possible. Includes the v0.6.1 version of the WebP utilities for Windows, Linux and Mac OS X 10.9 (Mountain Lion)} spec.files = Dir['CODE_OF_CONDUCT.md', 'README.md', 'LICENSE', 'Rakefile', '*.gemspec', 'Gemfile', 'lib/**/*', 'spec/**/*', 'bin/**/*'] spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } diff --git a/lib/jekyll-webp/version.rb b/lib/jekyll-webp/version.rb index a1bde4c..230697d 100644 --- a/lib/jekyll-webp/version.rb +++ b/lib/jekyll-webp/version.rb @@ -2,7 +2,7 @@ module Jekyll module Webp VERSION = "1.0.0" # When modifying remember to issue a new tag command in git before committing, then push the new tag - # git tag -a v0.1.0 -m "Gem v0.1.0" + # git tag -a v1.0.0 -m "Gem v1.0.0" # git push origin --tags end #module Webp end #module Jekyll