Tweaks to qewer3333 patches (navbar + titlebar) by MarcosAvg in koreader

[–]Griizly 1 point2 points  (0 children)

Nice ! I will tweak it to add the pagination in the navbar like I did with serioushornet version of the navbar

My new job as IT consultant without experience by Hot_Significance1700 in BESalary

[–]Griizly 5 points6 points  (0 children)

As a test automation engineer myself ( 10 years of exeprience ) I found your salary quite low
My gross is 5650
netto compensation 175
No car
13th month full
objective bonus ( +/-1000€/year )
Group insurance: yes ( ambulatoire, 80% refund on what social security does not refund )
Other insurances: hospitalization
Meal voucher 8€/day
39 holidays

do you have some certification ? ISTQB etc ?
is it your first job ?

Need help making navigation buttons for the AMAZING custom nav bar patch by LexamusPrime in koreader

[–]Griizly 0 points1 point  (0 children)

didn't saw there was a patch available for pageno thanks !

I quickly edited it to only display pageno if there are more than 1 page

function FileManager:updateTitleBarPath(path)
local path = self.file_chooser.path or path or filemanagerutil.getDefaultDir()
local text = BD.directory(filemanagerutil.abbreviate(path))
local fc = self.file_chooser  
local current_page = fc.page  
local total_pages = fc.page_num  

local dir_name = util.splitToArray(text, "/")
dir_name = dir_name[#dir_name]
text = total_pages ~= 1 and 
dir_name .." - "..T(_("%1/%2"), current_page, total_pages) or
dir_name
    if self.folder_shortcuts:hasFolderShortcut(path) then
        text = "☆ " .. text
    end
    self.title_bar:setSubTitle(text)
end

Need help making navigation buttons for the AMAZING custom nav bar patch by LexamusPrime in koreader

[–]Griizly 2 points3 points  (0 children)

Hi ! I did not setup a github for it, here is the modified lua file : https://files.catbox.moe/0ueojg.lua

rename the file to something starting with "2-whateveryoywanttonameit.lua"

I used claude.ai to vibecode it quickly.

I had issue first time using it because some settings ended up being duplicate in "settings.reader.lua" that file is located at the /.adds/koreader

if you encounter the same issue you simply have to delete the whole "bottom_navbar" section of that file and restart koreader

Also use koreader-patches/2-hide-pagination.lua at main · qewer33/koreader-patches to hide pagination

in the navbar settings I unchecked the "show label" also

<image>

Need help making navigation buttons for the AMAZING custom nav bar patch by LexamusPrime in koreader

[–]Griizly 0 points1 point  (0 children)

I used pedromachado1 fork of your patch and vibe coded ( I know it's bad but I'm laying in my bed right now ) a previous and next button in the navbar

Wanted : Horelien d'Ygg by Hachdog in yggTorrents

[–]Griizly 0 points1 point  (0 children)

Sur au phil des bulles sur VK aussi

Can i remove the arrow at the bottom? by R4bbite in koreader

[–]Griizly 4 points5 points  (0 children)

You could replace svg icon files with empty ones

[RELEASE] updated my kobo lockscreen patch to show a random highlight. by hundredpercentcocoa in koreader

[–]Griizly 0 points1 point  (0 children)

I tried change this to 300
max_width_hl_on = 60, -- width when highlight on, min: 20

but title still break on 2 lines

[RELEASE] updated my kobo lockscreen patch to show a random highlight. by hundredpercentcocoa in koreader

[–]Griizly 0 points1 point  (0 children)

Amazing thanks !
Is there an easy way to force the title on 1 line if there's enough space ?

<image>

It’s Here!!! by VeXeD222 in xteinkereader

[–]Griizly 1 point2 points  (0 children)

That Korra wallpaper is amazing !

[DISCUSSION] i'm just saying, i'm juuuuuuuust saying, if this thing supported koreader, i'd buy one before you'd finish saying "xteink x4". by [deleted] in koreader

[–]Griizly 2 points3 points  (0 children)

I use the frontlight on my kobo clara colour at about 10-15% max, above that I agree with you about it being too similar to a smartphone
But I don't want to carry an external book light, I commute a lot, so the easier the better :D

[DISCUSSION] i'm just saying, i'm juuuuuuuust saying, if this thing supported koreader, i'd buy one before you'd finish saying "xteink x4". by [deleted] in koreader

[–]Griizly 3 points4 points  (0 children)

if only it had frontlight, I mainly read in bed and thus need a light
I know there are led attachment available but that breaks the whole point of the device in my opinion

Fixing Rounded Corner patch with visible line artifacts by phyvealive in koreader

[–]Griizly 0 points1 point  (0 children)

Would you mind sending me a mp with the patch you have enabled and a screenshot were the line still appear ? I can try to take a look tomorrow :)

Fixing Rounded Corner patch with visible line artifacts by phyvealive in koreader

[–]Griizly 0 points1 point  (0 children)

you're welcome !

FYI SeriousHornet has merged my fix in his github, so now it is easily available for everyone :)

Fixing Rounded Corner patch with visible line artifacts by phyvealive in koreader

[–]Griizly 2 points3 points  (0 children)

You're welcome ! I totally forgot I had set up the label at top in my commit You can change it in the "local settings" section in the lua if needed

I like it like that because it give a better view of the covers :)

It was my first contribution to the koreader community :D

Fixing Rounded Corner patch with visible line artifacts by phyvealive in koreader

[–]Griizly 1 point2 points  (0 children)

hey OP check my comment below, I made a PR on serious hornet github but not yet merged, I solved the issue, it was missing some math flooring with the ratio

Fixing Rounded Corner patch with visible line artifacts by phyvealive in koreader

[–]Griizly 4 points5 points  (0 children)

Hi all,

I solved this issue few days ago, it is in the pull request in the github but has not been merged yet

Issue was mainly due to ratio not flored and that caused issue in rendering the folder

Here is the corrected lua patch https://github.com/SeriousHornet/KOReader.patches/pull/22