NEW: Preference for including `Library` folders from search results. Off by default.
NEW: Support for two new standard XPath functions: string-join() and tokenize().
FIX: The "Exclude files matching" list now works correctly.
Pathological 1.0.3 - January 21, 2015
FIX: Commenting single lines via ⌘-/ works as expected.
FIX: Home folder nodes (~) now have the correct node type of folder().
Pathological 1.0.2 - January 20, 2015
FIX: Fixed crasher that could occur when passing a non-filesystem-item object to bytes(), kilobytes(), megabytes(), or gigabytes().
Pathological 1.0.1 - July 29, 2014
Improved application stability.
Pathological 1.0 - July 23, 2014
NEW: General Preference pane offers the ability to place the results list either below or beside the query editor text area. This is useful for long queries which need more editor space.
NEW: A Language feature from XQuery 3.0: Switch expressions:
switch ($n)
case 1
return 'one'
case 2
return 'two'
case 3
case 4
return 'three or four'
default
return 'unknown'
Pathological 0.9.13 - July 22, 2014
NEW: head() and tail() functions to return the first or non-first items in a sequence.
NEW: format-kilobytes(), format-megabytes() and format-gigabytes() functions to conveniently format large byte counts (format-bytes() already exists).