Refactored ProjectManagerSettings, added tests, changed project built successful to be tracked by project path, added project ids, changed project settings path to use project id and name

Signed-off-by: nggieber <52797929+AMZN-nggieber@users.noreply.github.com>
This commit is contained in:
nggieber
2021-12-06 09:22:03 -08:00
parent 6150a60e57
commit 15237af23c
28 changed files with 622 additions and 132 deletions
@@ -56,6 +56,7 @@ namespace O3DE::ProjectManager
{
m_projectInfo.m_displayName = m_projectName->lineEdit()->text();
m_projectInfo.m_path = m_projectPath->lineEdit()->text();
m_projectInfo.m_id = m_projectId->lineEdit()->text();
if (m_userChangedPreview)
{
@@ -70,8 +71,9 @@ namespace O3DE::ProjectManager
m_projectInfo = projectInfo;
m_projectName->lineEdit()->setText(projectInfo.GetProjectDisplayName());
m_projectPath->lineEdit()->setText(projectInfo.m_path);
m_projectId->lineEdit()->setText(projectInfo.m_id);
UpdateProjectPreviewPath();
}