2021.4.post1 #31

Merged
edraft merged 92 commits from 2021.4.post1 into master 2021-05-19 09:00:40 +02:00
3 changed files with 10 additions and 7 deletions
Showing only changes of commit 70ae7dd9e6 - Show all commits

View File

@ -1,4 +1,3 @@
import json
import os
import sys
from typing import Optional

View File

@ -110,9 +110,11 @@ class ConsoleBuilder:
cls._create_file,
workspace_file_path,
{
WorkspaceSettingsNameEnum.default_project.value: project_name,
WorkspaceSettingsNameEnum.projects.value: {
project_name: project_file_path
WorkspaceSettings.__name__: {
WorkspaceSettingsNameEnum.default_project.value: project_name,
WorkspaceSettingsNameEnum.projects.value: {
project_name: project_file_path
}
}
},
text_foreground_color=ForegroundColorEnum.green,

View File

@ -110,9 +110,11 @@ class LibraryBuilder:
cls._create_file,
workspace_file_path,
{
WorkspaceSettingsNameEnum.default_project.value: project_name,
WorkspaceSettingsNameEnum.projects.value: {
project_name: project_file_path
WorkspaceSettings.__name__: {
WorkspaceSettingsNameEnum.default_project.value: project_name,
WorkspaceSettingsNameEnum.projects.value: {
project_name: project_file_path
}
}
},
text_foreground_color=ForegroundColorEnum.green,