dmm9
dmm9
You are right, after overriding many methods in `GLSPGraph` to circumvent the default locator, it turns out that it is enough to only override `createGraph` in `GLSPApp`. But why is...
> Could you tell me which graph you use for your client (maybe a link)? It can be, that the integrations use a modified GGraph, I will have a look...
You need to render only on the client. With `ClientOnly` as emqMalte said, or with `useEffect`: ```typescript export default function ComponentWithTurnstile() { const [isClient, setIsClient] = useState(false); useEffect(() => {...
I mean when integrating as an extension by using `@theia/core/lib/browser/authentication-service`, not when creating a plugin with `plugin-ext` With this arbitrary custom service: ```typescript import { AuthenticationProvider } from '@theia/core/lib/browser/authentication-service'; export...
@tsmaeder fyi
I doubt it. According to this post, Gradle only includes compiled classes by default:  [Source here](https://discuss.gradle.org/t/how-to-make-gradle-to-include-java-sources/11487/2). Also documented in [Gradle docs](https://docs.gradle.org/current/userguide/java_plugin.html) So I guess the bnd-gradle-plugin is modifying the...
I guess this is the same as this discussion: #12135
Not an expert in build tools, but pnpm is also gaining a lot of traction thanks to faster build times. To the point that it has taken over the lead...
I've just found the culprit. As I don't have a certificate, I've set the option `signAndEditExecutable` to `false`. But this seems to prevent the icon, company info, copyright... to be...
@beyondkmp I have noticed it. But trying to sign the executable consumes time, and it could be skipped if the user does not want to sign. Wouldn't make sense to...