Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-28 | find_by_id: Fix lookup (v2) | Benjamin Franzke | 1 | -1/+1 | |
The offset should be taken from the (GList *)::data pointer, not the list directly.. v2: Drop accidentially commited wip stuff | |||||
2011-09-28 | Revert "find_by_id: Fix lookup" | Benjamin Franzke | 4 | -30/+8 | |
This reverts commit c1cf0a71cfd8aa3441e57592e17de0d34823d305. | |||||
2011-09-28 | find_by_id: Fix lookup | Benjamin Franzke | 4 | -8/+30 | |
The offset should be taken from the (GList *)::data pointer, not the list directly.. | |||||
2011-09-28 | find_user: Renmae session to session_id for readability | Benjamin Franzke | 1 | -2/+2 | |
2011-09-28 | find_user: Match against session id | Benjamin Franzke | 1 | -1/+1 | |
2011-09-28 | message: Fix segfault when error is Null but ret <= 0 | Benjamin Franzke | 1 | -1/+3 | |
2011-09-28 | Print welcome message | Benjamin Franzke | 1 | -1/+2 | |
2011-09-28 | Fix lines with more than 80 characters. | Jan Klemkow | 1 | -4/+8 | |
2011-09-27 | Rename: cmumble_command_{complete=>expand_shortcut} | Benjamin Franzke | 3 | -3/+3 | |
2011-09-27 | Fix connection finish, if not connected | Benjamin Franzke | 1 | -8/+12 | |
2011-09-27 | Catch connection lost | Benjamin Franzke | 1 | -1/+9 | |
2011-09-27 | Add readline command completionautocompletion | Benjamin Franzke | 1 | -0/+22 | |
2011-09-27 | Handle whitespace around commands | Benjamin Franzke | 1 | -2/+22 | |
2011-09-27 | Add support for command shortcuts | Benjamin Franzke | 3 | -1/+26 | |
So that distinct substrings of commands, can be used as shortcuts. | |||||
2011-09-25 | Add udp message targets | Benjamin Franzke | 2 | -1/+9 | |
2011-09-25 | Fix bitshift for udp type | Benjamin Franzke | 1 | -1/+1 | |
Its abit unclear in the documentation, whether the first bits refer to lsb or msb. | |||||
2011-09-25 | Print errors using g_printerr | Benjamin Franzke | 1 | -1/+1 | |
2011-09-25 | Fix coding style | Benjamin Franzke | 1 | -3/+3 | |
There should not be a ' ' between functions names and open brackets. Only after keywords (switch,if,for..) | |||||
2011-09-25 | Add gstreamer option group to cmdline options | Benjamin Franzke | 1 | -0/+1 | |
2011-09-25 | Print session id in list_users | Benjamin Franzke | 1 | -1/+1 | |
2011-09-25 | Do not assign and check in if | Benjamin Franzke | 1 | -3/+4 | |
2011-09-25 | Add glib parsing function for argc and argv. | Jan Klemkow | 1 | -7/+30 | |
2011-09-24 | Add a general element finding routine to util.c | Benjamin Franzke | 6 | -35/+50 | |
And use this to implement find_user and find_channel as inline functions. | |||||
2011-09-24 | Add lc (list channels) command | Benjamin Franzke | 3 | -2/+66 | |
2011-09-24 | Rename ls commands to lu | Benjamin Franzke | 1 | -1/+1 | |
2011-09-24 | Use an asynchronous connection initiation | Benjamin Franzke | 4 | -63/+84 | |
So we arent blocked, and unable to handle cmdline interaction while connecting. | |||||
2011-09-23 | Add prefix cmumble_ to struct context and struct user | Benjamin Franzke | 12 | -66/+67 | |
2011-09-23 | Add a command interface | Benjamin Franzke | 6 | -10/+93 | |
Also add two simple commands: help and ls | |||||
2011-09-23 | Fix indents | Benjamin Franzke | 4 | -14/+14 | |
2011-09-23 | Move audio-related stuff into audio.c | Benjamin Franzke | 5 | -205/+254 | |
2011-09-23 | gen_message_list.sed: Use real tab for OpenBSD's sed | Benjamin Franzke | 1 | -1/+1 | |
2011-09-23 | Rename messages.[ch] to message.[ch] | Benjamin Franzke | 4 | -7/+7 | |
2011-09-23 | Rename mumble_message to cmumble_message | Benjamin Franzke | 1 | -1/+1 | |
2011-09-23 | Add cmumble_ prefix to recv/send_msg | Benjamin Franzke | 4 | -9/+9 | |
2011-09-23 | Move recv/send_msg declarations to messages.h | Benjamin Franzke | 4 | -14/+24 | |
2011-09-23 | Rename message.h to message_list.h | Benjamin Franzke | 4 | -10/+10 | |
2011-09-23 | Store callbacks in context | Benjamin Franzke | 5 | -26/+22 | |
2011-09-23 | Move connection related stuff into connection.c | Benjamin Franzke | 6 | -78/+151 | |
2011-09-23 | Fix warnings | Benjamin Franzke | 3 | -9/+15 | |
2011-09-23 | Makefile.am: Fix typo in gcc cflags | Benjamin Franzke | 1 | -1/+1 | |
2011-09-23 | Add input support using readline | Benjamin Franzke | 5 | -2/+162 | |
2011-09-22 | Use g_print always, not printf directly | Benjamin Franzke | 1 | -16/+18 | |
So we can use glibs print handler later. | |||||
2011-09-22 | Fixup async read by using GPollableInputStream instead of GSocket | Benjamin Franzke | 3 | -25/+34 | |
With the GSource created from GSocket hacks were needed to get all events. GPollableInputStream is the interface implemented directly by GTlsInputStream. | |||||
2011-09-16 | Typesafe callback initialization | Benjamin Franzke | 3 | -31/+37 | |
2011-09-13 | Replace g_new0(*,1) with g_slice_new0(*) | Benjamin Franzke | 1 | -2/+2 | |
2011-09-12 | gen_messages.sed: Set LC_COLLATE=C | Benjamin Franzke | 1 | -1/+1 | |
And unset LC_ALL, since LC_COLLATE is whats actually needed here. | |||||
2011-09-12 | Ship mumble.pb-c.[ch] is releases | Benjamin Franzke | 1 | -1/+5 | |
2011-09-07 | Use AC_PATH_PROG for protoc-c | Benjamin Franzke | 3 | -4/+5 | |
Also move PROTOC_C substution directly into src/protoc-c.sh.in instead of src/Makefile.am | |||||
2011-07-12 | gen_messages.sed: Rewrite to be posix compatible | Benjamin Franzke | 1 | -9/+8 | |
Posix sed doesnt have lower/uppercase (\L,\R) substitution qualifier. | |||||
2011-07-12 | gen_messages.sed: Simplify rules | Benjamin Franzke | 1 | -5/+5 | |