Updated Configuration Files (markdown)

Ryszard Knop 2025-01-27 12:07:44 +01:00
parent aa5cb99a5f
commit cbb123054a

@ -18,8 +18,9 @@ The `config.json` file is a JSON file with the following structure (make sure yo
"filter_files_glob": "game_name_*_mac.dmg", "filter_files_glob": "game_name_*_mac.dmg",
// Filter downloaded files with a Python regex (entire file name must match, unmatched files are skipped) // Filter downloaded files with a Python regex (entire file name must match, unmatched files are skipped)
// This is a JSON string - use a double backslash to produce a single backslash in your pattern!
// Use https://regex101.com/ -> Python flavor to test your patterns first // Use https://regex101.com/ -> Python flavor to test your patterns first
"filter_files_regex": "dwarf_fortress_[\d_]+_windows\.zip" "filter_files_regex": "dwarf_fortress_[\\d_]+_windows\\.zip"
} }
``` ```