[Karmalib-commits] java README.txt,1.1,1.2 README,1.1,1.2 HISTORY.txt,1.1,1.2 HISTORY,1.1,1.2
Brought to you by:
justinkwaugh
From: <jus...@us...> - 2003-12-26 23:22:10
|
Update of /cvsroot/karmalib/java In directory sc8-pr-cvs1:/tmp/cvs-serv7452 Modified Files: README.txt README HISTORY.txt HISTORY Log Message: updated for 0.9.1 alpha Index: README.txt =================================================================== RCS file: /cvsroot/karmalib/java/README.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README.txt 10 Dec 2003 18:19:45 -0000 1.1 --- README.txt 26 Dec 2003 23:22:07 -0000 1.2 *************** *** 42,47 **** KarmaLib is a software library. It is intended for developer use only, and can not be run as an application by itself. Right now there is minimal documentation, but if you ! check out the source of dev.karma.lib.KarmaClient, there should be enough java docs to ! get you started. -------- --- 42,56 ---- KarmaLib is a software library. It is intended for developer use only, and can not be run as an application by itself. Right now there is minimal documentation, but if you ! check out the dev.karma.lib.BasicKarmaClient and dev.karma.lib.AdvancedKarmaClient ! interfaces, there should be enough java docs to get you started. ! ! Here is a super-basic sequence of steps to get your feet wet: ! ! 1. Instantiate a KarmaTCPConnection object passing in the karma's IP address ! 2. Call KarmaClientFactory.getBasicClient() passing in the KarmaConnection object you ! just created. ! 3. Start calling methods on the BasicKarmaClient object returned by the factory to ! manipulate your karma. ! -------- *************** *** 56,60 **** Read / Write device settings Read / Write device information - Format storage Note: --- 65,68 ---- *************** *** 64,72 **** Writing audio files requires some work to generate the file information needed for the ! device (duration, bitrate, rid etc.). These features will be provided in a future version ! (soon), but are not in the current version. This is an ALPHA release. Lots of things might not work. Please give feedback and report ! bugs at http://sourceforge.net/projects/karmalib/ ------------ --- 72,80 ---- Writing audio files requires some work to generate the file information needed for the ! device (duration, bitrate, rid etc.). Rid and fid generation are provided by the library. ! Others will be in a future version, but are not in the current version. This is an ALPHA release. Lots of things might not work. Please give feedback and report ! bugs at http://karmalib.sourceforge.net/ ------------ Index: README =================================================================== RCS file: /cvsroot/karmalib/java/README,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README 10 Dec 2003 18:19:45 -0000 1.1 --- README 26 Dec 2003 23:22:07 -0000 1.2 *************** *** 42,47 **** KarmaLib is a software library. It is intended for developer use only, and can not be run as an application by itself. Right now there is minimal documentation, but if you ! check out the source of dev.karma.lib.KarmaClient, there should be enough java docs to ! get you started. -------- --- 42,56 ---- KarmaLib is a software library. It is intended for developer use only, and can not be run as an application by itself. Right now there is minimal documentation, but if you ! check out the dev.karma.lib.BasicKarmaClient and dev.karma.lib.AdvancedKarmaClient ! interfaces, there should be enough java docs to get you started. ! ! Here is a super-basic sequence of steps to get your feet wet: ! ! 1. Instantiate a KarmaTCPConnection object passing in the karma's IP address ! 2. Call KarmaClientFactory.getBasicClient() passing in the KarmaConnection object you ! just created. ! 3. Start calling methods on the BasicKarmaClient object returned by the factory to ! manipulate your karma. ! -------- *************** *** 56,60 **** Read / Write device settings Read / Write device information - Format storage Note: --- 65,68 ---- *************** *** 64,72 **** Writing audio files requires some work to generate the file information needed for the ! device (duration, bitrate, rid etc.). These features will be provided in a future version ! (soon), but are not in the current version. This is an ALPHA release. Lots of things might not work. Please give feedback and report ! bugs at http://sourceforge.net/projects/karmalib/ ------------ --- 72,80 ---- Writing audio files requires some work to generate the file information needed for the ! device (duration, bitrate, rid etc.). Rid and fid generation are provided by the library. ! Others will be in a future version, but are not in the current version. This is an ALPHA release. Lots of things might not work. Please give feedback and report ! bugs at http://karmalib.sourceforge.net/ ------------ Index: HISTORY.txt =================================================================== RCS file: /cvsroot/karmalib/java/HISTORY.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HISTORY.txt 10 Dec 2003 18:19:45 -0000 1.1 --- HISTORY.txt 26 Dec 2003 23:22:07 -0000 1.2 *************** *** 1,3 **** --- 1,20 ---- ------------------------ + Version 0.9.1 Alpha + December 26, 2003 + ------------------------ + + Bugfixes: + Fixed bad nio implementation.. uses large buffers now. + Fixed incorrectly named property in dev.karma.lib.FileDetails + + Changes/Additions: + Created basic and advanced interfaces and a client factory. + Created connection interface and moved TCP stuff to an + implementing class. + Moved TCP information out of client class + Added fid and rid calculation utilities in dev.karma.lib.util.FileUtils + + + ------------------------ Version 0.9.0 Alpha December 8, 2003 Index: HISTORY =================================================================== RCS file: /cvsroot/karmalib/java/HISTORY,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HISTORY 10 Dec 2003 18:19:45 -0000 1.1 --- HISTORY 26 Dec 2003 23:22:07 -0000 1.2 *************** *** 1,3 **** --- 1,20 ---- ------------------------ + Version 0.9.1 Alpha + December 26, 2003 + ------------------------ + + Bugfixes: + Fixed bad nio implementation.. uses large buffers now. + Fixed incorrectly named property in dev.karma.lib.FileDetails + + Changes/Additions: + Created basic and advanced interfaces and a client factory. + Created connection interface and moved TCP stuff to an + implementing class. + Moved TCP information out of client class + Added fid and rid calculation utilities in dev.karma.lib.util.FileUtils + + + ------------------------ Version 0.9.0 Alpha December 8, 2003 |