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:
@ -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