You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"BackgroundType": {
"type": "string",
"description": "The type of background to use for the browser window. mica or acrylic.",
"enum": ["mica", "acrylic"]
Rule prefixes: a prefix is expected, "no prefix" is not valid. However, according to docs, a prefix may be omitted to imply "string".
"Rules": {
"type": "array",
"items": {
"type": "string",
"description": "The URL pattern prefixed with s$, g$, r$ or d$, followed by the pattern to match. s$ = simple string, g$ = glob, r$ = regex, d$ = domain.",
"pattern": "^(s\\$|g\\$|r\\$|d\\$).*"
}
Yeah, These 2 cases are the only inconsistencies as far as I know. I just left them as it is earlier before having the Settings UI to decide whether it should as it in the schema or as it in the code.
s$your_rule or your_rule
Both should be valid, so the schema's regex should be updated
missing "none"
none currently doesn't work in the UI anyway, but want to support it in the future. we can leave the this as it is
Compare https://raw.githubusercontent.com/U-C-S/Hurl/main/Utils/UserSettings.schema.json
What I found:
Background type (enum) missing
"none""solid"Rule prefixes: a prefix is expected, "no prefix" is not valid. However, according to docs, a prefix may be omitted to imply "string".
s$__your_rule__
or__your_rule__
Window minwidth and minheight
According to the docs, default size is 420×210. MainWindow properties are defined as:
The text was updated successfully, but these errors were encountered: