From f8ed7d3a78e303386826c41669981789591089cb Mon Sep 17 00:00:00 2001 From: Nathanael Anderson Date: Tue, 31 Aug 2021 16:54:08 -0500 Subject: [PATCH] Update Process.md Delete invalid documentation, as these two values are no longer valid in the later versions of Qode. There does NOT appear to be a current way to get the currently running QT. --- website/docs/api/manual/process.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/website/docs/api/manual/process.md b/website/docs/api/manual/process.md index 8761d72aa..18a5c133b 100644 --- a/website/docs/api/manual/process.md +++ b/website/docs/api/manual/process.md @@ -15,10 +15,3 @@ It adds the following properties : A `String` representing Qode's version string. Qode is a lightly modified version of NodeJs that allows running Qt and NodeJs under a single process. -### `process.versions.qt(compiled)` _Readonly_ - -A `String` representing Qt version used when compile Qode binary. This can be useful to know which version of Qt is binary compatible with the version of Qode you are running. This is useful when running qode with a different version of Qt than what it was compiled with. - -### `process.versions.qt(runtime)` _Readonly_ - -A `String` representing Qt version of the Qt library loaded during runtime. This can be useful to know which version of Qt you are using at runtime as compared to the version of Qt used when Qode was compiled.This is possible since Qt is dynamically linked to Qode and you could replace the Qt dynamic libraries with any binary compatible library. Hence, this is useful when running qode with a different version of Qt than what it was compiled with.