diff --git a/README.md b/README.md index 4367f902..1a7bced8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Picturefill A [responsive image](http://www.whatwg.org/specs/web-apps/current-work/multipage/embedded-content.html#embedded-content) polyfill. -* Authors: See [Authors.txt](https://github.com/scottjehl/picturefill/blob/3.0/Authors.txt) +* Authors: See [Authors.txt](https://raw.githubusercontent.com/scottjehl/picturefill/master/Authors.txt) * License: MIT [![build-status](https://api.travis-ci.org/scottjehl/picturefill.svg)](https://travis-ci.org/scottjehl/picturefill) [Join Slack channel](https://pf-slackin.herokuapp.com/) @@ -15,9 +15,9 @@ Picturefill has three versions: To find out how to use Picturefill, visit the [project site](http://scottjehl.github.com/picturefill/). ## The gotchas -Be it browsers, the `picture` spec, or picturefill, there are a couple gotchas you should be aware of when working with Picturefill. +Be it browser issues, the responsive images specifications, or Picturefill itself, there are a couple gotchas you should be aware of when working with Picturefill: -- Firefox 38 and 39 has some bugs [[1]](https://bugzilla.mozilla.org/show_bug.cgi?id=1139560) [[2]](https://bugzilla.mozilla.org/show_bug.cgi?id=1139554) [[3]](https://bugzilla.mozilla.org/show_bug.cgi?id=1135812) where images won't update on screen resize. These should be fixed in Firefox 40. +- Firefox 38 and 39 has some bugs [[1]](https://bugzilla.mozilla.org/show_bug.cgi?id=1139560) [[2]](https://bugzilla.mozilla.org/show_bug.cgi?id=1139554) [[3]](https://bugzilla.mozilla.org/show_bug.cgi?id=1135812) where images won't update on screen resize. These issues are addressed by Picturefill 3.0.0, and should be fixed in Firefox 41. - Per the `picture` spec, using `%` _isn't_ allowed in the `sizes` attribute. Using `%` will fallback to `100vw`. diff --git a/bower.json b/bower.json index 74975e06..02fffd73 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "picturefill", "repo": "scottjehl/picturefill", - "description": "A Polyfill for the HTML Picture Element (http://picture.responsiveimages.org/) that you can use today.", + "description": "A polyfill for responsive images (http://picture.responsiveimages.org/) that you can use today.", "main": "dist/picturefill.js", "scripts": [ "dist/picturefill.js" diff --git a/examples/styles.css b/examples/styles.css index d2c88f96..f0ea14c5 100644 --- a/examples/styles.css +++ b/examples/styles.css @@ -91,6 +91,10 @@ main { letter-spacing: .125em; text-rendering: optimizeLegibility; } +.hed-currentversion { + font-size: 1.35em; + letter-spacing: .09em; +} .lede .hed-subsection { font-size: .9em; } diff --git a/index.html b/index.html index 95b4cb92..1efe46e3 100644 --- a/index.html +++ b/index.html @@ -35,7 +35,7 @@

Picturefill

The picture element, srcset and sizes attributes, and associated features allow web developers to deliver an appropriate image to every user depending on a variety of conditions like screen size, viewport size, screen resolution, and more. Picturefill enables support for the picture element and associated features in browsers that do not yet support them, so you can start using them today!

-

Picturefill development is sponsored by and , and maintained by the Picturefill Team.

+

Picturefill development is sponsored by and , and maintained by the Picturefill Team. Ongoing discussion of the project is conducted via Slack.

Contributing, Bug Reports, and More information

@@ -45,11 +45,11 @@

Contributing, Bug Reports, and More

Downloading Picturefill

-

Picturefill Version 3.0.0 (Release Candidate 1)

+

Picturefill Version 3.0.0 (Stable)

Version 3 is a full rewrite of the Picturefill codebase, featuring optimized performance, better emulation of native behavior, and parsers that adhere much more closely to the specification. It also handles many of the quirks, shortcomings, and edge cases related to first-generation native implementations.

-

Feedback on this beta release is highly welcomed—if you encounter any problems, please file an issue on GitHub.

+

Feedback on this release is highly welcomed—if you encounter any problems, please file an issue on GitHub.

-

Picturefill Version 2.3.1 (Stable)

-

This is the old way, and it's still available. Please note however that because of a recently-fixed bug, you should absolutely not be using any version of Picturefill prior to 2.3.1. If you are, please update immediately. These downloads include the matchMedia polyfill for browsers that need it (like IE9).

+

Picturefill Version 2.3.1

+

Picturefill 2 is a lightweight polyfill that may not perfectly match native responsive images behavior. Please note however that because of a recently-fixed bug, you should absolutely not be using any version of Picturefill prior to 2.3.1. If you are, please update immediately. These downloads include the matchMedia polyfill for browsers that need it (like IE9).