Vincent Wei

Results 92 comments of Vincent Wei

MiniGUI 5.0 合成图式的效果,可以看看下面的介绍文章以及其中的视频: https://hybridos.fmsoft.cn/blog/hybridos-rk3308

应该是 ANIMATION 控件的背景色默认为白色导致,可以修改其背景色为透明色,也就是 Alpha 分量为 0 的颜色。

I think it is caused by the transparent alpha component, the old content can not be erased by the new content. You can call `SetSecondaryDC()` function to specify a function...

I think your analysis is correct. There are some bugs in the implementation. However, we have no dev. environment to fix or test the change. I think you can try...

Run `sudo apt install flex` to install flex.

This issue has been fixed and/or enhanced.

1. 请问 TodoMVC 具体是什么含义? 2. 按目前的设计,对 websocket 的支持需要为 `STREAM` 变量增加一个过滤器,规划到未来版本了。

WEBKIT_VERSION_STRING 这个宏是我们那个 WebKit 定制版本新增的。如果出现这个错误,说明找到的 webkit2gtk.h 头文件是系统原有的,而不是我们定制的。 建议移除系统自带的 webkit2gtk-dev 包。

如果要和系统自带的 webkit2gtk 包共存,需要考虑修改函数库的名称,更改头文件的安装路径等。这会比较麻烦,要规划一下。 目前我在 ubuntu 20,04 以及 22.04 上,使用我们的 webkit2gtk 函数库,对其他依赖 webkit2gtk 的应用没有影响。 如果要和系统自带的 webkit2gtk-dev 包共存,也可以尝试使用 `PKG_CONFIG_PATH` 这个环境变量。

There is a bug in FindDOMRuler.cmake. We have changed the installation directory of headers of DOMRuler, but the file still use the old directory. This bug has been fixed in...