2021.4.6 #25

Merged
edraft merged 57 commits from 2021.4.6 into 2021.4.post1 2021-04-11 15:54:38 +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 os
import sys import sys
from typing import Optional from typing import Optional

View File

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

View File

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