branchseer
branchseer
I am working on this. ~~Now I have a simple script that packages the Pym app but it's nonconfigurable. Will release it when it's ready.~~ It turns out packaging apps...
Yes. Chromium Edge's WebView2 is definitely something I want DeskGap to support. Stay tuned!
What's your project's folder structure and what HTML file is being loaded?
Win10 默认应该会调用 Edge 引擎渲染。你是代码里指定用 IE 引擎了吗?还是是用管理员权限跑的?
@m4heshd Hi, The Edge DevTools should work. Are you sure DeskGap are using EdgeHTML? The EdgeHTML webview won't work if the process has the admin rights. In this case DeskGap...
@m4heshd You can use `document.write(navigator.userAgent)` in your browser script to check the user agent which tells what engine is running. And there is `require('deskgap').WebViews.getDefaultEngine()` in Node, but for now it's...
DeskDap does not provide this out of box. However the JavaScript wrappers, the platform-independent headers and the platform-specific implementations are clearly separated, so it's totally possible to extract a pure...
@leaanthony Hi. I hope this is still relevant. I have restarted working on this project and successfully separated the non-nodejs part of Deskgap into an independent CMake project: [libdeskgap](https://github.com/patr0nus/DeskGap/tree/master/lib). For...
@leaanthony I think I'm gonna keep this "monorepo" approach. You will need CMake to make use of libdeskgap. Specifically, there are two ways: 1. Clone/git-submodule-add this repo, and `add_subdirectory` the...
I just updated the [Building Instructions](https://deskgap.com/building/). Let me know if you encounter any problem!