aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-23david - added documentation to phpgatsDavid
2011-05-17Ok, you can now open files, save files, save files from proxies and clients,Mike Buland
and add new root items to files. Later I'll add some actual editing capabilities, should be really easy.
2011-05-17GatsCon can read files now, but it can't save them, or edit them yet. That'llMike Buland
be coming eventually.
2011-05-17GatsCon now supports proxying, and way better than qtbenc ever did. Not onlyMike Buland
does it proxy, but you can inject your own messages going to the client or host. Pretty slick, really. Next up, reading and creating files.
2011-05-17Gats::Object now has a strToGats function, it's pretty slick, it takes a stringMike Buland
and produces a fully formed gats tree. Also, gatscon now can interact with a server directly.
2011-05-16Almost there! I'm adding a qtbenc-like program for gats, only cooler. It'llMike Buland
really help us debug gats based protocols and look at gats files, and the like.
2011-04-27The GatsInputStream is much, much simpler, should be much faster, and worksMike Buland
more like java says blocking things should work. If you ask it to read an object, it will, it will wait on the socket until it gets a whole one, or throws an exception.
2011-04-27david - some changesDavid
2011-04-21Bugfix, forgot to clear my read buffer.Mike Buland
2011-04-21Many helpers added, we like helpers.Mike Buland
2011-04-21Gats float should (maybe) work...Mike Buland
2011-04-21Well, dictionary may work...Mike Buland
2011-04-21david - dictionary : )David
2011-04-21List may actually work!Mike Buland
2011-04-21david - new methodsDavid
2011-04-21Need a hand...Mike Buland
2011-04-21Heh, it was backwards.Mike Buland
2011-04-21Boolean is in.Mike Buland
2011-04-21Strings work now.Mike Buland
2011-04-21???Mike Buland
2011-04-21You can read and write integers now. Other types should be pretty easy from ↵Mike Buland
here.
2011-04-21It...builds?Mike Buland
2011-04-21Gats for java is getting closer.Mike Buland
2011-04-06libgats now generates a really basic version.hMike Buland
2011-04-03Tweak to the float unit test.Mike Buland
2011-03-21Wow, I feel...wow, like a total idiot. I forgot to cleanup list items.Mike Buland
2011-03-14david - phpgats_Integer handles various types a little better now...David
2011-03-11david - woops, my exceptions not being consistant caused problems in fishtrax...David
2011-03-10david - woops, extra new line...David
2011-03-10The beginings of java gats.Mike Buland
2011-03-10PHP Gats now understands the new float format.Mike Buland
2011-03-10Float format is pretty much stabalized. I switched to using log/exp to scaleMike Buland
the number, works very well. The output is still encoded with bytes as base-256 digits of the number.
2011-03-08Added a whole load of new, cool helpers for working with dictionaries and lists.Mike Buland
2011-03-08The new float format is in place. The encoder/decoder may not be as fast rightMike Buland
now as it could be, but it is universal, which is preferable in many cases. We effectively use a normalized base-256 format to store the number, with a scale, also with a base of 256. Basically, with x86 doubles, the C99 standard textual, lossless hex encoding format is at max 23 bytes. This encoding is equivelent but at max 11 bytes, including the format specifier ('f').
2011-02-21david - int usage changesDavid
2011-02-18david - working php gats writer/parser, except doesn't do floats yetDavid
2011-02-17Ok, php can read and write gats style integers now.Mike Buland
2011-01-20Updated with new Bu::String.Mike Buland
2011-01-12Hey, documentation! That's novel.Mike Buland
2010-11-01Removed extraneous debugging.Mike Buland
2010-11-01Minor changes to the float that may circumvent some stupidness in the mingwrtMike Buland
snprintf code. I really need to write my own number parser/writer.
2010-11-01Wow...floats...I mean...wow...Mike Buland
2010-11-01Maybe more minor fixes?Mike Buland
2010-11-01Oops, bools aren't floats!Mike Buland
2010-10-20Corrected a bug that caused numbers between -1 and -63 inclusive to be positive.Mike Buland
2010-10-20Corrected a bug that made negative numbers between -64 and -127 inclusiveMike Buland
corrupt.
2010-10-20It builds on windows.Mike Buland
2010-10-20Ugh, stupid bools.Mike Buland
2010-10-20Fixed a few minor things.Mike Buland
2010-09-27Damn boolean overloads, always getting in the way...Mike Buland