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:
@ -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.
BIN
libpit/release/pit-2.1.0.jar
Normal file
BIN
libpit/release/pit-2.1.0.jar
Normal file
Binary file not shown.
@ -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)
|
||||
|
Reference in New Issue
Block a user