scratch – Blame information for rev 122

Subversion Repositories:
Rev:
Rev Author Line No. Line
120 office 1 CHANGELOG
2 =========
3  
4 3.3.0
5 -----
6  
7 * added double-star matching to Glob::toRegex()
8  
9 3.0.0
10 -----
11  
12 * removed deprecated classes
13  
14 2.8.0
15 -----
16  
17 * deprecated adapters and related classes
18  
19 2.5.0
20 -----
21 * added support for GLOB_BRACE in the paths passed to Finder::in()
22  
23 2.3.0
24 -----
25  
26 * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
27 * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
28  
29 2.2.0
30 -----
31  
32 * added Finder::path() and Finder::notPath() methods
33 * added finder adapters to improve performance on specific platforms
34 * added support for wildcard characters (glob patterns) in the paths passed
35 to Finder::in()
36  
37 2.1.0
38 -----
39  
40 * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
41 Finder::sortByModifiedTime()
42 * added Countable to Finder
43 * added support for an array of directories as an argument to
44 Finder::exclude()
45 * added searching based on the file content via Finder::contains() and
46 Finder::notContains()
47 * added support for the != operator in the Comparator
48 * [BC BREAK] filter expressions (used for file name and content) are no more
49 considered as regexps but glob patterns when they are enclosed in '*' or '?'