igorsk
This is just to let you know that I have successfully flashed the UK firmware
(505.1.2.00.18050) with the clock hack, and one I added myself (joystick buttons as page turns), and I am very grateful to you to spending the time on this.
For anyone else interested in the page turn hack: in applicationStart.xml change:
Code:
<boolean key="kLeft" do="doLeft"/>
<boolean key="kRight" do="doRight"/>
to
Code:
<boolean key="kLeft" do="doPrevious"/>
<boolean key="kRight" do="doNext"/>
You lose the history function (but I never use this anyway). I know it possible to hack the volume keys to do the history instead. Probably something like this (but I have not tried this):
Code:
<boolean key="0x41" do="doQuiet"/>
<boolean key="0x41-hold" do="doMute"/>
<boolean key="0x40" do="doLoud"/>
<boolean key="0x40-hold" do="doMute"/>
change to:
Code:
<boolean key="0x41" do="doLeft"/>
<boolean key="0x41-hold" do="doQuiet"/>
<boolean key="0x40" do="doRight"/>
<boolean key="0x40-hold" do="doLoud"/>
This loses the mute ability on holding the volume button.