From 14fc674d721ed698974a009d125e49e48814edde Mon Sep 17 00:00:00 2001 From: Tannin Date: Wed, 6 Nov 2013 18:35:27 +0100 Subject: [PATCH] - diagnosis plugins can now request to be re-evaluated - main application now contains means for plugins to react on some changes (to be extended) - plugins can now retrieve more information about a mod - user-agent sent to nexus now automatically contains the current MO version - included updated russian translation - problems dialog now refreshes itself after a fix was applied - fixed new esp/asset ordering diagnosis. May be fully functional now - bugfix: restoring locked load order could leave MO in an endless loop (not sure if this fix is correct yet) - bugfix: plugin list was not visually updated after some changes - bugfix: nmm importer threw away mod ordering --- src/proxy/proxyPython.pro | 2 +- src/runner/pythonRunner.pro | 2 ++ src/runner/pythonrunner_global.h | 12 ------------ 3 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 src/runner/pythonrunner_global.h diff --git a/src/proxy/proxyPython.pro b/src/proxy/proxyPython.pro index 74551f4..d05ed71 100644 --- a/src/proxy/proxyPython.pro +++ b/src/proxy/proxyPython.pro @@ -35,7 +35,7 @@ RC_FILE += \ include(../plugin_template.pri) -INCLUDEPATH += "../../pythonRunner" +INCLUDEPATH += "../../pythonRunner" "$(BOOSTPATH)" WINPWD = $$PWD WINPWD ~= s,/,$$QMAKE_DIR_SEP,g diff --git a/src/runner/pythonRunner.pro b/src/runner/pythonRunner.pro index 2074093..8a64c7d 100644 --- a/src/runner/pythonRunner.pro +++ b/src/runner/pythonRunner.pro @@ -31,6 +31,8 @@ CONFIG(debug, debug|release) { LIBS += -L$$OUT_PWD/../uibase/debug } else { LIBS += -L$$OUT_PWD/../uibase/release + QMAKE_CXXFLAGS += /Zi + QMAKE_LFLAGS += /DEBUG } diff --git a/src/runner/pythonrunner_global.h b/src/runner/pythonrunner_global.h deleted file mode 100644 index 4f6b292..0000000 --- a/src/runner/pythonrunner_global.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef PYTHONRUNNER_GLOBAL_H -#define PYTHONRUNNER_GLOBAL_H - -#include - -#if defined(PYTHONRUNNER_LIBRARY) -# define PYTHONRUNNERSHARED_EXPORT Q_DECL_EXPORT -#else -# define PYTHONRUNNERSHARED_EXPORT Q_DECL_IMPORT -#endif - -#endif // PYTHONRUNNER_GLOBAL_H