From d2d02be33ed447b185f41732d5d44e8f2f06da7f Mon Sep 17 00:00:00 2001 From: aufr33 <65520685+aufr33@users.noreply.github.com> Date: Mon, 4 Jul 2022 04:45:49 +0300 Subject: [PATCH] Update UVR.py --- UVR.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/UVR.py b/UVR.py index 4190249..c3992fa 100644 --- a/UVR.py +++ b/UVR.py @@ -39,7 +39,8 @@ import inference_MDX import inference_v5 import inference_v5_ensemble import inference_demucs - +# Version +from __version__ import VERSION from win32api import GetSystemMetrics @@ -529,8 +530,8 @@ class MainWindow(TkinterDnD.Tk): self.command_Text = ThreadSafeConsole(master=self, background='#0e0e0f',fg='#898b8e', font=('Century Gothic', 11),borderwidth=0) - self.command_Text.write(f'Ultimate Vocal Remover [{datetime.now().strftime("%Y-%m-%d %H:%M:%S")}]\n') - + self.command_Text.write(f'Ultimate Vocal Remover v{VERSION} [{datetime.now().strftime("%Y-%m-%d %H:%M:%S")}]\n') + def configure_widgets(self): """Change widget styling and appearance""" @@ -3511,4 +3512,4 @@ if __name__ == "__main__": def callback(url): webbrowser.open_new_tab(url) - root.mainloop() \ No newline at end of file + root.mainloop()