View Single Post
Old 04-19-2009, 03:35 AM   #14
dpierron
calibre2opds guru
dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.dpierron shines like a glazed doughnut.
 
dpierron's Avatar
 
Posts: 533
Karma: 8792
Join Date: Aug 2005
Location: Metz, France
Device: iPhone, iPad, PRS-650
Ok, sorry, my bad... I guess when I edited the file it was reformatted somehow...

So, in this file, search for the following :
Code:
if (this.compareDeviceVersion(version)) { this.checkmark.show(true) this.button.enable(false) this.container.setVariable("updateStatus", "This PRS-505 is up-to-date") } else { this.checkmark.show(false) this.button.enable(true) this.container.setVariable("updateStatus", "Please click below to continue") }
and replace it by this :
Code:
this.checkmark.show(false) this.button.enable(true) this.container.setVariable("updateStatus", "Please click below to continue")
In fact, you are simply bypassing a test on the device version...

Tell me if you need more help !

David.
dpierron is offline   Reply With Quote