Changelog for ack 1.63_01 [THINGS THAT MAY BREAK FOR YOU] The changes I made to detect if ack is outputting to the screen may break some automated build tools. If so, please contact me. That's why this is a dev release. [FIXES] Colorized output to the screen is now the default, correctly. I got rid of the is_interactive() I took from IO::Interactive and just checked for C<-t *STDOUT>, because that's what we're really checking for: Is the output going to the screen? 1.62 Mon May 21 15:22:19 CDT 2007 [THINGS THAT MAY BREAK FOR YOU] The extensions .tt and .ttml are no longer part of the --perl type. They are now only in the --tt type. [FIXES] RT #26953: Util.pm was in the wrong directory, but only the Perl from Darwinports complained, because apparently most other Perl installs have "." in @INC. RT #25391: Fixed test failures under Win32. Spelled Slaven Rezić's name properly. Look, my first utf-8 string! [ENHANCEMENTS] Added .properties extension for --java. Added -L as a negation to -l. This is equivalent to -l -v. Added more GNU-style long opts. Thanks to Ævar Arnfjörð Bjarmason, my second utf-8 string. 1.60 Fri Mar 9 22:34:15 CST 2007 [FIXES] ack should behave better when running under a shell now. [ENHANCEMENTS] ack now recognizes makefiles and Visual Basic files. Added new extensions for Mason per http://masonhq.com/?FAQ:ServerConfiguration#h-what_filename_extensions_should_i_use_for_mason_components_ Thanks, Elias Lutfallah. Added .rxml to --ruby. Thanks, Ian Langworth. Added .php3, .php4 and .php5 to --php5. Added --jsp extensions. Thanks, Stephen Steneker. Teeny speed optimizations on some regexes. Changed App::Ack::should_ignore to ::is_searchable() (and reversed the meaning). Added error checking on file closes. Improved how it knows if it's running interactive by stealing is_interactive() from IO::Interactive. [DOCUMENTATION] Added example of using with vim. Thanks, Mark Stosberg. 1.58 Thu Jan 18 22:46:36 CST 2007 [THINGS THAT MAY BREAK FOR YOU] The PHP list of extensions no longer includes .htm and .html. [FIXES] Directories with a file named "0" would stop ack's searching. [ENHANCEMENTS] Added a --tcl flag. Thanks, Matt Diephouse. 1.56 Wed Jan 17 12:55:38 CST 2007 [FIXES] Now correctly handles filetypes of files with multiple periods. [ENHANCEMENTS] Added .xs to the list of --cc files. Warning messages now include the name "ack" at the beginning of them. Now skips .git directories. 1.54 Sun Jan 7 22:34:57 CST 2007 [THINGS THAT MAY BREAK FOR YOU] ack no longer follows symlinks by default, except for starting points specified on the command line. [ENHANCEMENTS] Added the --follow/--nofollow switches for following symlinks. Added .sty and .cls to the --tex files. Thanks, Uwe Voelker. [FIXES] t/filetypes.t would fail sometimes based on hash order. 1.52 Fri Dec 22 00:41:45 CST 2006 [FIXES] In 1.51_01, I changed how we check the -B of a file, but it's not reliable. Perl's -B operator acts differently if you call -B $filename vs. -B $fh. [ENHANCEMENTS] I changed some internal code to figure out a file's extension. By using my own, instead of File::Basename, I cut out over 50% of the run time on my test of acking through a large tree. When using -a, it's not necessary to determine the filetype before searching, only if we should ignore the file or not. This cut out an additional 10% or so of execution time when doing -a searces. [INTERNALS] We no longer need to build a list of all used suffixes. This makes startup quicker. 1.51_01 Mon Dec 18 12:59:28 CST 2006 Development version. I'm putting this out so hardcore ack users can test out some new features. [FIXES] Tests now pass under Windows. [FEATURES] You can now set the colors for display with the ACK_COLOR_MATCH and ACK_COLOR_FILENAME environment variables. [ENHANCEMENTS] ack-standalone now builds with a shebang line of "#!/usr/bin/env perl", which is more compatible. Of course, you're welcome to change it to whatever you like. I now check for binaryness on the already-open file, rather than reopening it from the filesystem. This gave me about a 1% speedup in my tests. Started adding sanity checks to the options. For instance, it doesn't make sense to use -l and -C together, so ack will complain about that. Added a --sort-files option. [INTERNALS] More testing on XML and PHP detection courtesy Bill Ricker. Lots of refactoring of search() in preparation for showing context around matches.