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
Ability to select image providers both globally and per user configuration.
Markdown support.
Info button for each field.
ConsoleGrid support (not dead, huh?).
App list instant filter field.
Multi-language support.
Proper node-glob patterns support for glob and glob-regex parsers:
* Matches 0 or more characters in a single path portion.
? Matches 1 character.
[...] Matches a range of characters, similar to a RegExp range. If the first character of the range is ! or ^ then it matches any character not in the range.
!(pattern|pattern|pattern) Matches anything that does not match any of the patterns provided.
?(pattern|pattern|pattern) Matches zero or one occurrence of the patterns provided.
+(pattern|pattern|pattern) Matches one or more occurrences of the patterns provided.
*(a|b|c) Matches zero or more occurrences of the patterns provided.
@(pattern|pat*|pat?erN) Matches exactly one of the patterns provided
** If a "globstar" is alone in a path portion, then it matches zero or more directories and subdirectories searching for matches. It does not crawl symlinked directories.
Changed
ng-select now supports multi-select.
Invalid configurations can now be saved.
Each image provider now runs in their own instance of web worker.
Fuzzy matcher was split into 3 parts: loader, matcher and service.
Code font from "Monaco" to "Hack".
Instruction were rewritten in markdown.
Parser form no longer uses Angular's form module. A new "recursive" module is now used to create parser form.