- Introduced integration tests for SteamCache to validate caching behavior with real Steam URLs. - Implemented a ServiceManager to manage service configurations, allowing for dynamic detection of services based on User-Agent. - Updated cache key generation to include service prefixes, enhancing cache organization and retrieval. - Enhanced the caching logic to support multiple services, starting with Steam and Epic Games. - Improved .gitignore to exclude test cache files while retaining necessary structure.
15 lines
169 B
Plaintext
15 lines
169 B
Plaintext
#build artifacts
|
|
/dist/
|
|
|
|
#disk cache
|
|
/disk/
|
|
|
|
#config file
|
|
/config.yaml
|
|
|
|
#windows executables
|
|
*.exe
|
|
|
|
#test cache
|
|
/steamcache/test_cache/*
|
|
!/steamcache/test_cache/.gitkeep |