I build a large mobile application in AngularJS.
In order to increase performance on devices with slow internet connection I decided to use Html5 offline api and to load all resources into cache with the use of app.appcache manifest file.
According to MDN, resources are reloaded once manifest version is incremented, however I don't want to reload all resources, but only those which versions were changed.
Can somebody suggest a good way to deal with offline api in the matter of separate resource loading?