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

@ -1,10 +1,10 @@
#Fri Feb 26 11:43:12 CST 2010
#Fri Feb 26 23:58:36 CST 2010
build.dir=build
src.dir=src
lib.shared.dir=../shared-libs
test.dir=test
build.number=2
expected.application.version=2.0.1
expected.application.version=2.1.0
lib.dir=lib
release.dir=release
release.jar=pit-${application.version}.jar

Binary file not shown.

Binary file not shown.

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)