Register Guidelines E-Books Search Today's Posts Mark Forums Read

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

Notices

Reply
 
Thread Tools Search this Thread
Old 06-26-2011, 01:31 PM   #2266
Mark Nord
2B || !2B
Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.
 
Posts: 851
Karma: 194010
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
VICTORSJG

I think I know why standard-menu-actions arn't translated.

The code in principle would return translated titles,
but in 505_bootstrap.js
Code:
	// Init 505 specific lang files
			try {
				var code = PARAMS.Core.io.getFileContent(langPath505 + "lang.js", null);
				if (code !== null) {
					var lang505 = new Function("Core,loadAddons,langPath505", code);
					lang505(PARAMS.Core, PARAMS.loadAddons, langPath505);
langPath505 is called after Core and Addons.
But in core_ui_menu.js createListOfStandardNodes is called in on PreInit, and thus before the translation takes place.

Next step is to find a way to fix this.

Edit: Fixed by kartu in Revison:cb32dd439a

Last edited by Mark Nord; 06-27-2011 at 02:53 PM.
Mark Nord is offline   Reply With Quote
Old 06-27-2011, 12:45 PM   #2267
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, with the latest modifications is it necessary to add this code found by Mark https://www.mobileread.com/forums/sho...postcount=2166 to show songs and pictures on multimedia menu?

thanks

Last edited by VICTORSJG; 06-27-2011 at 01:31 PM.
VICTORSJG is offline   Reply With Quote
Old 06-27-2011, 02:52 PM   #2268
Mark Nord
2B || !2B
Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.Mark Nord can program the VCR without an owner's manual.
 
Posts: 851
Karma: 194010
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
Victor
Code is included in Revision:60a26e73f8 and placed in /script/core/core_ui.js
I can confirm this is working, pictures and audio nodes are populated.
Just pull changes and build installer/beta
Mark Nord is offline   Reply With Quote
Old 06-28-2011, 08:42 AM   #2269
Nitro
Member
Nitro began at the beginning.
 
Posts: 17
Karma: 10
Join Date: Jun 2011
Device: Sony PRS 505
My question is, if LRFTextScale is working with epub files?

I'm trying to convert my books from lrf to epub, but font change between small->medium->large is huge...

I'm using prs+ 2.0.12 beta

I know I can create css files for different font sizes, but is there a way to use + button ?
Nitro is offline   Reply With Quote
Old 06-28-2011, 11:16 AM   #2270
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, the title NODE_EMPTY on lang.ods menucustomizer to use in core_ui_menu.js is missed.
VICTORSJG is offline   Reply With Quote
Old 06-28-2011, 11:46 AM   #2271
Vesper
Addict
Vesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheese
 
Vesper's Avatar
 
Posts: 205
Karma: 1133
Join Date: Nov 2007
Location: Serbia
Device: Sony PRS-350, Cybook Gen3, Palm T|X
Quote:
Originally Posted by Nitro View Post
My question is, if LRFTextScale is working with epub files?

I know I can create css files for different font sizes, but is there a way to use + button ?
The answer is no, from my experience.

DrS
Vesper is offline   Reply With Quote
Old 06-29-2011, 07:54 AM   #2272
carmelra
Zealot
carmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toyscarmelra shares his or her toys
 
Posts: 106
Karma: 5742
Join Date: May 2009
Device: iPhone
Any chance it will support RTL languages such as Hebrew and Arabic?

Thanks!
carmelra is offline   Reply With Quote
Old 06-29-2011, 08:21 AM   #2273
Vesper
Addict
Vesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheeseVesper can extract oil from cheese
 
Vesper's Avatar
 
Posts: 205
Karma: 1133
Join Date: Nov 2007
Location: Serbia
Device: Sony PRS-350, Cybook Gen3, Palm T|X
Quote:
Originally Posted by carmelra View Post
Any chance it will support RTL languages such as Hebrew and Arabic?

Thanks!
It is "impossible" to implement , as stated here:

See http://code.google.com/p/prs-plus/wiki/FeatureRequests
Vesper is offline   Reply With Quote
Old 06-29-2011, 03:11 PM   #2274
luckycharms
Connoisseur
luckycharms began at the beginning.
 
Posts: 69
Karma: 10
Join Date: Oct 2010
Device: Kobo Glo, PRS-650, iPad 1, iPhone 4S
Any way to change how sony reader deals with pdf's?

Hi Folks,

I have the same issue as Tommy does in the following thread: https://www.mobileread.com/forums/showthread.php?t=98223

Is there any way to hack the firmware such that it would allow scrolling within pdf pages when the zoom is locked? It kills me that I can't...

thanks!
luckycharms is offline   Reply With Quote
Old 07-01-2011, 08:22 AM   #2275
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, could you upload this script to the repository because it had a little error.

thanks
Attached Files
File Type: rar es.rar (3.3 KB, 95 views)
VICTORSJG is offline   Reply With Quote
Old 07-01-2011, 09:46 AM   #2276
culverg
Member
culverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheeseculverg can extract oil from cheese
 
Posts: 10
Karma: 1068
Join Date: Sep 2010
Device: PRS-650
Page Mode won't stick

I like reading my books in margin cut page mode, but noticed my PRS-650 with PRS+2.012b always goes back to original page mode when I leave a book and then come back. Before PRS+ it would stay in margin cut mode if I left a book and returned.

Anyone else having this issue?

Tried searching this thread and google code issues list, didn't look like anything that was reported before.

Thanks!
culverg is offline   Reply With Quote
Old 07-01-2011, 12:54 PM   #2277
jshzh
Addict
jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.jshzh could sell banana peel slippers to a Deveel.
 
Posts: 320
Karma: 3394
Join Date: Aug 2009
Device: Pocketbook 602 Pro, Kobo Aura HD, LG G Pad III
Forgive me if this question was answered before. I wonder if the custom dictionaries in 505 work as the pre-installed dictionaries (pop-up after double-click in a book)?

I am thinking to get a refurbished PRS-650 for a cheaper price. I like my PB 602 very much but Sony has word log function, better note taking function, and pearl screen. Don't know if our experts here will continue working on new functions for PRS-650 too because it has been discontinued as I understand.

Or should I wait for new models to come out in a few months?

Last edited by jshzh; 07-01-2011 at 12:58 PM.
jshzh is offline   Reply With Quote
Old 07-01-2011, 06:28 PM   #2278
dordale
Wizard
dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.
 
dordale's Avatar
 
Posts: 1,731
Karma: 3472866
Join Date: Apr 2008
Device: Sony PRS-650 & 350; Kindle Voyage; Kobo Aura HD, Aura One, and Forma
Quote:
Originally Posted by culverg View Post
I like reading my books in margin cut page mode, but noticed my PRS-650 with PRS+2.012b always goes back to original page mode when I leave a book and then come back. Before PRS+ it would stay in margin cut mode if I left a book and returned.

Anyone else having this issue?

Tried searching this thread and google code issues list, didn't look like anything that was reported before.

Thanks!
Culverg--are you sure that your book would stay in "margin cut" mode before installing PRS+? Mine never did. Every time I exit a book and then re-enter the book, I'd always have to go in and choose margin-cut again.

I definitely remember this, as I've just installed PRS+ within the last week, but have had the margin-cut issue since I bought my reader.

By the way--loving PRS+! I'm kicking myself for waiting so long to install it!

dordale
dordale is offline   Reply With Quote
Old 07-03-2011, 02:23 PM   #2279
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
Mark, have the latest modification about stand by image got an option to set :
1. Default (blank screen)
2. Current book cover
3. Random image from user folder
4. Current reader display?

as Ben and you commented on other post
VICTORSJG is offline   Reply With Quote
Old 07-03-2011, 05:05 PM   #2280
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 Mark Nord View Post
Victor
Code is included in Revision:60a26e73f8 and placed in /script/core/core_ui.js
I can confirm this is working, pictures and audio nodes are populated.
Just pull changes and build installer/beta

Mark, I created a installer with new modifications of today. On the options of "menu customizer" are missing "games&utilities" and "multimedia". With the old file "core_ui_menu.js " I see the options.
surquizu is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 09:32 AM.


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