Andy Li
Andy Li
看了一下,ProtocolLib 5.0.0 都还没正式发布呢,十天前这个版本号才第一次出现。我实在无法想象会有插件依赖这么新的版本……你可能指的是最近发布的 4.8.0? 最终肯定是打算跟进的,但我希望至少等到 5.0.0 正式发布吧,因为我看这次有一大堆修改,尤其是我插件依赖的注入逻辑部分,可能后面还会有改变。
好吧,也是。一定要等正式版的话得不知道猴年马月了,何况这还是一个 major 版本。不过这种情况的话那就得两个版本都要想办法兼容了,头大…… 最近这段时间太忙了,不过到了八月应该就有空了吧……
It's stabilized today.
Why not [`java.time.Duration`](https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html)?
```java public static String humanDuration(Date date) { Duration duration = Duration.between(date.toInstant(), Instant.now()).abs(); long days = duration.toDays(); duration = duration.minusDays(days); long months = days / 31; days %= 31; long hours...
It does provided a "shared" build for dynamic linking. I have successfully built gifski with it before, and I remember it being a relatively painless process — just followed the...
Ah yes…… That's the thing. The "static .lib files" actually just reexport from the DLLs, and do not contain the code itself (their sizes are too small for that). I've...
Maybe it would help if you can run `ffprobe` on the video file and check the output
`lastUpdate` 为什么不用 Unix 时间戳?方便读取,不会有解析问题,更不会有时区问题。
For those who are interested in solutions other than browserify, here's an workaround I'm using for my project. Create a local npm package named something like `url-shim` with following files:...