Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 77 additions & 28 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,34 +1,83 @@
.idea/
.DS_Store
output/
/dist/

# Binaries for programs and plugins
*.exe
*.exe~
```
# Compiled and build artifacts
*.pyc
__pycache__/
*.o
*.obj
*.so
*.dll
*.exe
*.class
*.out
*.a

# Dependencies
node_modules/
venv/
.venv/
.env
.env.local
*.env.*

# Build directories
dist/
build/
target/
.gradle/

# Python specific
*.pyc
__pycache__/
*.pyo
*.pyd
.Python
*.so
*.dylib
*.db
*.bin
.Python
*.egg-info/
.eggs/
.mypy_cache/
.pytest_cache/
.coverage
coverage/
htmlcov/

# Test binary, built with `go test -c`
*.test
# Logs and temp files
*.log
*.tmp
*.swp
*.swo

# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Editors
.vscode/
.idea/
*.swp
*.swo

# Dependency directories (remove the comment below to include it)
# vendor/
/bin/*
*.json
/build
/data/
/tmp/
/log/
/lang/
/daemon/
/public/dist/*
/!public/dist/README.md
# System files
.DS_Store
Thumbs.db

.VSCodeCounter
# Compressed files
*.zip
*.gz
*.tar
*.tgz
*.bz2
*.xz
*.7z
*.rar
*.zst
*.lz4
*.lzh
*.cab
*.arj
*.rpm
*.deb
*.Z
*.lz
*.lzo
*.tar.gz
*.tar.bz2
*.tar.xz
*.tar.zst
```
2 changes: 1 addition & 1 deletion internal/op/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func getMainItems(config driver.Config) []driver.Item {
Name: "webdav_policy",
Type: conf.TypeSelect,
Options: "302_redirect,use_proxy_url,native_proxy",
Default: "302_redirect",
Default: "native_proxy",
Required: true,
},
}...)
Expand Down
Loading