aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-05Added better null helpers to libbu++/phpMike Buland
2016-12-29Static libs are just easier right now.Mike Buland
2016-09-21Accumulated changes.Mike Buland
2015-09-08Added a getType helper to the dictionary. This allows you to get the type of aMike Buland
child object without having to unpack it.
2013-03-05Added more helpers to the GatsDictionary in the C# version.Mike Buland
2013-02-11Updated the copyright to 2013. Also, started the Gats::RpcHandler.Mike Buland
2013-02-10Added a cute option to compress gats with deflate in gatsc.Mike Buland
2013-02-10GatsTxt now supports comments, both C and C++ style.Mike Buland
2013-02-10Added vim syntax highlighting for gatstxt format.Mike Buland
2013-02-10Made the gats text parser much more robust.Mike Buland
2012-11-17Minor tweak, the cs-dotnet Doxygen docs are titled libgats now.Mike Buland
2012-11-17A few real tabs wound up in the C# code...somehow.Mike Buland
2012-11-17Added XML standard in-code documentation, also GatsList and GatsDictionaryMike Buland
helpers.
2012-11-17Minor change to the readme.Mike Buland
2012-11-17Adding C# style XML documentation. It turns out Doxygen handles that properlyMike Buland
too. Wow, Doxygen, it really does it all :-P
2012-11-15Added license notice to C# code.Mike Buland
2012-11-15Updated readme to include the .net library.Mike Buland
2012-11-15Ok, Packet based stream reading/writing works and is compliant.Mike Buland
2012-11-15Dictionaries are implemented now. Everything tests out against python.Mike Buland
The next step is the packet stream interface.
2012-11-15Much overriding was done, but GatsList works great. And just like a standardMike Buland
.net list.
2012-11-15Accidentally included a dll, oops. Also, gats null, and gats float workMike Buland
correctly now and are tested against the python implementation.
2012-11-14Strings, bools, and ints all seem fine, the more complex container types areMike Buland
coming next, and will implement the full range of appropriate interfaces.
2012-11-14Started a nice, native .net implementation in C#Mike Buland
2012-11-09Randomly used wrong syntax in markdown.Mike Buland
2012-11-09The attempt to use symlinks in place of the header files was silly.Mike Buland
2012-11-09Many changes: tabconv'd the C++ code, added a license, BSD, and docs.Mike Buland
2012-11-09Ok, it's all organized by language/library now.Mike Buland
2012-11-09Made the repo less libbu++-centric.Mike Buland
2012-10-24More comment/spelling fixes. Added a helper to GatsInputStream soMike Buland
you can find out how many bytes the previously read object was.
2012-10-24Primarily documentation cleanups. Also removed some extra imports that areMike Buland
no longer used.
2012-10-24Build script has been updated to not try to compile the package-info.java file.Mike Buland
It's a little odd, we definately need an easier way to remove items from lists. I'm thinking just a minus operator.
2012-10-24Moved package-info.java into the gats dir. Apparently thisMike Buland
is an issue when using the parametrs that eclipse uses, it was complaining. It doesn't do that with the params to javac I use on the command line.
2012-09-12libbu++ version now uses libbu++ endian conversion macros and does not rely onMike Buland
winsock in windows.
2012-08-18Changed debugging output to not display binary strings, instead it just printsMike Buland
that it is binary and the length.
2012-07-06Added the gats compiler. It can only compile from gats-text to gats-binaryMike Buland
right now.
2012-06-27Apparently the various value classes don't all have setters yet, they should.Mike Buland
2012-06-22Added super handy readAllObjects slot.Mike Buland
2012-06-16I guess the symlinks are in svn.Mike Buland
2012-06-11GatsCon can display nulls now.Mike Buland
2012-06-11Python supports null.Mike Buland
2012-06-11All languages now support Null except for python and php, python is provingMike Buland
slightly trickier.
2012-05-29Apparently in python bools are ints, but ints aren't bools...this means thatMike Buland
you have to test for bool before int or bools are converted to ints. This is fixed now, bools transfer correctly.
2012-05-08david - created a phpgats library that uses native php types... it's still ↵David
using gmp, though...
2012-04-06The Qt API now supports cloning.Mike Buland
2012-04-06Qt is tested more thoroughly, some read bugs are fixed. It also works betterMike Buland
with qt principles. You can hook up the readyRead signal to the readObject slot on GatsStream, and connect the GatsStream objectRead signal to your own functions, and you'll be notified whenever a new gats object is read. Cool.
2012-04-06I think I fixed a seeking bug in the qt gatsstream, but...I haven't tested itMike Buland
yet.
2012-04-06Everything supports clone now.Mike Buland
2012-03-31Tweaks to help build in windows. There...may be a problem with symlinks...Mike Buland
2012-03-31Gats for QT is here. It's a pretty basic conversion right now, it doesn'tMike Buland
support debugging formatting (Bu::sio), it doesn't support gats-text string parsing, and the exceptions need to be fixed to be real exceptions. The basic functions have been renamed to match the Qt API and we use QT types for everything (QHash, QList, QByteArray). It needs more testing, but it's a great start.
2012-03-01Fixed a bug in java gats reading large strings over the network.Mike Buland