Wenliang

Results 14 issues of Wenliang

I see now just a simple string concatenation of `directory_p` and `specifier`: https://github.com/jerryscript-project/jerryscript/blob/0d4969661810b9e618485c284c361e597144e9b9/jerry-core/api/jerry-module.c#L141-L161 Does this mean that scenarios like absolute paths cannot be handled? My proposal for this is to...

实现一个类似Windows CMD或者Linux终端的界面。用于支持交互操作。 这个界面应该实现简单的高亮功能。暂时不考虑优化。

接下来将实现一种支持用户任意拖拽布局的界面。新的界面支持将不同的视图同时显示在窗口中,因此通信接口(例如串口)的数据应该流向哪些视图是新的问题。 新界面还将支持不同视图之间的通信。

新的SerialTool将会具有一个插件系统,目前计划的插件系统将有以下特性: * 动态链接库插件 * 脚本插件 SerialTool的每个插件都是一个视图卡片,也是SerialTool的基本功能单元。我们希望新的插件系统能够帮助用户在不必理解SerialTool代码的情况下能快速开发适合自己需求的插件。 如果条件允许我们还会实现通信端口协议的插件支持。

新的设置界面使用JSON来进行页面布局,从而在增加新的设置项时不用去修改Options对话框的C++代码。 这项工作已经基本完成。

In C++, setjmp/longjmp are not compatible with C++ exceptions. Therefore, I want to change the berry exception to error code mechanism. I think it should be possible to use the...

proposal

I compiled with ghc-9.2.2 and found some errors, is there any plan to fix it?

JavaScript and python have similar APIs, maybe we can consider it? This should be simple.

enhancement

I plan to add CMake build scripts, which should help: - Better IDE integration. - CMake is popular in C/C++ projects. - Much more usable and cross-platform than Makefile. -...