diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-11-11 14:10:45 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-11-11 14:17:33 -0700 |
commit | 5909af9878d67f2900c92e8d1dd3eec7a53a840a (patch) | |
tree | 4dece48e1efaf00f692cf78e453265279fcc7f39 /launcher/modplatform | |
parent | 64576f4c4c6c41ba4528a00a38242955079f52ec (diff) | |
download | PrismLauncher-5909af9878d67f2900c92e8d1dd3eec7a53a840a.tar.gz PrismLauncher-5909af9878d67f2900c92e8d1dd3eec7a53a840a.tar.bz2 PrismLauncher-5909af9878d67f2900c92e8d1dd3eec7a53a840a.zip |
drag&drop + add folder to watch
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher/modplatform')
-rw-r--r-- | launcher/modplatform/flame/FlameInstanceCreationTask.cpp | 8 | ||||
-rw-r--r-- | launcher/modplatform/modpacksch/FTBPackInstallTask.cpp | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/launcher/modplatform/flame/FlameInstanceCreationTask.cpp b/launcher/modplatform/flame/FlameInstanceCreationTask.cpp index f0fbdc96..eff729eb 100644 --- a/launcher/modplatform/flame/FlameInstanceCreationTask.cpp +++ b/launcher/modplatform/flame/FlameInstanceCreationTask.cpp @@ -393,8 +393,12 @@ void FlameCreationTask::idResolverSucceeded(QEventLoop& loop) qWarning() << "Blocked mods found, displaying mod list"; auto message_dialog = new BlockedModsDialog(m_parent, tr("Blocked mods found"), - tr("The following mods were blocked on third party launchers.<br/>" - "You will need to manually download them and add them to the modpack"), + tr("The following files are not available for download in third party launchers.<br/>" + "You will need to manually download them and add them to the instance.<br/><br/>" + "Your configured global mods folder and default downloads folder<br/>" + "are automatically checked for the downloaded mods.<br/>" + "Optionally, you may drag and drop the downloaded mods onto this dialog or add a folder to watch<br/>" + "if you did not download the mods to a default location."), blocked_mods); message_dialog->setModal(true); diff --git a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp index 40aee82b..d74faf08 100644 --- a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -212,7 +212,11 @@ void PackInstallTask::onResolveModsSucceeded() auto message_dialog = new BlockedModsDialog(m_parent, tr("Blocked files found"), tr("The following files are not available for download in third party launchers.<br/>" - "You will need to manually download them and add them to the instance."), + "You will need to manually download them and add them to the instance.<br/><br/>" + "Your configured global mods folder and default downloads folder<br/>" + "are automatically checked for the downloaded mods.<br/>" + "Optionally, you may drag and drop the downloaded mods onto this dialog or add a folder to watch<br/>" + "if you did not download the mods to a default location."), m_blocked_mods); if (message_dialog->exec() == QDialog::Accepted) { |