From e6c877fe066e0849ebc7d0fa89d7acb7a8320df3 Mon Sep 17 00:00:00 2001 From: Golisopod-User <70828713+Golisopod-User@users.noreply.github.com> Date: Mon, 7 Feb 2022 00:31:42 +0530 Subject: [PATCH] Display version number of plugins in the console (#173) * Display version number with plugins --- Data/Scripts/001_Technical/005_PluginManager.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/001_Technical/005_PluginManager.rb b/Data/Scripts/001_Technical/005_PluginManager.rb index 98a75a4ef..5ab2c700b 100644 --- a/Data/Scripts/001_Technical/005_PluginManager.rb +++ b/Data/Scripts/001_Technical/005_PluginManager.rb @@ -710,7 +710,7 @@ module PluginManager # try to run the code begin eval(code, TOPLEVEL_BINDING, fname) - Console.echoln_li "Loaded plugin: '#{name}'" if !echoed_plugins.include?(name) + Console.echoln_li "Loaded plugin: '#{name}' (ver. #{meta[:version]})" if !echoed_plugins.include?(name) echoed_plugins.push(name) rescue Exception # format error message to display self.pluginErrorMsg(name, sname)