Compare commits
2 Commits
v0.0.3-a8b
...
v0.0.5
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ea1bd22b0 | |||
| f303872bf5 |
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
.DS_Store
|
||||||
|
._*
|
||||||
|
bin
|
||||||
|
AudiobookRecorder.jar
|
||||||
|
AudiobookRecorder.dmg
|
||||||
|
AudiobookRecorder.exe
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "universalJavaApplicationStub"]
|
||||||
|
path = universalJavaApplicationStub
|
||||||
|
url = ./universalJavaApplicationStub
|
||||||
1
TODO.md
1
TODO.md
@@ -5,3 +5,4 @@ ToDo
|
|||||||
* Identify and export 5 minute retail sample
|
* Identify and export 5 minute retail sample
|
||||||
* Identify and export 15 minute checkpoint
|
* Identify and export 15 minute checkpoint
|
||||||
* Archive (Zip and delete) audiobooks
|
* Archive (Zip and delete) audiobooks
|
||||||
|
* File path browser buttons in options
|
||||||
|
|||||||
BIN
ant-libs/jarbundler-2.3.2.jar
Normal file
BIN
ant-libs/jarbundler-2.3.2.jar
Normal file
Binary file not shown.
44
build.xml
44
build.xml
@@ -1,6 +1,8 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<project name="Audiobook Recorder" default="build">
|
<project name="Audiobook Recorder" default="build">
|
||||||
|
|
||||||
|
<taskdef name="jarbundler" classname="com.ultramixer.jarbundler.JarBundler" classpath="ant-libs/jarbundler-2.3.2.jar" />
|
||||||
|
|
||||||
<target name="clean" description="Clean out the build directories">
|
<target name="clean" description="Clean out the build directories">
|
||||||
<delete dir="bin" />
|
<delete dir="bin" />
|
||||||
<delete file="AudiobookRecorder.jar" />
|
<delete file="AudiobookRecorder.jar" />
|
||||||
@@ -43,4 +45,46 @@
|
|||||||
<chmod perm="0755" file="uecide.jar" />
|
<chmod perm="0755" file="uecide.jar" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="release" depends="macapp">
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="macapp" depends="build">
|
||||||
|
|
||||||
|
<mkdir dir="tmp"/>
|
||||||
|
|
||||||
|
<jarbundler
|
||||||
|
name="AudiobookRecorder"
|
||||||
|
shortname="AudiobookRecorder"
|
||||||
|
icon="dist/macosx/audiobookrecorder.icns"
|
||||||
|
stubfile="universalJavaApplicationStub/src/universalJavaApplicationStub"
|
||||||
|
dir="tmp"
|
||||||
|
jar="AudiobookRecorder.jar"
|
||||||
|
mainclass="uk.co.majenko.audiobookrecorder.AudiobookRecorder"
|
||||||
|
jvmversion="1.7+"
|
||||||
|
>
|
||||||
|
</jarbundler>
|
||||||
|
|
||||||
|
<symlink link="tmp/Applications" resource="/Applications" overwrite="true" />
|
||||||
|
|
||||||
|
<!--copy file="dist/macosx/dmg.icns" tofile="tmp/.VolumeIcon.icns" /-->
|
||||||
|
|
||||||
|
<exec executable="genisoimage">
|
||||||
|
<arg value="-D" />
|
||||||
|
<arg value="-V" />
|
||||||
|
<arg value="AudiobookRecorder" />
|
||||||
|
<arg value="-no-pad" />
|
||||||
|
<arg value="-r" />
|
||||||
|
<arg value="-apple" />
|
||||||
|
<arg value="-o" />
|
||||||
|
<arg value="AudiobookRecorder.dmg" />
|
||||||
|
<arg value="-dir-mode" />
|
||||||
|
<arg value="0755" />
|
||||||
|
<arg value="-file-mode" />
|
||||||
|
<arg value="0755" />
|
||||||
|
<arg value="tmp" />
|
||||||
|
</exec>
|
||||||
|
|
||||||
|
<delete dir="tmp" />
|
||||||
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
BIN
dist/macosx/audiobookrecorder.icns
vendored
Normal file
BIN
dist/macosx/audiobookrecorder.icns
vendored
Normal file
Binary file not shown.
BIN
dist/macosx/dmg.icns
vendored
Normal file
BIN
dist/macosx/dmg.icns
vendored
Normal file
Binary file not shown.
BIN
resources/uk/co/majenko/audiobookrecorder/icons/dmgIcon.png
Normal file
BIN
resources/uk/co/majenko/audiobookrecorder/icons/dmgIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
1
universalJavaApplicationStub
Submodule
1
universalJavaApplicationStub
Submodule
Submodule universalJavaApplicationStub added at ebe2dbaf92
Reference in New Issue
Block a user