From e30f3cc3051f408ada4187d52634d35320e1b89d Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Wed, 31 Jul 2019 05:37:39 +0200 Subject: [PATCH] Report the nw.js version during startup. --- pd/nw/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pd/nw/index.js b/pd/nw/index.js index 887b44d42..6e9da613c 100644 --- a/pd/nw/index.js +++ b/pd/nw/index.js @@ -743,6 +743,8 @@ function post_startup_messages() { // These will be the first messages printed to the main Pd window. // Later let's use a link to the docs for new users. pdgui.post("Welcome to Purr Data"); + // Report the nw.js version that we're using. + pdgui.post("nw.js version " + process.versions["nw"]); // Warn the user if the font sizes aren't optimal. Font sizes which // aren't optimal result in extra space at the end of object/message // boxes -- GitLab