panpf
panpf
这个我没有实践过,没法指导你,只能说一下整体的思路 首先从 Down 开始你就要拦截全部事件,然后判断当前是否处于可以关闭的状态,以及手势是否要是关闭手势,是的话继续自己消费后续事件处理关闭,不是的话就释放后续事件让 ZoomImage 消费,这其中会涉及到很多细节,需要你一个个解决
I followed your instructions and moved it to the App directory, as follows: /Users/panpf/Applications/VideoDuplicateFinder3/test Still doesn't work, it can't find any files
任务编辑那里能否加一个选项,开启后可以确保上次任务未结束时跳过本次任务?
好的,我会尝试简化一下
我追寻源代码发现的确使用到了 jna jar 包,并且无法简单的替换,以下是我找的顺序,你可以确认一下: https://github.com/harawata/appdirs/blob/master/src/main/java/net/harawata/appdirs/AppDirsFactory.java#L46 https://github.com/harawata/appdirs/blob/master/src/main/java/net/harawata/appdirs/impl/WindowsAppDirs.java#L44 https://github.com/harawata/appdirs/blob/master/src/main/java/net/harawata/appdirs/impl/WindowsAppDirs.java#L81 https://github.com/harawata/appdirs/blob/master/src/main/java/net/harawata/appdirs/impl/ShellFolderResolver.java#L30
This is a bug, I have fixed it and it will be released in the next version.
I'll consider it, please submit your merge request.
All the changes I needed to make have been made in the dev-blurhash branch. There are several important changes that you need to be aware of: 1. Removed dependency on...
The dev branch has been updated and the relevant documentation is ready. https://github.com/panpf/sketch/blob/dev/docs/blurhash.md Please check if there are any problems.
Yes, this is the rule of the URI protocol, the path and query must be separated by a question mark. So I uri-encoded blurhash in the newBlurHashUri function. https://github.com/panpf/sketch/blob/d7a0f4dff2556b08207580403de3e621e95a4f43/sketch-blurhash/src/commonMain/kotlin/com/github/panpf/sketch/fetch/BlurHashUriFetcher.kt#L47