I have a web application that I thought would be well-suited to using the application cache, a utility for a board game I play.
I went through a tutorial in the application cache, and it worked well... a little too well.
Most of the scripts in my app are consolidated and minimized as part of my deployment process, with the sole exception being jQuery. For jQuery, I use the copy hosted by Google.
This caused problems when I loaded the page for a second time, after it had been cached, as jQuery wasn't cached and it wouldn't load it.
I made changed it so that jQuery would be integrated with the other minimized scripts, but I was still having the problem. I modified the manifest and as far as I can tell, Chrome downloaded the updated manifest, but didn't download any of the updated resources therein.
I even removed the manifest attribute from the HTML tag, but it still wouldn't refresh the page. I had to actually comment out /index.html from the manifest in order to get the page to refresh.
So it seems that updating the manifest doesn't do anything as long as you're still caching the same resources. Is there something I'm missing? Is there any in the manifest file to force downloading again if the cached items are older than a certain date?
Edited to add: I'm doing the testing on Chrome (stable).