Skip to content

Commit

Permalink
ttorrent point-release 1.1.2
Browse files Browse the repository at this point in the history
Remove old dist JARs from the repository, it's stupid to keep them
around as the code they contain doesn't actually match the version they
represent. Users of ttorrent are to build their own distribution JAR
using the 'ant jar' target (see INSTALL file).

Update git ignore patterns, README and build file for 1.1.2 release.

Signed-off-by: Maxime Petazzoni <[email protected]>
  • Loading branch information
Maxime Petazzoni committed Feb 22, 2012
1 parent 31bdd4c commit f15a540
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
# Author: Maxime Petazzoni <[email protected]>

# Ignore build output
build/*
/build/*
/*.jar

# Ignore Javadoc output
doc/*
/doc/*

# Ignore any eventual Eclipse project files, these don't belong in the
# repository.
.classpath
.project
/.classpath
/.project

# Ignore common editor swap files
*.swp
*.bak
*~
*~
7 changes: 4 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,15 @@ Authors
-------

* Maxime Petazzoni <[email protected]> (Platform Engineer at Turn, Inc)
- Original author and maintainer
- Original author, main developer and maintainer
* David Giffin <[email protected]>
- Contributed parallel hashing and multi-file torrent support
- Contributed parallel hashing and multi-file torrent support.
* Thomas Zink <[email protected]>
- Fixed a piece length computation issue when the total torrent size is an
exact multiple of the piece size.
* Johan Parent <[email protected]>
- Fixed a bug in unfresh peer collection
- Fixed a bug in unfresh peer collection and issues on download completion on
Windows platforms.

Caveats
-------
Expand Down
11 changes: 5 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@
-->

<!-- Ant buildfile for the BitTorrent Java library -->
<project basedir="." default="dist" name="ttorrent">
<project basedir="." default="jar" name="ttorrent">
<property name="build.dir" location="build" />
<property name="dist.dir" location="dist" />
<property name="doc.dir" location="doc" />
<property name="lib.dir" location="lib" />
<property name="src.dir" location="src" />

<!-- Release version. -->
<property name="project.version" value="1.1.1" />
<property name="project.version" value="1.1.2" />

<property name="jar.location"
value="${dist.dir}/${ant.project.name}-${project.version}.jar" />
value="${ant.project.name}-${project.version}.jar" />

<path id="project.classpath">
<pathelement location="${build.dir}" />
Expand All @@ -43,8 +42,8 @@
</target>

<target name="distclean" depends="clean">
<delete file="${jar.location}" />
<delete dir="${doc.dir}" />
<delete file="${jar.location}" />
</target>

<target name="build" depends="init">
Expand All @@ -56,7 +55,7 @@
</javac>
</target>

<target name="dist" depends="build">
<target name="jar" depends="build">
<jar destfile="${jar.location}" basedir="${build.dir}">
<zipgroupfileset dir="${lib.dir}" includes="*.jar" />
<manifest>
Expand Down
Binary file removed dist/ttorrent-1.0.3.jar
Binary file not shown.
Binary file removed dist/ttorrent-1.0.4.jar
Binary file not shown.
Binary file removed dist/ttorrent-1.1.1.jar
Binary file not shown.
Binary file removed dist/ttorrent-1.1.jar
Binary file not shown.

0 comments on commit f15a540

Please sign in to comment.