shizhe

Results 4 issues of shizhe

hi, it's a very cool plugin, but not support lua5.3 yet? error like this: ![qq20161221-0](https://cloud.githubusercontent.com/assets/7010663/21361010/312f49fc-c71d-11e6-96b5-8adf39c15f29.png)

this line is needless https://github.com/OmegaK2/PyPoE/blob/88e3d71b2d449630de146cf7a3d45c9ffc27d5b8/PyPoE/poe/file/ggpk.py#L763 and you had -3 offset in https://github.com/OmegaK2/PyPoE/blob/88e3d71b2d449630de146cf7a3d45c9ffc27d5b8/PyPoE/poe/file/ggpk.py#L779

**本地环境** Ubuntu 22.04,搜狗输入法 4.0.1.2123,编辑器intellij idea ce 2022.1.3,笔记本屏幕分辨率2560*1600,缩放比例150% **修改方案** 由于能力有限也没有时间精力去找遍整个jbr源码,暂时没有找到函数可以直接获得系统的设置的缩放值。所以,需要各位自己根据自身情况写死。 修改这两行,调整result就行了。 https://github.com/RikudouPatrickstar/JetBrainsRuntime-for-Linux-x64/blob/9f6927487ba1af70bbdfb0fcc1cb6078ef6565ad/idea.patch#L296-L297 修改后 ```java if(c!=null){ double scale = 2.0; result = new int[]{point.x - c.getPeer().getLocationOnScreen().x + caret_x, point.y - c.getPeer().getLocationOnScreen().y +...

rt,用宝塔默认安装的php7.2,默认是禁止proc_open函数的,我按照说明《Linux安装ffmpeg支持MP4缩略图》安装ffmpeg后,网站开始表现的性能极差,点击登出都要等半天,同时cpu和内存使用率却是非常良好,没有表现的异常。 data/log/dzz_ffmpeg.php 确实有一个错误日志,“The Process class relies on proc_open, which is not available on your PHP installation.” 在我把proc_open从disable_functions里移除后,网站性能表现正常。 希望改进下,即使禁止了proc_open函数,也能让网站性能表现正常。或者在《Linux安装ffmpeg支持MP4缩略图》这篇里,强调下必须打开proc_open这个问题。