From 3fc5cb17bda36b0b6595fbe81c63d2fe9e419fdc Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Wed, 17 Oct 2018 17:38:05 -0400 Subject: [PATCH] update version --- GUI/mainwindow.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/GUI/mainwindow.cpp b/GUI/mainwindow.cpp index 5dbe505..8e527b5 100644 --- a/GUI/mainwindow.cpp +++ b/GUI/mainwindow.cpp @@ -26,6 +26,9 @@ MainWindow::MainWindow(QWidget *parent) : connect(this, &MainWindow::SigAddThread, this, &MainWindow::AddThread); connect(this, &MainWindow::SigRemoveThread, this, &MainWindow::RemoveThread); connect(this, &MainWindow::SigThreadOutput, this, &MainWindow::ThreadOutput); + + ReloadExtensions(); + Host::Start( [&](DWORD processId) { emit SigAddProcess(processId); }, [&](DWORD processId) { emit SigRemoveProcess(processId); }, @@ -33,9 +36,7 @@ MainWindow::MainWindow(QWidget *parent) : [&](TextThread* thread) { emit SigRemoveThread(thread); }, [&](TextThread* thread, std::wstring& output) { return ProcessThreadOutput(thread, output); } ); - - ReloadExtensions(); - Host::AddConsoleOutput(L"Textractor beta v3.3.0 by Artikash\r\nSource code and more information available under GPLv3 at https://github.com/Artikash/Textractor"); + Host::AddConsoleOutput(L"Textractor beta v3.3.1 by Artikash\r\nSource code and more information available under GPLv3 at https://github.com/Artikash/Textractor"); } MainWindow::~MainWindow()