Restructures the project for better maintainability and clarity. Adds a ManagerFactory for dependency injection and reorganizes files. Updates event rendering logic to correctly handle overlapping events using a stack link system. The EventRendererStrategy now correctly processes and renders event overlaps, ensuring proper display. Introduces processing tracking to avoid double rendering. Updates documentation to reflect the new structure and build process. Also implements changes to build output and event system for improved clarity. Fixes #123
33 lines
291 B
Text
33 lines
291 B
Text
# Build outputs
|
|
bin/
|
|
obj/
|
|
wwwroot/js/
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# IDE files
|
|
.vs/
|
|
.vscode/settings.json
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Package files
|
|
*.nupkg
|
|
*.snupkg
|
|
|
|
# User-specific files
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
js/
|