rentianqi
rentianqi
same question, It's work in package. I don't find more explanation about deep link. What do these two sentences mean? [doc](https://www.electronjs.org/zh/docs/latest/api/app#appsetasdefaultprotocolclientprotocol-path-args) path string (optional) Windows - The path to the...
#58 @Noxime @yancouto
I'm not familiar with c++, but I think it may be a cast error? ` tags.m_ppStrings = reinterpret_cast(&properties_.tags); ` @benaadams @MikalDev
I'm trying to log tags.m_ppStrings and it's empty ``` tags.m_nNumStrings = properties_.tags_scratch.size(); tags.m_ppStrings = reinterpret_cast(&properties_.tags); printf(tags.m_ppStrings[0]) ``` and then I found the log of greenworks/src/api/steam_api_workshop.cc And there are some commit...
Two months later, no one replay so I learned C++. And found there are two bugs need fix; No.1 steam_api_workshop.cc line 165 ``` c++ for (uint32_t i = 0; i...
And now my solution is like this greenworks_workshop_workers.cc line 154 ``` c++ // tags.m_ppStrings = reinterpret_cast(&properties_.tags); replace this line as the flowing tags.m_ppStrings = new const char *[tags.m_nNumStrings]; for (int...
996.icu 有个建议是搞个奖,我觉得可以建个新仓库,写个投票吧
> For non Next.js projects. This problem also exists in older webpack versions. When updating to the latest v5.93.0 this problem is resolved. So TerserPlugin has addressed this issue which...