Elf Sundae

Results 47 comments of Elf Sundae

@sepcnt I just followed the README steps, I tried to fresh install Big Sur, upgrade from Catalina, both were OK. "the installer is broken" seems your USB may have some...

老版本是 OC 的:https://github.com/netease-kit/nim-uikit-ios/tree/uikit_archive ```ruby pod 'NIMKit', '~> 3.7' ``` 如果集成有问题,可以试试我的fork:https://github.com/ElfSundae/NIM_iOS_UIKit

作为第三方库,给 dependency 指定版本还是有必要的,表示该库兼容哪个版本的依赖。 对于像 SDWebImage 这种常用库,最好兼容流行版本和最新版本,例如: ```ruby s.dependency 'SDWebImage', '>= 4.2', '< 6' ``` PS. 这里的 PR 貌似没人理 😞

You may try my fork: https://github.com/ElfSundae/YYImage/issues/2

我竟然没注意这个... @shamiao 5.4 貌似也是这样,你那个脚本的 match URL 是不是也加个 5.4

上面不是写了么,项目编译参数里加 `-all_load` 或者 移除 `Podfile` 中的 `:linkage => :static`

我没用过 Nova ,不明白你说的「只修改model即可使用」是什么意思?

只要你能安装、配置这个库,代码中在哪使用都可以,这个库只是提供了编/解码方法,没限制怎么使用。

@seek-x2y laravel-hashid 不直接依赖 phpseclib,但是依赖 [jenssegers/optimus](https://github.com/jenssegers/optimus) 这个包,optimus 用到了 phpseclib,刚看了下 optimus 的 master 分支 已经支持了 phpseclib 3.x,等 optimus 包发布新版本了我就更新下版本。 你是自己用到 phpseclib 3.x 还是别的包依赖了 phpseclib 3.x ?如果急需要更新的话,可以试试在你项目的 `composer.json` 中指定依赖 jenssegers/optimus 的 dev-master 版本。

Thanks for your advice, and I also have several hashid traits in my projects. This package is just a manager for multiple connections and various encode drivers, I think it...