|  04-23-2015, 10:15 AM | #811 | 
| Junior Member  Posts: 8 Karma: 10 Join Date: Apr 2015 Device: PW2 | 
			
			I cant seem to open azw3 files.It is showing that there are files inside the folder but when I open the folder,no files are shown
		 | 
|   |   | 
|  04-23-2015, 10:41 AM | #812 | 
| BLAM!            Posts: 13,506 Karma: 26047202 Join Date: Jun 2010 Location: Paris, France Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E | 
			
			@john4545: That's because AZW files (of any kind, be it DRM encumbered MOBI6, PDF or KF8) aren't supported.
		 | 
|   |   | 
|  04-23-2015, 10:59 AM | #813 | 
| Junior Member  Posts: 8 Karma: 10 Join Date: Apr 2015 Device: PW2 | |
|   |   | 
|  04-23-2015, 12:06 PM | #814 | 
| BLAM!            Posts: 13,506 Karma: 26047202 Join Date: Jun 2010 Location: Paris, France Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E | 
			
			Definitely never if DRM encumbered, most probably never for unencombered ones. TL;DR: Nope. | 
|   |   | 
|  04-23-2015, 03:23 PM | #815 | 
| Going Viral            Posts: 17,212 Karma: 18210809 Join Date: Feb 2012 Location: Central Texas Device: No K1, PW2, KV, KOA | 
			
			Just use the native reader application for azw files.
		 | 
|   |   | 
|  04-26-2015, 07:30 AM | #816 | 
| Connoisseur  Posts: 68 Karma: 10 Join Date: Dec 2014 Device: Kindle Paperwhite | |
|   |   | 
|  05-01-2015, 05:18 AM | #817 | 
| Addict            Posts: 250 Karma: 136662 Join Date: Apr 2011 Device: N/A | 
				
				Change koreader to hide the CJK fonts
			 
			
			You will need to edit the file  Code: frontend/ui/font.lua Code: function Font:_readList(target, dir) Code: function Font:_readList(target, dir)
-- begin hfpop
    -- *.ttf files in /usr/java/lib/fonts/
    local fonts_cjk = {}
    fonts_cjk["code2000"] = true 
    fonts_cjk["HYGothicBold"] = true 
    fonts_cjk["HYGothicMedium"] = true 
    fonts_cjk["HYMyeongJoBold"] = true 
    fonts_cjk["HYMyeongJoMedium"] = true 
    fonts_cjk["MTChineseSurrogates"] = true 
    fonts_cjk["MYingHeiSBold"] = true 
    fonts_cjk["MYingHeiSMedium"] = true 
    fonts_cjk["MYingHeiTBold"] = true 
    fonts_cjk["MYingHeiTMedium"] = true 
    fonts_cjk["SongTBold"] = true 
    fonts_cjk["SongTMedium"] = true 
    fonts_cjk["STSongBold"] = true 
    fonts_cjk["STSongMedium"] = true 
    fonts_cjk["TBGothicBold_213"] = true 
    fonts_cjk["TBGothicMed_213"] = true 
    fonts_cjk["TBMinchoBold_213"] = true 
    fonts_cjk["TBMinchoMedium_213"] = true 
-- end hfpop
    -- lfs.dir non-exsitent directory will give error, weird!
    local ok, iter, dir_obj = pcall(lfs.dir, dir)
    if not ok then return end
    for f in iter, dir_obj do
        if lfs.attributes(dir.."/"..f, "mode") == "directory" and f ~= "." and f ~= ".." then
            self:_readList(target, dir.."/"..f)
        else
            local file_type = string.lower(string.match(f, ".+%.([^.]+)") or "")
            if file_type == "ttf" or file_type == "ttc"
                or file_type == "cff" or file_type == "otf" then
-- begin hfpop
            local file_name = string.match(f, "(.+)%.[^.]+")
            if fonts_cjk[file_name] == nil then
-- end hfpop
                table.insert(target, dir.."/"..f)
-- begin hfpop
            end
-- end hfpop
            end
        end
    end
end | 
|   |   | 
|  05-22-2015, 03:51 PM | #818 | 
| Member    Posts: 23 Karma: 208 Join Date: Oct 2014 Device: Nexus5, Nexus9 | 
			
			Just FYI.   Nexus 9,  running 5.1.1 The latest build reliably fails, dialog pops up saying the app unexpectedly terminated. The stable build works fine except it hangs every time if started from Caliber Companion. I have to force-stop the app. If I open a pdf directly from it's built in file manager that works fine though it seems to be able to get into a state (not fully reproducible) where if I go back to the home screen and then click on koreader, it will similarly hang (black screen) but I have to clear data as well as force-stop to fix. The "Zoom to fit content" is amazing, exactly what I was looking for. Thanks! I notice that it doesn't take note of whether the progress bar is visible at the bottom and so it can obscure the last line of text. Thanks again. | 
|   |   | 
|  05-24-2015, 04:29 AM | #819 | 
| Addict            Posts: 250 Karma: 136662 Join Date: Apr 2011 Device: N/A | |
|   |   | 
|  06-17-2015, 12:40 PM | #820 | 
| Groupie  Posts: 170 Karma: 10 Join Date: Oct 2011 Location: Montreal, Canada Device: Kindle Paperwhite G000PP(5.10.0.2) | 
			
			Hey guys, any word yet if this will work on the "new and improved" paperwhite....?? Yea, I know it's early, just askin' is all..... | 
|   |   | 
|  06-17-2015, 01:25 PM | #821 | 
| Wizard            Posts: 1,379 Karma: 2155307 Join Date: Nov 2010 Location: Goettingen, Germany Device: Kindle Paperwhite, Kobo Mini | 
			
			I think so. Maybe, the device specific data needs a tad bit tweaking. But first - have it run third party code.
		 | 
|   |   | 
|  06-17-2015, 03:11 PM | #822 | 
| Groupie  Posts: 170 Karma: 10 Join Date: Oct 2011 Location: Montreal, Canada Device: Kindle Paperwhite G000PP(5.10.0.2) | 
			
			Cool. Turns out I really like this KOReader thing. Thanks. | 
|   |   | 
|  06-19-2015, 06:49 AM | #823 | 
| Zealot         Posts: 101 Karma: 1000 Join Date: May 2013 Device: Kindle 5 | 
			
			Is share on facebook function is implemented?
		 | 
|   |   | 
|  06-21-2015, 05:50 AM | #824 | 
| Wizard            Posts: 1,379 Karma: 2155307 Join Date: Nov 2010 Location: Goettingen, Germany Device: Kindle Paperwhite, Kobo Mini | 
			
			No. (This forum insists on getting at least 5 chars for the message, but for the answer to the question at hand, two were actually enough...) | 
|   |   | 
|  06-26-2015, 02:29 AM | #825 | 
| Connoisseur         Posts: 96 Karma: 1000 Join Date: Feb 2012 Device: DX | 
			
			Kindle DXG here, I have installed MKK and KUAL, latest versions, I open KUAL, and then Koreader and choose file manager, I tried all three (ASAP, no framework, and regular), then it goes back to the home and I see "starting koreader" but nothing happens. When I choose no framework the kindle reboots but still nothing happens. Am I missing something? Last edited by xxtraloud; 06-26-2015 at 02:33 AM. | 
|   |   | 
|  | 
| Tags | 
| application, k5 tools, kindle, koreader, launcher add-ons, lua, reader, touch | 
| Thread Tools | Search this Thread | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| KPV: a PDF reader for Kindle, based on muPDF, GPLv3 | hawhill | Kindle Developer's Corner | 1056 | 11-11-2017 03:07 AM | 
| Hacked Up Reader for epub/fb2/txt/rtf/html/pdb/etc | bhaak | Kindle Developer's Corner | 296 | 10-01-2016 01:11 PM | 
| html to fb2 or epub | rulet | Conversion | 7 | 06-24-2012 05:54 PM | 
| Raccoon Reader - reads ePub, fb2, fb2.zip, txt on WP7 for free | Andrei_Shvydryk | Reading and Management | 0 | 10-31-2011 03:17 PM | 
| A real PDF to epub/djvu/rtf/html software?. | DsOft | ePub | 35 | 01-02-2011 03:57 PM |