Milan Nikolic

Results 449 comments of Milan Nikolic

That is just getOpenFileName from win32 API https://docs.microsoft.com/en-us/windows/win32/api/commdlg/ns-commdlg-openfilenamew . In docs says it should be at least that size, so it is. You can send PR with changed maximum.

Currently no, dlgs don't know if the app actually uses some window or is running from the terminal. Also, only windows platform uses API, Linux and macOS use external binary,...

Hi, yes, save file dialog should be added. Both zenity/qarma and osascript have such functionality and `GetSaveFileName` can be used on win32. I don't have time currently to add those,...

Hey, there was this pull request https://github.com/gen2brain/dlgs/pull/3 , so not sure what is the correct fix here @leonjza .

@sooslaca why do you think it is because of "with icon" part, it works ok without it? I don't use macOS so I don't really understand that well all those...

I don't want to add empty go.sum, why is that needed? Isn't that a problem with that specific check you are using? Also, I like to bump the Go version...

Do you have any errors? Or example?

Methods are now protected with a mutex, so there should be no issues, but I didn't test.

I investigated a little how MuPDF works and what is needed to have real concurrency support, and there are some problems. What is needed is described here https://mupdf.com/docs/coding-overview.html#multi-threading, excerpt from...

Nice discussion in PyMUPDF https://github.com/pymupdf/PyMuPDF/issues/97, but also without the solution.