ui: remove "beta" notice for Python support

This commit is contained in:
mlangkabel
2021-02-17 07:30:30 +01:00
parent be68740839
commit 9a13c194df
@@ -24,9 +24,10 @@ void QtProjectWizardContentSelect::populate(QGridLayout* layout, int& row)
{
std::string pythonIndexerVersion = " ";
{
std::string str = utility::executeProcess(
std::string str =
utility::executeProcess(
ResourcePaths::getPythonPath().wstr().append(L"SourcetrailPythonIndexer"),
std::vector<std::wstring>{L"--version"},
std::vector<std::wstring> {L"--version"},
FilePath(),
5000)
.second;
@@ -124,17 +125,9 @@ void QtProjectWizardContentSelect::populate(QGridLayout* layout, int& row)
m_sourceGroupTypeDescriptions[SOURCE_GROUP_PYTHON_EMPTY] =
"<p>Create a new Source Group by defining which Python files will be indexed. This Source "
"Group type uses the "
"<a "
"href=\"https://github.com/CoatiSoftware/"
"<a href=\"https://github.com/CoatiSoftware/"
"SourcetrailPythonIndexer\">SourcetrailPythonIndexer</a> " +
pythonIndexerVersion +
"in the "
"background.</p>"
"<p><b>Note</b>: Python support is still in its <b>beta</b> phase. If you want to update "
"the version of the SourcetrailPythonIndexer which is used "
"by Sourcetrail, download the latest release package for your operating system from the "
"linked repository and completely replace the contents of your "
"\"Sourcetrail/data/python\" folder with the contents of the downloaded package.</p>";
pythonIndexerVersion + "in the background.</p>";
#endif // BUILD_PYTHON_LANGUAGE_PACKAGE
m_sourceGroupTypeDescriptions[SOURCE_GROUP_CUSTOM_COMMAND] =
"Create a new Source Group executing a custom command on each source file. "