Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle

Notices

Reply
 
Thread Tools Search this Thread
Old 05-09-2020, 02:44 PM   #106
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by PRS-T2 View Post
Oh nooo so the screenshots out there are fake then? A Reddit hoax? They did look to good to be true indeed...
Fake or not, it doesn't matter. The PW3 is EOLed.
JSWolf is offline   Reply With Quote
Old 05-09-2020, 02:57 PM   #107
PRS-T2
Connoisseur
PRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileRead
 
PRS-T2's Avatar
 
Posts: 78
Karma: 65054
Join Date: Oct 2014
Location: Germany
Device: Sony PRS-T2, Kindle PW2, Oasis 3
Quote:
Originally Posted by JSWolf View Post
Fake or not, it doesn't matter. The PW3 is EOLed.
PW3? Ah from my sig. Don't own that anymore. I was talking about my Oasis3.
PRS-T2 is offline   Reply With Quote
Old 05-09-2020, 05:20 PM   #108
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by PRS-T2 View Post
PW3? Ah from my sig. Don't own that anymore. I was talking about my Oasis3.
It would help if you keep your list of active (the ones you are actually using) updated. I did go by your list.
JSWolf is offline   Reply With Quote
Old 05-09-2020, 05:34 PM   #109
PRS-T2
Connoisseur
PRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileReadPRS-T2 has read every ebook posted at MobileRead
 
PRS-T2's Avatar
 
Posts: 78
Karma: 65054
Join Date: Oct 2014
Location: Germany
Device: Sony PRS-T2, Kindle PW2, Oasis 3
Quote:
Originally Posted by JSWolf View Post
It would help if you keep your list of active (the ones you are actually using) updated. I did go by your list.
True. Sorry I totally forgot to add the Oasis. Done now!
PRS-T2 is offline   Reply With Quote
Old 05-09-2020, 06:50 PM   #110
jhowell
Grand Sorcerer
jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.jhowell ought to be getting tired of karma fortunes by now.
 
jhowell's Avatar
 
Posts: 7,089
Karma: 91577715
Join Date: Nov 2011
Location: Charlottesville, VA
Device: Kindles
Quote:
Originally Posted by PRS-T2 View Post
Oh nooo so the screenshots out there are fake then? A Reddit hoax? They did look to good to be true indeed...
It is not a hoax. I have looked at the Kindle firmware there there is definitely an option there to add a Dark Mode icon between Bluetooth and Sync, just like those screenshots show. The software uses the DeviceCapabilityManager to check that "nightmode" is enabled before showing that option. I don't know why that is enabled for some and not others.

Spoiler:
Code:
    public static boolean isNightModeSupported() {
        return DeviceCapabilityManager.aLE().pf("nightmode");
    }

...

    this.jMR = ColorInversionUtils.isNightModeSupported();

...

    ArrayList<QuickActionsWidgetController> arrayList = new ArrayList<QuickActionsWidgetController>();
    arrayList.add(airplaneWidgetController);
    if (this.isAudibleAvailable()) {
        arrayList.add(new BluetoothWidgetController());
    }
    if (this.jMR) {
        arrayList.add(new ColorInversionWidgetController());     
    }
    arrayList.add(syncNcheckWidgetController);     
    arrayList.add(settingsWidgetController);

Last edited by jhowell; 05-09-2020 at 06:59 PM.
jhowell is online now   Reply With Quote
Old 05-09-2020, 07:36 PM   #111
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,763
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by JSWolf View Post
It would help if you keep your list of active (the ones you are actually using) updated. I did go by your list.
It would also help if you would read the posts you are answering to instead of skimming and assuming.
DuckieTigger is offline   Reply With Quote
Old 05-10-2020, 03:01 AM   #112
Josieb1
Grand Sorcerer
Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.Josieb1 ought to be getting tired of karma fortunes by now.
 
Posts: 5,089
Karma: 18051062
Join Date: Nov 2009
Location: UK
Device: Kindle Scribe, Coloursoft, PW SE, Kindle 6, Kobo Libra 2, Clara BW
Quote:
Originally Posted by JSWolf View Post
IMHO (and a lot of others right Hitch ) it's time for Mobi to go away.
I don’t think so. A lot of self published authors use mobi for files sold for kindle outside of Amazon.
Josieb1 is offline   Reply With Quote
Old 05-10-2020, 04:02 AM   #113
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Josieb1 View Post
I don’t think so. A lot of self published authors use mobi for files sold for kindle outside of Amazon.
So sell KF8 instead. No need for Mobi.
JSWolf is offline   Reply With Quote
Old 05-10-2020, 06:50 AM   #114
Quoth
Still reading
Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.Quoth ought to be getting tired of karma fortunes by now.
 
Quoth's Avatar
 
Posts: 14,168
Karma: 105212035
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper
Quote:
Originally Posted by JSWolf View Post
So sell KF8 instead. No need for Mobi.
Older Kindles can't use KF8. They may not even have enough RAM even if Amazon wanted to. See DXG (B009) vs earlier Kindle Keyboard (B008, updated to have KF8).

So "Dual Mobi" is often used for ebook stores that don't offer two Kindle download links (which is confusing). Only Amazon knows exactly what Kindle a customer has and they convert the uploaded epub2 in advance to all the formats (old mobi, azw/KF8, and kfx) and deliver based on the customer choice if they have more than one model. They ask even for Download to PC, which model it's for if you have more than one model.

The main Amazon FW page lists 5.12.4 and "unavailable" at the PW3. This is unusual. I have the 5.12.4 on a PW3. I'm thinking that for particular versions of PW3 there is a problem with 5.12.4 and they are working on it, or else they'd not even list 5.12.4. It's not long since 5.12.4 or 5.12.5 was released, so it's premature to claim that Amazon have stopped supporting the PW3 with newer firmware. I bought my 2nd PW3 new off Amazon after they were already selling the PW4.
Quoth is offline   Reply With Quote
Old 05-10-2020, 10:07 AM   #115
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Quoth View Post
Older Kindles can't use KF8. They may not even have enough RAM even if Amazon wanted to. See DXG (B009) vs earlier Kindle Keyboard (B008, updated to have KF8).

So "Dual Mobi" is often used for ebook stores that don't offer two Kindle download links (which is confusing). Only Amazon knows exactly what Kindle a customer has and they convert the uploaded epub2 in advance to all the formats (old mobi, azw/KF8, and kfx) and deliver based on the customer choice if they have more than one model. They ask even for Download to PC, which model it's for if you have more than one model.
Thing is, it's time for Mobi go away. Mobi's time has come and gone. It's time for it to go away. If this means that these older Kindle's cannot get new eBooks, so be it. If Amazon could come up with a new firmware that allowed any of these older Kindles to handle KF8 and not Mobi, then that would be a good way to keep these older Kindles in use. It would make making eBooks for Kindles a lot easier.

Quote:
The main Amazon FW page lists 5.12.4 and "unavailable" at the PW3. This is unusual. I have the 5.12.4 on a PW3. I'm thinking that for particular versions of PW3 there is a problem with 5.12.4 and they are working on it, or else they'd not even list 5.12.4. It's not long since 5.12.4 or 5.12.5 was released, so it's premature to claim that Amazon have stopped supporting the PW3 with newer firmware. I bought my 2nd PW3 new off Amazon after they were already selling the PW4.
Amazon pulled 5.12.4 not long after they posted it. But the problem was that it was still able to be downloaded with a sync. So some still got 5.12.4 when they weren't supposed to. It is surprising that 5.12.5 is not available for the PW3. I didn't think that Amazon was EOLing the PW3. Given that the Voyage got 5.12.5, the PW3 should have as well. Amazon should be telling customers what's going on with the PW3 and 5.12.5 instead of just not releasing it.
JSWolf is offline   Reply With Quote
Old 05-11-2020, 04:08 AM   #116
fardeenah
Connoisseur
fardeenah began at the beginning.
 
Posts: 51
Karma: 10
Join Date: Apr 2016
Device: kindle paperwhite 4
i still dont have the dark mode option in my paperwhite 4
fardeenah is offline   Reply With Quote
Old 05-11-2020, 10:08 AM   #117
murraypaul
Interested Bystander
murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.murraypaul ought to be getting tired of karma fortunes by now.
 
Posts: 3,726
Karma: 19728152
Join Date: Jun 2008
Device: Note 4, Kobo One
Quote:
Originally Posted by JSWolf View Post
If this means that these older Kindle's cannot get new eBooks, so be it.
So that you could then criticize them for dropping support for those models?
They can't win, can they?
murraypaul is offline   Reply With Quote
Old 05-11-2020, 11:44 AM   #118
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by murraypaul View Post
So that you could then criticize them for dropping support for those models?
They can't win, can they?
Nope. So an obsolete format can go away. Heck, Sony was able to add ePub to the old PRS-500. Other then the first two Kobo models, all others are able to run the current firmware. Given that a firmware viersion that can handle KF8 was fitted into the DXG, I don't see why officially Amazon cannot swap Mobi for KF8 or add in kF8.

Last edited by JSWolf; 05-11-2020 at 11:46 AM.
JSWolf is offline   Reply With Quote
Old 05-11-2020, 11:57 AM   #119
DuckieTigger
Wizard
DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.DuckieTigger ought to be getting tired of karma fortunes by now.
 
DuckieTigger's Avatar
 
Posts: 4,763
Karma: 246906703
Join Date: Dec 2011
Location: USA
Device: Oasis 3, Oasis 2, PW3, PW1, KT
Quote:
Originally Posted by JSWolf View Post
Nope. So an obsolete format can go away. Heck, Sony was able to add ePub to the old PRS-500. Other then the first two Kobo models, all others are able to run the current firmware. Given that a firmware viersion that can handle KF8 was fitted into the DXG, I don't see why officially Amazon cannot swap Mobi for KF8 or add in kF8.
Only because something is technically possible, doesn't mean it makes sense. Performance is a very important feature too. I am glad Amazon prioritizes performance over other features.
DuckieTigger is offline   Reply With Quote
Old 05-11-2020, 11:58 AM   #120
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,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by DuckieTigger View Post
Only because something is technically possible, doesn't mean it makes sense. Performance is a very important feature too. I am glad Amazon prioritizes performance over features.
It's not about adding extra features. It's about getting rid of Mobi and repalcing it with KF8 so it will be easier to create Kindle eBooks as Mobi would never had to be dealt with again.

When Sony added ePub to the PRS-500, they added no other features.
JSWolf is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Firmware Update Kindle firmware 5.12.1 eilon Amazon Kindle 102 09-26-2019 08:38 PM
Amazon Kindle, firmware 5.6.5, about jailbreak closed kindle. Lenorav Kindle Developer's Corner 6 04-26-2016 04:39 PM
DX(G) Updating Kindle DX firmware -- any Kindle 3 owners willing to help? antithesis Kindle Developer's Corner 1 04-23-2014 04:47 PM
looking for the old firmware of kindle 1 jackz Amazon Kindle 0 05-08-2010 09:49 AM


All times are GMT -4. The time now is 11:42 AM.


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