mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00

* Re-design the core to deal with multi-client requests * Enhanced Security - Cookie Authorization * Enhanced Security - One-time Token * Enhanced Security - Isolated Window Binding IDs
129 lines
1.1 KiB
Plaintext
129 lines
1.1 KiB
Plaintext
# Build
|
|
build/
|
|
*.exe
|
|
*.ilk
|
|
*.pdb
|
|
*.exp
|
|
*.res
|
|
*.out
|
|
*.def
|
|
|
|
# All sub-level build binaries
|
|
*/**/*
|
|
!*/**/*/
|
|
!*/**/*.*
|
|
!*makefile
|
|
!Makefile
|
|
*/**/*.exe
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Shared objects (inc. Windows DLLs)
|
|
*.dll
|
|
*.so
|
|
*.so.*
|
|
*.dylib
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Logs
|
|
*.log
|
|
*.logs
|
|
*.tlog
|
|
|
|
# IDE
|
|
.vscode/
|
|
.vs/
|
|
|
|
# Visual Studio
|
|
.idea/
|
|
*.recipe
|
|
*.idb
|
|
*.iobj
|
|
*.pdb
|
|
|
|
# Visual Studio for Mac
|
|
.idea/
|
|
|
|
# Visual Studio cache files
|
|
ipch/
|
|
*.dbmdl
|
|
*.dbproj.schemaview
|
|
|
|
# Others
|
|
.builds
|
|
*~*
|
|
*.cache
|
|
*.swp
|
|
*.bak
|
|
*.tmp
|
|
*.swp
|
|
*.userosscache
|
|
*.err
|
|
*.vspscc
|
|
*.vssscc
|
|
*.pidb
|
|
*.svclog
|
|
*.scc
|
|
|
|
# NuGet
|
|
packages/
|
|
!packages/repositories.config
|
|
*.nupkg
|
|
|
|
# Microsoft Azure Build Output
|
|
csx/
|
|
*.build.csdef
|
|
|
|
# User-specific files
|
|
*.suo
|
|
*.user
|
|
*.userprefs
|
|
*.sln.docstates
|
|
|
|
# Python
|
|
__pycache__/
|
|
dist/
|
|
webui2.egg-info/
|
|
|
|
# Rust
|
|
target/
|
|
*.lock
|
|
|
|
# Broken NTFS
|
|
nul
|
|
|
|
# Zig
|
|
zig-cache/
|
|
zig-out/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# User-specific private settings
|
|
*.DotSettings.user
|
|
|
|
# Compressed
|
|
*.zip
|
|
*.gz
|
|
|
|
# CMake
|
|
**/cmake_install.cmake
|
|
**/CMakeCache.txt
|
|
**/CMakeFiles/
|
|
.zig-cache
|