Skip to content

Commit 7dce1f1

Browse files
committed
Release v.0.9.34
1 parent 0cd6727 commit 7dce1f1

24 files changed

+1391
-932
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin/
2+
.mylyn/
3+
.metadata/

README.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@ Build
2525
2. To build, either import and build from Eclipse IDE (Eclipse project files included) or use Apache Ant to run included build.xml configuration.
2626
3. Alternatively, import source code into your favorite Java IDE and build from there.
2727

28-
Samples
28+
Documentation
2929
----
30+
Find documentation of this library at [TET Java Doc](http://eyetribe.github.io/tet-java-client).
3031

31-
There are currently no samples available for the Java SDK, but they will be added as they become available. For now, consult our [C# samples on GitHub](https://github.com/eyetribe) for inspiration as the C# SDK reference implementation is very similar to Java.
32-
33-
Tutorials
32+
Samples
3433
----
3534

36-
A simple guide to using this Java SDK is found in the [tutorials section](http://dev.theeyetribe.com/java/) of our developer website. More tutorials will be provided in the near future.
35+
There are currently no samples available for the Java SDK, but they will be added as they become available. For now, consult our [C# samples on GitHub](https://github.com/eyetribe) for inspiration as the C# reference implementation is very similar to Java.
3736

3837

3938
API Reference
@@ -45,16 +44,25 @@ The complete API specification used by the Java SDK to communicate with the serv
4544
Changelog
4645
----
4746

47+
0.9.34 (2014-05-09)
48+
49+
- Improved documentation
50+
- Fixed bug related to initialization lock
51+
- Fixed bug related to broadcasting calibration updates
52+
4853
0.9.33 (2014-04-15)
49-
- Added support for listening to EyeTribe Server conneciton state (IConnectionStateListener)
50-
- Minor API timestamp change
51-
- Minor refactoring and formatting
52-
- Generel bug fixing and optimization
54+
55+
- Added support for listening to EyeTribe Server conneciton state (IConnectionStateListener)
56+
- Minor API timestamp change
57+
- Minor refactoring and formatting
58+
- Generel bug fixing and optimization
5359

5460
0.9.27 (2014-02-12)
55-
- Fixed tab/space formatting
56-
- New methods to GazeUtils
57-
- Minor internal refactoring
61+
62+
- Fixed tab/space formatting
63+
- New methods to GazeUtils
64+
- Minor internal refactoring
5865

5966
0.9.26 (2014-01-30)
60-
- Initial release
67+
68+
- Initial release

build.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<unzip dest="bin">
3232
<fileset dir="${basedir}/libs" includes="gson-2.2.4.jar" />
3333
</unzip>
34-
<jar destfile="${ant.project.name}.jar" basedir="bin"/>
34+
<jar destfile="${ant.project.name}.jar" basedir="bin" />
3535
</target>
3636
<target name="build-subprojects" />
3737
<target depends="init" name="build-project">
@@ -85,4 +85,24 @@
8585
<report format="frames" todir="${junit.output.dir}" />
8686
</junitreport>
8787
</target>
88+
89+
<target name="generate-javadoc">
90+
<javadoc
91+
destdir="doc"
92+
author="true"
93+
version="true"
94+
use="true"
95+
windowtitle="TET Java SDK"
96+
>
97+
<classpath refid="TETJavaClient.classpath" />
98+
<fileset dir="src" defaultexcludes="yes">
99+
<include name="com/theeyetribe/client/**" />
100+
<exclude name="com/theeyetribe/client/Protocol.java"/>
101+
<exclude name="com/theeyetribe/client/GazeApiManager.java" />
102+
<exclude name="com/theeyetribe/client/reply/**" />
103+
<exclude name="com/theeyetribe/client/request/**" />
104+
</fileset>
105+
</javadoc>
106+
</target>
107+
88108
</project>

0 commit comments

Comments
 (0)