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 03-23-2010, 05:37 PM   #766
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
It could work, but I am not sure.
kartu is offline   Reply With Quote
Old 03-23-2010, 06:04 PM   #767
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,792
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Can you post the .js for the key bindings and I can give it a go.
JSWolf is offline   Reply With Quote
Old 03-24-2010, 05:00 AM   #768
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
You can get any PRS+ file from here:

http://code.google.com/p/prs-plus/so...wse/#hg/addons

Click file you want and then right click -> save as on "view raw file".
kartu is offline   Reply With Quote
Old 03-24-2010, 06:48 AM   #769
frediz
Member
frediz began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Mar 2009
Device: prs 505
Hi Kartu,
and thanks for the huge work.
I'd like to try to compile some apps for sony prs505.
To test easily, my idea was to have a hotkey that would launch my own script ; that script would kill tinyhttp, launch some binary and when it's done, would just launch tinyhttp back (or whatever is the UI ).
I just need a hook to launch a external process (script in this case).
(I guess having it and the binaries on the sd or so would be then easy to modify etc)
Is this doable ?
Where should I hack this ?
Thanks
frediz is offline   Reply With Quote
Old 03-24-2010, 07:32 AM   #770
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
frediz
There is an easier way to start shell executable, thank igorks, you don't have to kill anything.
Check this file out:
http://code.google.com/p/prs-plus/so.../core_shell.js

Unfortunatelly it's currently in the middle of _very_heavy_ refactoring and there is no corresponding installer.
To use it, you only need prspVM.xml and corresponding so file (it's referenced inside xml file, both are availbel in "firmware" repository) and amend paths.

It might be already included in Utils class in the current release, I don't remember.

PS
By the way, this might be interesting for you:
https://www.mobileread.com/forums/showthread.php?t=68103
kartu is offline   Reply With Quote
Old 03-24-2010, 09:44 AM   #771
frediz
Member
frediz began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Mar 2009
Device: prs 505
Kartu : thanks for the quick reply.
I saw that there was some exec function idd.
But I didn't get what prspVM.xml is used for
Is it from there that I can launch some external binary ? via hotkeys ?

about your PS : yes idd... that's what inspired me
frediz is offline   Reply With Quote
Old 03-24-2010, 10:14 AM   #772
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
frediz
1) exec will execute whatever command line you pass to it, don't bother with "what prspVM.xml does" if Utils already has "exec" method. Start with something simpler, like:

Utils.exec("echo \"hello world\">>/Data/log.txt");

this should create log.txt file in the root of internal memory.

2) Hotkeys. Easiest way is to use Clock.js. Replace "Toggle Clock" action funciton with whatever you want, and bind the action to whatever key you want via PRS+ settings.
kartu is offline   Reply With Quote
Old 03-24-2010, 10:36 AM   #773
frediz
Member
frediz began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Mar 2009
Device: prs 505
great, that's all I needed to know to start playing quickly.
Thanks!
frediz is offline   Reply With Quote
Old 03-25-2010, 03:45 AM   #774
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
Ok, back to features missing in PRS+:

1) Custom logo ("Reader" replaced with user credentials")
2) Custom icons (by the way, were can I find alternative icons?)
3) Custom fonts
4) "justify off" - affects LRF (RTF/TXT?) files. I wonder how many care about it.

Anything else?
kartu is offline   Reply With Quote
Old 03-25-2010, 04:01 AM   #775
DoctorOhh
US Navy, Retired
DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.
 
DoctorOhh's Avatar
 
Posts: 9,897
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
Quote:
Originally Posted by kartu View Post
Ok, back to features missing in PRS+:

1) Custom logo ("Reader" replaced with user credentials")
2) Custom icons (by the way, were can I find alternative icons?)
3) Custom fonts
4) "justify off" - affects LRF (RTF/TXT?) files. I wonder how many care about it.

Anything else?
When I used lrf I did implement the justification hack, but I only use epub now.

I attached the custom icons that came with prscustomizer. I guess the unique icons you use in PRS+ will need to be tacked on the end. My attempts to combine them have failed.
Attached Thumbnails
Click image for larger version

Name:	kBookIcon-v1.png
Views:	255
Size:	31.1 KB
ID:	48645   Click image for larger version

Name:	kBookIcon-v2.png
Views:	253
Size:	33.9 KB
ID:	48646   Click image for larger version

Name:	kBookIcon-v3.png
Views:	240
Size:	72.7 KB
ID:	48647   Click image for larger version

Name:	kBookIcon-v4.png
Views:	252
Size:	97.7 KB
ID:	48648  
DoctorOhh is offline   Reply With Quote
Old 03-25-2010, 04:20 AM   #776
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
dwanthny
Thanks. Attaching the icons is not the problem, creating them is.
kartu is offline   Reply With Quote
Old 03-25-2010, 06:08 AM   #777
surquizu
Evangelist
surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.
 
surquizu's Avatar
 
Posts: 411
Karma: 902071
Join Date: Jun 2008
Location: Zaragoza (Spain)
Device: prs-505, kobo auraHD, kobo auraH2O, kobo Glo HD, kobo aura ONE
Quote:
Originally Posted by kartu View Post
dwanthny
Thanks. Attaching the icons is not the problem, creating them is.
Here my icons:
Attached Thumbnails
Click image for larger version

Name:	kBookIcon.png
Views:	272
Size:	120.9 KB
ID:	48653  
surquizu is offline   Reply With Quote
Old 03-25-2010, 06:23 AM   #778
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
surquizu
Quote:
Here my icons:
Great! I'll try to include them in the next release.
kartu is offline   Reply With Quote
Old 03-25-2010, 06:24 AM   #779
surquizu
Evangelist
surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.surquizu ought to be getting tired of karma fortunes by now.
 
surquizu's Avatar
 
Posts: 411
Karma: 902071
Join Date: Jun 2008
Location: Zaragoza (Spain)
Device: prs-505, kobo auraHD, kobo auraH2O, kobo Glo HD, kobo aura ONE
Quote:
Originally Posted by kartu View Post
Ok, back to features missing in PRS+:

1) Custom logo ("Reader" replaced with user credentials")
2) Custom icons (by the way, were can I find alternative icons?)
3) Custom fonts
4) "justify off" - affects LRF (RTF/TXT?) files. I wonder how many care about it.

Anything else?
Other customizations are available:

1 - TEXT in title of main screen (compatible with Custom logo). See example in attached thumbnails.


2 - Modify animation when the reader thinks. See examples and download files in http://prs-505.webcindario.com/imatges/kbook.htm

My reader: http://www.youtube.com/watch?v=57CAWooty-s

Everything is compatible with PRS +, I have it installed on my mod
Attached Thumbnails
Click image for larger version

Name:	main screen.jpg
Views:	249
Size:	36.8 KB
ID:	48654  

Last edited by surquizu; 03-25-2010 at 06:29 AM.
surquizu is offline   Reply With Quote
Old 03-25-2010, 07:14 AM   #780
DoctorOhh
US Navy, Retired
DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.
 
DoctorOhh's Avatar
 
Posts: 9,897
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
Quote:
Originally Posted by surquizu View Post
1 - TEXT in title of main screen (compatible with Custom logo). See example in attached thumbnails.
Where exactly do you modify to get this?

Thanks for the icons and the animations they work great.
DoctorOhh 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 05:03 AM.


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