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

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 11-30-2017, 01:01 PM   #1816
Antinoos
Groupie
Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!
 
Antinoos's Avatar
 
Posts: 168
Karma: 100329
Join Date: Apr 2017
Location: Leipzig/Germany
Device: PW3, KT3 (fw 5.8.11 with jb)
Don't understand your problem...

Just connect your Kindle via USB, go to the /documents folder and remove the KUAL*.azw2 file. BINGO! :-D

Gesendet von meinem Google Pixel mit Yabba-Dabba-Talk.
Antinoos is offline   Reply With Quote
Old 11-30-2017, 01:12 PM   #1817
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by Antinoos View Post
Don't understand your problem...

Just connect your Kindle via USB, go to the /documents folder and remove the KUAL*.azw2 file. BINGO! :-D

Gesendet von meinem Google Pixel mit Yabba-Dabba-Talk.
PW3-5.9.2:
Removing the file is easy.
Making the thumbnail go away, not so easy.
It will require a small script to do some database file clean-up.
knc1 is offline   Reply With Quote
Old 11-30-2017, 01:13 PM   #1818
hius07
Wizard
hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.
 
Posts: 1,058
Karma: 3581267
Join Date: Sep 2014
Location: Ukraine
Device: Kindle PW2, PW3, PW4, Voyage
Here it is:

cd /var/local
sqlite3 cc.db 'update entries set p_isvisibleinhome=0 where p_location="/mnt/us/documents/KUAL-KDK-2.0.azw2"'
hius07 is offline   Reply With Quote
Old 11-30-2017, 01:24 PM   #1819
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by hius07 View Post
Here it is:

cd /var/local
sqlite3 cc.db 'update entries set p_isvisibleinhome=0 where p_location="/mnt/us/documents/KUAL-KDK-2.0.azw2"'
That only hides it (controls its visibility).
The thumbnail needs to be removed from one of the databases.

The person who PM'd me the information did not bother to name **which** database the thumbnail is in.

So someone will have to take the time to find out and provide a "runme" script for the purpose, or wait for me to get finished with the "hotfix" repair.
knc1 is offline   Reply With Quote
Old 11-30-2017, 01:40 PM   #1820
encol
Evangelist
encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.
 
Posts: 415
Karma: 750442
Join Date: Apr 2016
Location: Italy
Device: Kindle PW3 5.8.5.0.1
What if something like:
Code:
sqlite3 cc.db 'delete from entries where p_location="/mnt/us/documents/KUAL-KDK-2.0.azw2"'
?
encol is offline   Reply With Quote
Old 11-30-2017, 02:15 PM   #1821
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by encol View Post
What if something like:
Code:
sqlite3 cc.db 'delete from entries where p_location="/mnt/us/documents/KUAL-KDK-2.0.azw2"'
?
That would remove it from the cloud collection (cc.db) database.
But the thumbnail itself is stored somewhere, it would also have to be removed.

Previously to 5.9.2, the system took the thumbnail from either the book or the book's metadata directory.
But there is no 'left over' metadata directory for the KUAL document (the entry you do see is for the booklet):
Code:
[root@kindle documents]# ls -l
-rwxrwxrwx    1 root     root             0 Oct  1  2016 KUAL.kual
-rwxrwxrwx    1 root     root        468580 Oct  1  2016 Kindle_Users_Guide.azw3
drwxrwxrwx   13 root     root          8192 Oct  1  2016 dictionaries
See? No *.azw3, no metadata directory.
But the document thumbnail is still being shown on my screen.
I.E: It must be stored in one of the /var/local databases.

In fact, there isn't any metadata directory for the "Kindle User's Guide", which IS still on the system.

5.9.2 :: document/book metadata: moved from a directory into a database.
And the 'left over' image on the screen does not respond to a long tap to delete.

Funky.
They completely removed support for active documents - including any way to delete them.
Go, go, Lab126, too much:

Last edited by knc1; 11-30-2017 at 02:20 PM.
knc1 is offline   Reply With Quote
Old 11-30-2017, 02:28 PM   #1822
hius07
Wizard
hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.hius07 ought to be getting tired of karma fortunes by now.
 
Posts: 1,058
Karma: 3581267
Join Date: Sep 2014
Location: Ukraine
Device: Kindle PW2, PW3, PW4, Voyage
No sdr-folders any more?
hius07 is offline   Reply With Quote
Old 11-30-2017, 05:23 PM   #1823
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by hius07 View Post
No sdr-folders any more?
all gone.
it must be a database driven system now.
knc1 is offline   Reply With Quote
Old 12-01-2017, 04:09 AM   #1824
AcidWeb
KCC Co-Author
AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.
 
AcidWeb's Avatar
 
Posts: 845
Karma: 765434
Join Date: Mar 2013
Location: Poland
Device: Kindle Oasis 2
I still have SDR directories on my Oasis 2 5.9.2.

Also covers were never stored there. PDOC ones are read from ebook file itself, rest is in system\thumbnails.
AcidWeb is offline   Reply With Quote
Old 12-01-2017, 06:45 AM   #1825
Antinoos
Groupie
Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!
 
Antinoos's Avatar
 
Posts: 168
Karma: 100329
Join Date: Apr 2017
Location: Leipzig/Germany
Device: PW3, KT3 (fw 5.8.11 with jb)
Quote:
Originally Posted by AcidWeb View Post
I still have SDR directories on my Oasis 2 5.9.2
Even for AZW2/AZW3 & KF8 books?

To sum it up: FW 5.9.2 seems to be a real big setback!
- active documents support finally gone
- MrPI doesn't work any longer
... what the hell?!

So here's my question (especially on behalf of my friend, who, in contrast to myself, is using his Kindle online): Is the OTA blocker directory trick still reliable to stay on (jailbroken) 5.8.11, even with WLAN on? (The latter version is IMHO definitely the best firmware for everyday's use...)

Last edited by Antinoos; 12-01-2017 at 06:48 AM.
Antinoos is offline   Reply With Quote
Old 12-01-2017, 06:46 AM   #1826
AcidWeb
KCC Co-Author
AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.
 
AcidWeb's Avatar
 
Posts: 845
Karma: 765434
Join Date: Mar 2013
Location: Poland
Device: Kindle Oasis 2
Yes. And KFX too.

Yes.
AcidWeb is offline   Reply With Quote
Old 12-01-2017, 06:51 AM   #1827
Antinoos
Groupie
Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!Antinoos rocks like Gibraltar!
 
Antinoos's Avatar
 
Posts: 168
Karma: 100329
Join Date: Apr 2017
Location: Leipzig/Germany
Device: PW3, KT3 (fw 5.8.11 with jb)
Left over from previous fw version?
Are the contents of the resepective *.sdr dirs still updated when reading the corresponding books? Otherwise they're just garbage...
Antinoos is offline   Reply With Quote
Old 12-01-2017, 06:53 AM   #1828
AcidWeb
KCC Co-Author
AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.
 
AcidWeb's Avatar
 
Posts: 845
Karma: 765434
Join Date: Mar 2013
Location: Poland
Device: Kindle Oasis 2
No. Yes.
AcidWeb is offline   Reply With Quote
Old 12-01-2017, 08:17 AM   #1829
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by AcidWeb View Post
I still have SDR directories on my Oasis 2 5.9.2.

Also covers were never stored there. PDOC ones are read from ebook file itself, rest is in system\thumbnails.
Where under /system?
Not in /system its self or anything *thumbnail*
Code:
[root@kindle system]# ls -la
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 .
drwxrwxrwx   16 root     root          8192 Jul  4 23:03 ..
drwxrwxrwx    2 root     root          8192 Jul  1 18:32 .mrch
drwxrwxrwx    2 root     root          8192 Jul  4 23:03 Search Indexes
drwxrwxrwx    2 root     root          8192 Oct  1  2016 acw
drwxrwxrwx    2 root     root          8192 Jul  1 00:12 btlogs
drwxrwxrwx    2 root     root          8192 Oct  1  2016 fonts
drwxrwxrwx    2 root     root          8192 Jul  1 18:32 freetime
drwxrwxrwx    2 root     root          8192 Oct  1  2016 grok_thumbnails
drwxrwxrwx    2 root     root          8192 Oct  1  2016 kll
drwxrwxrwx    2 root     root          8192 Oct  1  2016 readingstreams
drwxrwxrwx    3 root     root          8192 Oct  1  2016 startactions
drwxrwxrwx    2 root     root          8192 Oct  1  2016 thumbnails
-rwxrwxrwx    1 root     root            26 Jul  1 00:00 version.txt
[root@kindle system]# ls -la thumbnails
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
[root@kindle system]# ls -la grok_thumbnails
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
In fact, nowhere:
Code:
[root@kindle system]# ls -la *
-rwxrwxrwx    1 root     root            26 Jul  1 00:00 version.txt

Search Indexes:
drwxrwxrwx    2 root     root          8192 Jul  4 23:03 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
-rwxrwxrwx    1 root     root         81920 Jul  1 00:01 Index.db
-rwxrwxrwx    1 root     root             8 Jul  4 23:03 Index.lg
-rwxrwxrwx    1 root     root         39358 Jul  1 00:01 y1890f9a90695603e81c47b

acw:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..

btlogs:
drwxrwxrwx    2 root     root          8192 Jul  1 00:12 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..

fonts:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
-rwxrwxrwx    1 root     root      16072704 Jan 16 11:44 ja.font
-rwxrwxrwx    1 root     root      41234432 Jan 16 11:44 zh-Hans.font

freetime:
drwxrwxrwx    2 root     root          8192 Jul  1 18:32 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
-rwxrwxrwx    1 root     root         18432 Jul  1 18:32 freetime.db

grok_thumbnails:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..

kll:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..

readingstreams:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
-rwxrwxrwx    1 root     root          3072 Oct  1  2016 readingstreams.db

startactions:
drwxrwxrwx    3 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
drwxrwxrwx    2 root     root          8192 Oct  1  2016 images

thumbnails:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 .
drwxrwxrwx   13 root     root          8192 Jul  1 18:32 ..
/system/startactions/images is also empty.
knc1 is offline   Reply With Quote
Old 12-01-2017, 08:27 AM   #1830
AcidWeb
KCC Co-Author
AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.AcidWeb ought to be getting tired of karma fortunes by now.
 
AcidWeb's Avatar
 
Posts: 845
Karma: 765434
Join Date: Mar 2013
Location: Poland
Device: Kindle Oasis 2
Code:
drwxrwxrwx    2 root     root          8192 Oct  1  2016 thumbnails
No idea why your directory is empty. All my covers are there.
AcidWeb is offline   Reply With Quote
Reply

Tags
kindle touch, kindle touch hacks, kindlet, kual, launcher, launcher add-ons, paperwhite, sqlite, unified

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Launcher icon for KUAL? Aeris Kindle Developer's Corner 32 04-01-2021 07:57 PM
kite: kindle 3 application launcher fbdev Kindle Developer's Corner 86 10-18-2017 10:19 AM
[KUAL]Kindle reflective screen loader icantbebothered Kindle Developer's Corner 26 10-27-2013 09:08 AM
Kual shortcut for hidden image viewer (Kindle Touch & PW) Aeris Kindle Developer's Corner 0 10-12-2013 05:09 AM
application launcher for kindle 3 (kite) fbdev Kindle Developer's Corner 21 05-04-2012 06:02 PM


All times are GMT -4. The time now is 05:07 PM.


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