Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Sony Reader > Sony Reader Dev Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 01-06-2011, 11:37 AM   #1516
welshkid
Junior Member
welshkid began at the beginning.
 
Posts: 5
Karma: 26
Join Date: Nov 2010
Device: prs-505
Quote:
Originally Posted by Mark Nord View Post
Just open mentioned ebook.so with your favorite hex-editor, go to offset 0xBA64 (kindly provided by JvdW), and overwrite the four (4) bytes 14 FB FF EB there with 00 00 A0 E1, save and you are done.
Thanks all done now! Its working great
welshkid is offline   Reply With Quote
Old 01-06-2011, 03:03 PM   #1517
Garp
Junior Member
Garp began at the beginning.
 
Garp's Avatar
 
Posts: 7
Karma: 10
Join Date: Jan 2011
Location: Milwaukee, WI
Device: Sony Ereader Pocket Edition
I'm liking the firmware, except that all my titles are turning up in the '0-9' folder, not alphabetically. How do I rectify this? I use Calibre, if that makes a difference.

Cheers.
Garp is offline   Reply With Quote
Old 01-06-2011, 03:37 PM   #1518
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
Quote:
Originally Posted by Garp View Post
I'm liking the firmware, except that all my titles are turning up in the '0-9' folder, not alphabetically. How do I rectify this? I use Calibre, if that makes a difference.

Cheers.
On 505 it should work. On 300 it is already listed as a bug.
kartu is offline   Reply With Quote
Old 01-06-2011, 03:58 PM   #1519
Garp
Junior Member
Garp began at the beginning.
 
Garp's Avatar
 
Posts: 7
Karma: 10
Join Date: Jan 2011
Location: Milwaukee, WI
Device: Sony Ereader Pocket Edition
Quote:
Originally Posted by kartu View Post
On 505 it should work. On 300 it is already listed as a bug.
Well, that makes sense. I have the 300.

Love the dictionary, the Sudoku & the ability to re-assign the buttons. Excellent stuff. Cheers!
Garp is offline   Reply With Quote
Old 01-08-2011, 02:34 AM   #1520
jakeluck
Groupie
jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.
 
jakeluck's Avatar
 
Posts: 193
Karma: 3252
Join Date: Dec 2004
the menu, zoom, bookmark and up key on my 505 died after the battery replacement. Without menu, I can't even go up a level without resorting to reset. Is it possible to map the menu to volume+?

Last edited by jakeluck; 01-08-2011 at 02:50 AM.
jakeluck is offline   Reply With Quote
Old 01-08-2011, 05:53 AM   #1521
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
Quote:
Originally Posted by jakeluck View Post
the menu, zoom, bookmark and up key on my 505 died after the battery replacement. Without menu, I can't even go up a level without resorting to reset. Is it possible to map the menu to volume+?
Yes. You need to modify applicationStart.xml.

boolean key="0x41" do="doQuiet"
should be changed to
boolean key="0x41" do="doMenu"

It would also make sense to change (holding vol+ to jump to the root menu):

boolean key="0x41-hold" do="doMute"
to
boolean key="0x41-hold" do="doRoot"

You can achieve the same result by either creating custom PRS+ build or changing a single file using igorsk's universal flasher.
kartu is offline   Reply With Quote
Old 01-08-2011, 02:02 PM   #1522
jakeluck
Groupie
jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.
 
jakeluck's Avatar
 
Posts: 193
Karma: 3252
Join Date: Dec 2004
Quote:
Originally Posted by kartu View Post
Yes. You need to modify applicationStart.xml.

...
You can achieve the same result by either creating custom PRS+ build or changing a single file using igorsk's universal flasher.
Amazing software! You saved my day, Kartu. The build process is really clean and easy too. I noticed that the pre 2.0 code has been merged back into the default, as cloning https://build.prs-plus.googlecode.com/hg/ yields an empty directory yet

Code:
hg clone -r ece348d9c01dfa65d74af5eefda0f1da8ae11599  https://prs-plus.googlecode.com/hg/ .
only gives a 505 tree.

how do I go about getting the full source for 1.1.3? got a zip handy?
jakeluck is offline   Reply With Quote
Old 01-08-2011, 02:26 PM   #1523
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
Quote:
Originally Posted by jakeluck View Post
how do I go about getting the full source for 1.1.3? got a zip handy?
You can use aliases for revisions. To checkout the build script use:

hg clone -r 1.1.3 https://build.prs-plus.googlecode.com/hg/ .

in build properties use:

FW_VER=1.1.3
SC_VER=1.1.3
INSTALLER_VER=1.1.3
PRSP_VER=1.1.3custom

into build properties file.

then:
1) ant download
2) modify files
3) ant dobuild.

PS
Pre 2.x I've used 4 different reps, and build script was downloading the needed stuff. In 2.x it's switched to all in one, and build script doesn't download (no need).
kartu is offline   Reply With Quote
Old 01-08-2011, 03:16 PM   #1524
jakeluck
Groupie
jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.jakeluck could sell banana peel slippers to a Deveel.
 
jakeluck's Avatar
 
Posts: 193
Karma: 3252
Join Date: Dec 2004
Quote:
Originally Posted by kartu View Post
Pre 2.x I've used 4 different reps, and build script was downloading the needed stuff. In 2.x it's switched to all in one, and build script doesn't download (no need).
Sweet, all working beautifully. PRS+ brought the reader back from the dead. Thank you!

(with all those people missing buttons after the battery replacement,
https://www.mobileread.com/forums/sho....php?p=1089159
https://www.mobileread.com/forums/sho....php?p=1089159
it sure makes one wonder if sony had intentionally designed the cable to be so fragile as a way of builtin obsolescence...

Thanks again, Great software and keep up the good work!
jakeluck is offline   Reply With Quote
Old 01-13-2011, 04:08 PM   #1525
mudskipper
Enthusiast
mudskipper has a complete set of Star Wars action figures.mudskipper has a complete set of Star Wars action figures.mudskipper has a complete set of Star Wars action figures.
 
Posts: 28
Karma: 264
Join Date: Jan 2011
Device: pr 505
Novice seeking help

Hi,

I have a 505 and which I love to read but I would love to have folder browse functionality and to be able read Japanese documents by installing a Unicode font. I read pepak's guide on how to merge PRS+ and Customizer from early 2008, but I'm guessing from some of the more recent esoteric discussions that things have moved on considerably since then. So, is there a recent guide for we simpletons on how to achieve what I'm looking to do with PRS+. I have searched around, but all roads lead inevitably to this thread.

TIA,

Tony
mudskipper is offline   Reply With Quote
Old 01-13-2011, 04:18 PM   #1526
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
mudskipper
Pepak's instruction should still work.
kartu is offline   Reply With Quote
Old 01-14-2011, 03:02 AM   #1527
mudskipper
Enthusiast
mudskipper has a complete set of Star Wars action figures.mudskipper has a complete set of Star Wars action figures.mudskipper has a complete set of Star Wars action figures.
 
Posts: 28
Karma: 264
Join Date: Jan 2011
Device: pr 505
Quote:
Originally Posted by kartu View Post
mudskipper
Pepak's instruction should still work.
I rather hoped so. Here's where I must confess the depth of my ignorance. I was unable to find the Browse by Folder zip nor, therefore, autorun.js or the addons folder. I've opened the PRS+ installer and not found it there. I am rather looking forward to folder browsing. Along with the missing CJK fonts it is Sony's greatest omission from this super device.

Thanks,

Tony
mudskipper is offline   Reply With Quote
Old 01-14-2011, 03:42 AM   #1528
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
mudskipper
Ok, here are the instructions, first you install PRS+.
Then, unpack folders from "Universal Flasher 2.1" (link) folder to your SD or MS card.
In folder files.505.1.0.00.08130\opt\sony\ebook\ delete subfolders bin and application.
Put your fonts files into FONT subfolder.

Plug the card into your reader, you should see Universal Flashers menu.
In this menu (I don't remember exact buttons) you should first select menu that creates new firmware image, then the one that flashes. (it could have been combined into one menu item, shouldn't be hard to figure)

Note:
The fonts, that you put into FONTs subfolder MUST have the following names (the fonts themselves, not the filenames, filenames actually do not matter)

Swiss721 BT Roman
Dutch801 Rm BT Roman
Courier10 BT Roman

Also note, that you can't use font files that are bigger than a couple of megs (universal flasher will warn you, if resulting image is too big).

In case anything goes wrong, don't worry, 505's are practically unbrickable.
kartu is offline   Reply With Quote
Old 01-16-2011, 01:53 PM   #1529
VICTORSJG
Addict
VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.VICTORSJG once ate a cherry pie in a record 7 seconds.
 
Posts: 318
Karma: 1846
Join Date: Dec 2009
Device: PRS-505
Kartu, is it posible to implemente a function to delete songs and pictures from the reader?

thanks
VICTORSJG is offline   Reply With Quote
Old 01-16-2011, 02:11 PM   #1530
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
Quote:
Originally Posted by VICTORSJG View Post
Kartu, is it posible to implemente a function to delete songs and pictures from the reader?

thanks
Yes. It should be available once Browse Folders gets File Manager features.
kartu is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Using HD Folders as Collections on Sony PRS-505 fglaysher Calibre 8 07-26-2010 09:55 PM
Enhanced Firmware for V3 keng2000 HanLin eBook 12 04-12-2010 09:30 AM
Poll: Sony Reader PRS-505 upgrade to Sony PRS-700 Kris777 Sony Reader 70 02-18-2009 06:34 PM
Sony Reader PRS-505 upgrade to Sony PRS-700 Kris777 Sony Reader 23 12-08-2008 06:56 AM
Sub folders in firmware v1.08 Prince Hal Amazon Kindle 28 10-23-2008 03:20 PM


All times are GMT -4. The time now is 02:21 PM.


MobileRead.com is a privately owned, operated and funded community.