File lsp-plugins-do_not_pester.patch of Package lsp-plugins
diff --git a/modules/lsp-plugin-fw/src/main/ctl/PluginWindow.cpp b/modules/lsp-plugin-fw/src/main/ctl/PluginWindow.cpp
index a050a26..c4b4a19 100644
--- a/modules/lsp-plugin-fw/src/main/ctl/PluginWindow.cpp
+++ b/modules/lsp-plugin-fw/src/main/ctl/PluginWindow.cpp
@@ -2084,34 +2084,6 @@ namespace lsp
LSPString pkgver;
if ((res = fmt_package_version(pkgver)) != STATUS_OK)
return res;
-
- // Check that we really need to show notification window
- const char *vstring = pkgver.get_utf8();
- #ifdef LSP_TRACE
- const char *old_pkgver = pPVersion->buffer<char>();
- lsp_trace("Updating last version from %s to %s", old_pkgver, vstring);
- #endif /* LSP_TRACE */
-
- pPVersion->write(vstring, strlen(vstring));
- pPVersion->notify_all(ui::PORT_NONE);
-
- lsp_trace("Showing greeting dialog");
-
- if (wGreeting == NULL)
- {
- ctl::Window *ctl = NULL;
- res = create_dialog_window(&ctl, &wGreeting, LSP_BUILTIN_PREFIX "ui/greeting.xml");
- if (res != STATUS_OK)
- return res;
-
- // Bind slots
- tk::Widget *btn = ctl->widgets()->find("submit");
- if (btn != NULL)
- btn->slots()->bind(tk::SLOT_SUBMIT, slot_greeting_close, this);
- wGreeting->slots()->bind(tk::SLOT_CLOSE, slot_greeting_close, this);
- }
-
- wGreeting->show(wnd);
return STATUS_OK;
}