Memory extensions, UI updates

Auto memory extensions for main and solutions areas
UI updates, error toasts, progress bar
This commit is contained in:
frdel 2024-09-26 17:11:48 +02:00
parent 0992d52768
commit d233e0c94f
41 changed files with 1132 additions and 933 deletions

15
.gitignore vendored
View file

@ -26,7 +26,16 @@ tmp/*
# But do not ignore the directory itself
!tmp/.gitkeep
# Ignore all contents of the directory "knowledge"
# Ignore everything in the "knowledge" directory
knowledge/*
# But do not ignore the directory itself
!knowledge/.gitkeep
# Do not ignore subdirectories (so we can track .gitkeep)
!knowledge/*/
# Ignore all files within subdirectories (except .gitkeep)
knowledge/**/*.*
!knowledge/**/.gitkeep
# Explicitly allow the default folder and its contents
!knowledge/default/
!knowledge/default/**