Hi,
I am playing with one of the examples in the gears. I first tried
with tutorial 1 which helps to store some files locally to the
machine.
In original manifest file tutorial_manifest.json,
{
"betaManifestVersion": 1,
"version": "version 1.0",
"entries": [
{ "url": "go_offline.html"},
{ "url": "go_offline.js"},
{ "url": "../gears_init.js"}
]
}
I changed the go_offline.js file by adding some function in that. then
I changed the version in the manifest file as version 2.0
{
"betaManifestVersion": 1,
"version": "version 2.0",
"entries": [
{ "url": "go_offline.html"},
{ "url": "go_offline.js"},
{ "url": "../gears_init.js"}
]
}
The problem is , My localserver is not being updated with the changed
version of the go_offline.js file. I also tried by adding files in the
manifest file and changed the version number, it worked perfectly.
The changes made in the already downloaded file is not updated. any
idea???