kintesh / containerise

Firefox extension to automatically open websites in a container
MIT License
411 stars 55 forks source link

Introduce truly case-sensitive matching #125

Closed LoveIsGrief closed 4 years ago

LoveIsGrief commented 4 years ago

User input used to be lowercased. That led to #120 where URLs with uppercase letters couldn't be matched by regexes.

This PR introduces the caseSensitiveMatch option and aligns the input and URL to match.

caseSensitiveMatch = true --> user input isn't lowercased

caseSensitiveMatch = false --> user input and url is lowercased

Resolves #120