Release 2.1.0

libpit:
* hidden directories are ignored

pit-swing:
* added new/delete project/issue buttons
* added word wrap
* changed default issue status to NEW
This commit is contained in:
Jonathan Bernard
2010-02-27 03:06:35 -06:00
parent 3208be8e04
commit 85bd269c55
22 changed files with 154 additions and 71 deletions

View File

@ -17,7 +17,8 @@ class FileProject extends Project {
// add sub projects
if (child.isDirectory()) {
if ( child.name ==~ /\d+/) return // just an issue folder
if (child.name ==~ /\d+/ ||
child.isHidden()) return // just an issue folder
// otherwise build and add to list
projects[(child.name)] = new FileProject(child)