Building 1.1.8
This commit is contained in:
parent
0d8be72c71
commit
7263cd1521
@ -23,9 +23,13 @@
|
|||||||
|
|
||||||
<target name="pit-swing" depends="libpit">
|
<target name="pit-swing" depends="libpit">
|
||||||
<copy file="${libpit.jar}" todir="pit-swing/lib"/>
|
<copy file="${libpit.jar}" todir="pit-swing/lib"/>
|
||||||
<ant dir="pit-cli" target="package" inheritAll="false"/>
|
<ant dir="pit-swing" fork="true" target="package" inheritAll="false"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="package" depends="libpit,pit-cli,pit-swing">
|
<target name="package" depends="libpit,pit-cli,pit-swing">
|
||||||
|
<mkdir dir="release/lib"/>
|
||||||
|
<copy file="pit-cli/release/pit-clii-${application.version}.jar" todir="release"/>
|
||||||
|
<copy file="pit-swing/dist/jar/pit-swing.jar" tofile="release/pit-swing-${application.version}.jar"/>
|
||||||
|
<copy file="libpit/release/pit-${application.version}.jar" todir="release/lib"/>
|
||||||
</target>
|
</target>
|
||||||
</project>
|
</project>
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#Wed Feb 24 08:39:48 CST 2010
|
#Thu Feb 25 17:24:06 CST 2010
|
||||||
build.dir=build
|
build.dir=build
|
||||||
src.dir=src
|
src.dir=src
|
||||||
lib.shared.dir=../shared-libs
|
lib.shared.dir=../shared-libs
|
||||||
test.dir=test
|
test.dir=test
|
||||||
build.number=10
|
build.number=1
|
||||||
expected.application.version=1.1.6
|
expected.application.version=1.1.8
|
||||||
lib.dir=lib
|
lib.dir=lib
|
||||||
release.dir=release
|
release.dir=release
|
||||||
release.jar=pit-${application.version}.jar
|
release.jar=pit-${application.version}.jar
|
||||||
|
Binary file not shown.
BIN
libpit/release/pit-1.1.8.jar
Normal file
BIN
libpit/release/pit-1.1.8.jar
Normal file
Binary file not shown.
@ -54,8 +54,6 @@ class FileProject extends Project {
|
|||||||
def issueFile = new File(source, FileIssue.makeFilename(id,
|
def issueFile = new File(source, FileIssue.makeFilename(id,
|
||||||
options.category, options.priority))
|
options.category, options.priority))
|
||||||
|
|
||||||
assert !issueFile.exists()
|
|
||||||
|
|
||||||
issueFile.createNewFile()
|
issueFile.createNewFile()
|
||||||
issueFile.write(options.text)
|
issueFile.write(options.text)
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
BIN
pit-cli/lib/pit-1.1.8.jar
Normal file
BIN
pit-cli/lib/pit-1.1.8.jar
Normal file
Binary file not shown.
@ -1,9 +1,9 @@
|
|||||||
#Wed Feb 24 08:40:12 CST 2010
|
#Thu Feb 25 17:41:36 CST 2010
|
||||||
build.dir=build
|
build.dir=build
|
||||||
src.dir=src
|
src.dir=src
|
||||||
build.jar=pit-cli-${application.version}.${build.number}.jar
|
build.jar=pit-cli-${application.version}.${build.number}.jar
|
||||||
build.number=1
|
build.number=1
|
||||||
expected.application.version=1.1.6
|
expected.application.version=1.1.8
|
||||||
lib.dir=lib
|
lib.dir=lib
|
||||||
release.dir=release
|
release.dir=release
|
||||||
release.jar=pit-cli-${application.version}.jar
|
release.jar=pit-cli-${application.version}.jar
|
||||||
|
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
#Sat Feb 13 08:41:16 CST 2010
|
#Sat Feb 13 08:41:16 CST 2010
|
||||||
app.version=1.1.6
|
app.version=1.1.8
|
||||||
app.griffon.version=0.2.1
|
app.griffon.version=0.2.1
|
||||||
app.name=pit-swing
|
app.name=pit-swing
|
||||||
|
BIN
pit-swing/griffon-app/resources/icon16x16.png
Normal file
BIN
pit-swing/griffon-app/resources/icon16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 306 B |
BIN
pit-swing/griffon-app/resources/icon32x32.png
Normal file
BIN
pit-swing/griffon-app/resources/icon32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 411 B |
BIN
pit-swing/griffon-app/resources/icon64x64.png
Normal file
BIN
pit-swing/griffon-app/resources/icon64x64.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 822 B |
@ -37,6 +37,7 @@ categoryIcons = [:]
|
|||||||
filter = new Filter(categories: [])
|
filter = new Filter(categories: [])
|
||||||
|
|
||||||
popupProject = null
|
popupProject = null
|
||||||
|
selectedProject = model.rootProject
|
||||||
|
|
||||||
popupIssue = null
|
popupIssue = null
|
||||||
|
|
||||||
@ -125,14 +126,12 @@ newIssueDialog = dialog(title: 'New Task...', modal: true, pack: true,//size: [3
|
|||||||
constraints: gbc(gridx: 1, gridy: 4, insets: [5, 5, 5, 5],
|
constraints: gbc(gridx: 1, gridy: 4, insets: [5, 5, 5, 5],
|
||||||
anchor: GBC.WEST),
|
anchor: GBC.WEST),
|
||||||
actionPerformed: {
|
actionPerformed: {
|
||||||
def project = projectTree.leadSelectionPath
|
def issue = selectedProject.createNewIssue(
|
||||||
.lastPathComponent.userObject
|
|
||||||
def issue = project.createNewIssue(
|
|
||||||
category: categoryComboBox.selectedItem,
|
category: categoryComboBox.selectedItem,
|
||||||
priority: prioritySpinner.value,
|
priority: prioritySpinner.value,
|
||||||
text: titleTextField.text)
|
text: titleTextField.text)
|
||||||
projectListModels[(project.name)] = null
|
projectListModels[(selectedProject.name)] = null
|
||||||
displayProject(project)
|
displayProject(selectedProject)
|
||||||
newIssueDialog.visible = false
|
newIssueDialog.visible = false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -166,8 +165,9 @@ issuePopupMenu = popupMenu() {
|
|||||||
menuItem('Delete Issue',
|
menuItem('Delete Issue',
|
||||||
actionPerformed: {
|
actionPerformed: {
|
||||||
if (!popupIssue) return
|
if (!popupIssue) return
|
||||||
|
selectedProject.issues.remove(popupIssue.id)
|
||||||
|
projectListModels[(selectedProject.name)].removeElement(popupIssue)
|
||||||
popupIssue.delete()
|
popupIssue.delete()
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
separator()
|
separator()
|
||||||
@ -207,10 +207,10 @@ frame = application(title:'Personal Issue Tracker',
|
|||||||
//size:[320,480],
|
//size:[320,480],
|
||||||
pack:true,
|
pack:true,
|
||||||
//location:[50,50],
|
//location:[50,50],
|
||||||
iconImage: imageIcon('/griffon-icon-48x48.png').image,
|
iconImage: imageIcon('/icon64x64.png').image,
|
||||||
iconImages: [imageIcon('/griffon-icon-48x48.png').image,
|
iconImages: [imageIcon('/icon64x64.png').image,
|
||||||
imageIcon('/griffon-icon-32x32.png').image,
|
imageIcon('/icon32x32.png').image,
|
||||||
imageIcon('/griffon-icon-16x16.png').image]
|
imageIcon('/icon16x16.png').image]
|
||||||
) {
|
) {
|
||||||
|
|
||||||
borderLayout()
|
borderLayout()
|
||||||
@ -244,8 +244,7 @@ frame = application(title:'Personal Issue Tracker',
|
|||||||
evt.source.selected = true
|
evt.source.selected = true
|
||||||
}
|
}
|
||||||
projectListModels.clear()
|
projectListModels.clear()
|
||||||
displayProject(projectTree.leadSelectionPath
|
displayProject(selectedProject)
|
||||||
?.lastPathComponent?.userObject)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -270,8 +269,8 @@ frame = application(title:'Personal Issue Tracker',
|
|||||||
} else new DefaultTreeModel()
|
} else new DefaultTreeModel()
|
||||||
}),
|
}),
|
||||||
valueChanged: { evt ->
|
valueChanged: { evt ->
|
||||||
displayProject(evt?.newLeadSelectionPath
|
selectedProject = evt?.newLeadSelectionPath?.lastPathComponent?.userObject ?: model.rootProject
|
||||||
?.lastPathComponent?.userObject)
|
displayProject(selectedProject)
|
||||||
},
|
},
|
||||||
mouseClicked: { evt ->
|
mouseClicked: { evt ->
|
||||||
if (evt.button == MouseEvent.BUTTON3) {
|
if (evt.button == MouseEvent.BUTTON3) {
|
||||||
|
Binary file not shown.
BIN
pit-swing/lib/pit-1.1.8.jar
Normal file
BIN
pit-swing/lib/pit-1.1.8.jar
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
application.version=1.1.6
|
application.version=1.1.8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user