02-24-2024, 04:10 PM | #16 | |
the rook, bossing Never.
Posts: 12,344
Karma: 92073397
Join Date: Jun 2017
Location: Ireland
Device: All 4 Kinds: epub eink, Kindle, android eink, NxtPaper11
|
Quote:
|
|
02-24-2024, 07:33 PM | #17 |
Guru
Posts: 760
Karma: 2825929
Join Date: Feb 2007
Location: Fresno
Device: Kindle 1; iPad Air; iPhone 7; Kobo Libra; Kindle Oasis 3
|
Looks like the update deactivates your font ramp, if you have one. But if you delete it and reinstall it and restart the Kindle, it's activated again.
Jim |
Advert | |
|
02-24-2024, 10:01 PM | #18 |
Member
Posts: 16
Karma: 10
Join Date: Aug 2019
Device: Kindle
|
|
02-24-2024, 10:38 PM | #19 |
Enthusiast
Posts: 48
Karma: 50000
Join Date: Nov 2017
Device: Nook, Kindle
|
This change in 5.6.7 looks mighty suspicious ...
Code:
mesquite/browser/javascripts/fileManager.js 2024-02-09 17:54:56.000000000 -0800 +/* + * Changes html content to text content + */ +function htmlToText(string) { + const div = document.createElement('div'); + div.appendChild(document.createTextNode(string)); + return div.innerHTML; +} + /** * Manages Browser file upload and download requests */ @@ -30,7 +39,8 @@ // get dialog message var mf = new MessageFormat(b.strings.messages.downloadConfirm); - var message = mf.format({ filename: request.filename }); + var filename = htmlToText(request.filename); + var message = mf.format({ filename: filename }); |
02-25-2024, 05:57 AM | #20 |
Resident Curmudgeon
Posts: 76,395
Karma: 136466962
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
Advert | |
|
02-25-2024, 07:13 AM | #21 |
Member
Posts: 16
Karma: 10
Join Date: Aug 2019
Device: Kindle
|
|
02-25-2024, 08:29 AM | #22 | |
Kindle Bricker
Posts: 83
Karma: 1170
Join Date: Sep 2022
Location: Why do you want to know?
Device: PW5
|
Quote:
might work on ARMHF toolchain today... |
|
02-25-2024, 08:32 AM | #23 |
Resident Curmudgeon
Posts: 76,395
Karma: 136466962
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
|
02-25-2024, 01:15 PM | #24 |
Grand Sorcerer
Posts: 5,526
Karma: 100606001
Join Date: Apr 2011
Device: pb360
|
|
02-25-2024, 01:26 PM | #25 | |
Zealot
Posts: 103
Karma: 213232
Join Date: Mar 2022
Device: android
|
Quote:
|
|
02-25-2024, 03:01 PM | #26 |
Grand Sorcerer
Posts: 6,748
Karma: 86234863
Join Date: Nov 2011
Location: Charlottesville, VA
Device: Kindles
|
I compare the code to the previous release looking for changes.
|
02-26-2024, 07:29 AM | #27 |
Zealot
Posts: 103
Karma: 213232
Join Date: Mar 2022
Device: android
|
I thought I was missing something. Thanks for posting these. It is very annoying how vague they are. One of the updates actually had something helpful to me. Not that they all aren't. But it enabled voiceview to continue where it left off when stopped. Not restart the who page.
|
02-26-2024, 02:49 PM | #28 | |
Evangelist
Posts: 459
Karma: 7897546
Join Date: Aug 2013
Location: Hamden, CT
Device: Kindle Paperwhite (11th gen), Scribe
|
Quote:
It looks like there was some exploit where the filename contained actual HTML (e.g. "<p>stuff</p>.ext") and this was just appended to the HTML output. Now, it gets converted to text and stuffed into a div (e.g. "<div><p>stuff</p>.ext"</div>). |
|
03-02-2024, 05:59 AM | #29 |
Grand Sorcerer
Posts: 6,752
Karma: 26974049
Join Date: Apr 2009
Location: USA
Device: iPhone 15PM, Kindle Scribe, iPad mini 6, PocketBook InkPad Color 3
|
I was having an issue downloading a 'PDF'. Scribe was still on 5.16.6.1, I was just curious if would ever update automatically. Thought I would try updating to 5.16.7 and the download worked as expected.
|
03-02-2024, 11:24 AM | #30 |
Enthusiast
Posts: 29
Karma: 10
Join Date: Jan 2022
Device: Paperwhite Kindle 5 11th gen 2021
|
|