View Single Post
Old 11-22-2008, 07:25 AM   #139
ShellShock
Wizard
ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.ShellShock ought to be getting tired of karma fortunes by now.
 
ShellShock's Avatar
 
Posts: 1,178
Karma: 2431850
Join Date: Sep 2008
Device: IPad Mini 2 Retina
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.

Last edited by ShellShock; 11-22-2008 at 08:27 AM.
ShellShock is offline   Reply With Quote