Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions src/proxy/proxypython.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ QString ProxyPython::description() const

VersionInfo ProxyPython::version() const
{
return VersionInfo(2, 3, 0, VersionInfo::RELEASE_FINAL);
return VersionInfo(3, 0, 0, VersionInfo::RELEASE_FINAL);
}

QList<PluginSetting> ProxyPython::settings() const
Expand Down Expand Up @@ -257,15 +257,14 @@ QString ProxyPython::fullDescription(unsigned int key) const
{
switch (static_cast<FailureType>(key)) {
case FailureType::SEMICOLON:
return tr("The path to Mod Organizer (%1) contains a semicolon. <br>"
"While this is legal on NTFS drives, many softwares do not handle it "
"correctly.<br>"
return tr("The path to Mod Organizer (%1) contains a semicolon.<br>"
"While this is legal on NTFS drives, many applications do not "
"handle it correctly.<br>"
"Unfortunately MO depends on libraries that seem to fall into that "
"group.<br>"
"As a result the python plugin cannot be loaded, and the only "
"solution we can"
"offer is to remove the semicolon or move MO to a path without a "
"semicolon.")
"solution we can offer is to remove the semicolon or move MO to a "
"path without a semicolon.")
.arg(QCoreApplication::applicationDirPath());
case FailureType::DLL_NOT_FOUND:
return tr("The Python plugin DLL was not found, maybe your antivirus deleted "
Expand Down