12-07-2009, 01:58 PM | #16 | |
Zealot
Posts: 110
Karma: 240
Join Date: Sep 2009
Device: Kindle 3 3G Graphite, Sony PRS-505
|
Quote:
|
|
12-07-2009, 02:03 PM | #17 |
PRS+ author
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
|
jeromedevine
I am sorry but it doesn't seem to be possible. There is only one function called by js code: doRotate and it seems to switch only between 2 positions. Changing it would require changing compiled linux binaries, my skills in this area are lacking, I am afraid... prepak I don't mind, but you could update the files directly in projects repository on google code. |
Advert | |
|
12-07-2009, 02:05 PM | #18 |
Guru
Posts: 610
Karma: 4150
Join Date: Mar 2008
Device: Sony Reader PRS-T3, Kobo Libra H2O
|
How to combine PRS Customizer and Books By Folder
1) Install PRS Customizer, prepare all your customizations and copy them to your SD card. 2) Edit file (SD Card)/files.505.1.1.00.18040/opt/sony/ebook/application/resources/applicationStart.xml (replace the first part of the path according to your reader's firmware version). 3) Near the end of the file you will see this code: Code:
<function id="initialized"> USBDispatcher.doRegister(this.getWindow()) this.getDevice().doProcessed(100); this.getDevice().enableBlueLED(true); </function> Code:
<function id="initialized"> USBDispatcher.doRegister(this.getWindow()) this.getDevice().doProcessed(100); this.getDevice().enableBlueLED(true); try { var path = "/Data/autorun.js"; if(FileSystem.getFileInfo(path)) { var f = new Stream.File(path); try { var fn = new Function("target", f.toString(), path, 1); fn(this); } finally { f.close(); } } } catch(ignore) { } </function> 6) Continue flashing as you would with PRS Customizer (boot with SD card inserted, choose "5) Make a new image", then "6) Flash the image") 7) Reboot and you are done! |
12-07-2009, 02:06 PM | #19 |
Guru
Posts: 610
Karma: 4150
Join Date: Mar 2008
Device: Sony Reader PRS-T3, Kobo Libra H2O
|
|
12-07-2009, 02:14 PM | #20 |
Guru
Posts: 610
Karma: 4150
Join Date: Mar 2008
Device: Sony Reader PRS-T3, Kobo Libra H2O
|
Updates you may want to do to Books By Folder
1) Storing the addons in a different directory Edit (Internal Mem)/autorun.js. On first line, you can change the root directory of addons to whatever suits you; I use /Data/database/software/addons/: Code:
this.addonRoot = "/Data/database/software/addons/"; Use PRS Customizer to prepare your custom reader, then modify file applicationStart.xml as detailed in this post. The sixth line in the modified part tells where the autorun.js file is located. I use /Data/database/software/autorun.js: Code:
<function id="initialized"> USBDispatcher.doRegister(this.getWindow()) this.getDevice().doProcessed(100); this.getDevice().enableBlueLED(true); try { var path = "/Data/database/software/autorun.js"; if(FileSystem.getFileInfo(path)) { var f = new Stream.File(path); try { var fn = new Function("target", f.toString(), path, 1); fn(this); } finally { f.close(); } } } catch(ignore) { } </function> Open (Internal Memory)/addons/_BrowseByFolder.js. Search for /Data/database/media/books and replace it with /Data. There are two instances that need changing: Line 246: From: Code:
var rootFolder = "/Data/database/media/books/"; Code:
var rootFolder = "/Data/"; From: Code:
var node = new FolderNode("/Data/database/media/books", "", "directory", "Internal Memory", NodeKinds.INTERNAL_MEM); Code:
var node = new FolderNode("/Data", "", "directory", "Internal Memory", NodeKinds.INTERNAL_MEM); |
Advert | |
|
12-07-2009, 03:40 PM | #21 | |
PRS+ author
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
|
Quote:
If you have google account I'd add you to developer list, then you would get rights to add downloads, do code changes etc. PS Forgot to thank you for your involvement in this, thank you, pepak! Last edited by kartu; 12-07-2009 at 03:53 PM. |
|
12-09-2009, 04:52 PM | #22 |
Junior Member
Posts: 1
Karma: 10
Join Date: Jul 2009
Device: sony prs-505
|
On my PRS-505 I copy the files to the memory card, reset the device and no matter what function I select, I get:
Sorry, this firmware version is not supported: 505.1.1.00.18040 Help! I would really like this update please. Thanks! Mark |
12-09-2009, 09:36 PM | #23 |
Evangelist
Posts: 411
Karma: 902071
Join Date: Jun 2008
Location: Zaragoza (Spain)
Device: prs-505, kobo auraHD, kobo auraH2O, kobo Glo HD, kobo aura ONE
|
Very interesting! Thank you.
Send the icon files (Books by folder, games and utilities, Internal memory, SD Card ...) for flashing, please. It's posible? I supose there are a new KBookIcon.png, no? |
12-09-2009, 11:02 PM | #24 |
Junior Member
Posts: 6
Karma: 10
Join Date: Oct 2009
Device: PRS-505
|
Will this work with the SD card auto-loading dictionary already released? Or is that impossible. Good work in any case.
|
12-10-2009, 04:16 AM | #25 | |
PRS+ author
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
|
Quote:
2surquizu I'll create new repository "firmware" and upload all files there (including mentioned png image) in a few hours. (on google code) UPDATE: done. You can get files from: http://code.google.com/p/sony-prs505...?repo=firmware kbookIcon.png is the file you need. 2ijrobertson It will work, however I don't like the way released dictionaries work (grep-ing entire files) and still ponder on whether to include them. If somebody could suggest any (preferably open) _indexed_ dictionary format, with index that is reasonably easy to parse (compression is more or less the only show stopper), that'd be of great help. I plan to add word selection feature, so that you can select words in 3 steps: 1) pressing 1-0 buttons and selecting 1-5 rows from the page 2) pressing 1-0 buttons and chosing one of the lines chosen in step 1 3) choosing a word from the line chosen in step 2 But this will rather come some time in January - February 2010. Last edited by kartu; 12-10-2009 at 04:32 AM. |
|
12-10-2009, 08:06 AM | #26 |
Evangelist
Posts: 411
Karma: 902071
Join Date: Jun 2008
Location: Zaragoza (Spain)
Device: prs-505, kobo auraHD, kobo auraH2O, kobo Glo HD, kobo aura ONE
|
Thank you very much!
Another question, is it easy to include another games (five Balls and mahjong)? How? |
12-10-2009, 08:29 AM | #27 |
PRS+ author
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
|
surquizu
Depends on the game actually, but rather easy. You have 2 options 1) examine the sources, namely sudoku.js and corresponding folder content and suggest your own patch to add the mentioned games 2) paste links to the games and I'll integrate them myself (can't promise that it will be today or tomorrow, but rather sooner than later) |
12-10-2009, 05:35 PM | #28 | |
Member
Posts: 23
Karma: 10
Join Date: Nov 2009
Location: Malaysia
Device: EzReader Pocket Pro, Sony PRS-505, Sony PRS-650, Kindle Voyage
|
Quote:
I've recently installed PRS Customizer onto my 505 and would love to try this out too, to be able to have all my books on one card is awesome. :D |
|
12-10-2009, 08:19 PM | #29 | |
Guru
Posts: 750
Karma: 1323
Join Date: Dec 2009
Device: PRS-505, PRS-600, iPad 16GB Wifi, Kindle Voyage, Nexus 6, Razr HD
|
Confused about which file to download
Quote:
Can you help? Thanks |
|
12-11-2009, 01:36 AM | #30 | |
Guru
Posts: 610
Karma: 4150
Join Date: Mar 2008
Device: Sony Reader PRS-T3, Kobo Libra H2O
|
Quote:
What you need to do, copy any file to the reader (e.g. in Windows Explorer, right click on an image, choose Copy, then open the Reader, right click in an empty space and click Paste) and rename it to .nocard. I've recently installed PRS Customizer onto my 505 and would love to try this out too, to be able to have all my books on one card is awesome. [/QUOTE] |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Using HD Folders as Collections on Sony PRS-505 | fglaysher | Calibre | 8 | 07-26-2010 10:55 PM |
Enhanced Firmware for V3 | keng2000 | HanLin eBook | 12 | 04-12-2010 10:30 AM |
Poll: Sony Reader PRS-505 upgrade to Sony PRS-700 | Kris777 | Sony Reader | 70 | 02-18-2009 07:34 PM |
Sony Reader PRS-505 upgrade to Sony PRS-700 | Kris777 | Sony Reader | 23 | 12-08-2008 07:56 AM |
Sub folders in firmware v1.08 | Prince Hal | Amazon Kindle | 28 | 10-23-2008 04:20 PM |