Directory client/trunk/common/

Total Files:
30
Deleted Files:
12
Lines of Code:
11967

[root]/client/trunk/common
                directory in repo shared (2 files, 677 lines)

Lines of Code

client/trunk/common/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 774 (100.0%) 14898 (100.0%) 19.2
partmedia 301 (38.9%) 5007 (33.6%) 16.6
mwedel 117 (15.1%) 2753 (18.5%) 23.5
akirschbaum 39 (5.0%) 2680 (18.0%) 68.7
kbulgrien 102 (13.2%) 2655 (17.8%) 26.0
ryo_saeba 75 (9.7%) 710 (4.8%) 9.4
anmaster 65 (8.4%) 575 (3.9%) 8.8
qal21 33 (4.3%) 137 (0.9%) 4.1
silvernexus 15 (1.9%) 119 (0.8%) 7.9
cavesomething 14 (1.8%) 108 (0.7%) 7.7
tchize 6 (0.8%) 91 (0.6%) 15.1
quinet 2 (0.3%) 48 (0.3%) 24.0
kstenger 4 (0.5%) 14 (0.1%) 3.5
rjtanner 1 (0.1%) 1 (0.0%) 1.0

Most Recent Commits

silvernexus 2017-08-18 23:06 Rev.: 20500

Fix delayed update of weight limit display on Strength changes.

2 lines of code changed in 1 file:

  • client/trunk/common: commands.c (+2)
silvernexus 2017-08-01 20:44 Rev.: 20464

Check the packet size using an unsigned short, since a signed short rolls to negative before being converted to a size_t

19 lines of code changed in 1 file:

  • client/trunk/common: newsocket.c (+19 -1)
partmedia 2017-07-29 00:32 Rev.: 20454

Lower login windows after 'addme' command as well

After creating a new account and starting to play, 'addme' gets sent
without the player hitting the login button.

1 lines of code changed in 1 file:

  • client/trunk/common: commands.c (+1)
partmedia 2017-07-29 00:31 Rev.: 20453

Disable client-side socket timeout

0 lines of code changed in 1 file:

  • client/trunk/common: client.c (-1)
partmedia 2017-07-27 11:21 Rev.: 20451

Handle end of stream correctly

15 lines of code changed in 2 files:

  • client/trunk/common: client.c (+4), newsocket.c (+11 -2)
partmedia 2017-07-23 15:12 Rev.: 20437

Use pkg-config to find libcurl and SDL

1 lines of code changed in 1 file:

  • client/trunk/common: CMakeLists.txt (+1 -1)
partmedia 2017-07-23 14:34 Rev.: 20435

Update Windows build

2 lines of code changed in 2 files:

  • client/trunk/common: client.c (+2), script.h (-2)
partmedia 2017-07-23 14:03 Rev.: 20432

Replace ChildProcess with GLib functions

The sound server invocation now theoretically works on Windows. While
here, make the spawned sound server inherit stderr and stdout from the
parent to fix the issue of the sound server blocking on pipe write.

1 lines of code changed in 4 files:

  • client/trunk/common: client.c (+1 -1), client.h (-24), misc.c (-297), proto.h (-4)
partmedia 2017-07-23 14:00 Rev.: 20427

Return error when server sends an invalid packet

15 lines of code changed in 3 files:

  • client/trunk/common: client.c (+2), client.h (+10), newsocket.c (+3 -2)
partmedia 2017-07-22 13:07 Rev.: 20423

Stop making csocket.inbuf global

10 lines of code changed in 2 files:

  • client/trunk/common: client.c (+10 -7), client.h (-1)
partmedia 2017-07-22 13:07 Rev.: 20422

Replace socket reads with GInputStream

102 lines of code changed in 4 files:

  • client/trunk/common: client.c (+71 -87), client.h (+4 -3), newsocket.c (+23 -116), proto.h (+4 -3)
partmedia 2017-07-09 19:04 Rev.: 20416

Add missing return

1 lines of code changed in 1 file:

  • client/trunk/common: image.c (+1)
partmedia 2017-07-09 13:52 Rev.: 20415

Hide main window during server selection

0 lines of code changed in 1 file:

  • client/trunk/common: player.c (-1)
partmedia 2017-07-09 13:51 Rev.: 20412

Handle error leading to segfault

4 lines of code changed in 1 file:

  • client/trunk/common: image.c (+4)
partmedia 2017-07-04 15:42 Rev.: 20405

Improve build on Windows

5 lines of code changed in 2 files:

  • client/trunk/common: image.c (+3 -6), script.h (+2)
partmedia 2017-06-22 16:38 Rev.: 20389

Reduce test-metaserver link dependencies

19 lines of code changed in 2 files:

  • client/trunk/common: CMakeLists.txt (+2 -3), metaserver.c (+17 -15)
partmedia 2017-06-21 12:46 Rev.: 20388

Pass callback as argument instead of using global

8 lines of code changed in 3 files:

  • client/trunk/common: metaserver.c (+6 -19), metaserver.h (+1 -3), test-metaserver.c (+1 -2)
partmedia 2017-06-21 12:46 Rev.: 20387

Parse metaserver info from a buffer

Store character data from curl using mbuf_write() and parse it as an
ordinary string. This makes the parser easier to debug and separates
curl logic from the parsing code.

45 lines of code changed in 1 file:

  • client/trunk/common: metaserver.c (+45 -63)
partmedia 2017-06-21 12:46 Rev.: 20386

Move declarations closer to first use

6 lines of code changed in 1 file:

  • client/trunk/common: metaserver.c (+6 -8)
partmedia 2017-06-07 20:23 Rev.: 20383

Lower login window after receiving 'player' command

Sometimes 'addme_success' is not received by the client after a
successful login, even though the player shows up in-game. This is the
bug where you have to press 'Play' twice to dismiss the login window.

1 lines of code changed in 2 files:

  • client/trunk/common: commands.c (-1), player.c (+1)
partmedia 2017-06-07 20:23 Rev.: 20381

Add minimal metaserver test program

22 lines of code changed in 3 files:

  • client/trunk/common: CMakeLists.txt (+5), metaserver.h (+3), test-metaserver.c (new 14)
partmedia 2017-01-17 12:57 Rev.: 20328

Remove client heartbeats

The server doesn't do anything useful with this information and this
feature has only been causing occasional crashes.

1 lines of code changed in 4 files:

  • client/trunk/common: client.c (+1 -43), client.h (-5), commands.c (-5), newsocket.c (-1)
partmedia 2016-01-09 14:44 Rev.: 20215

Add newline at end of file

1 lines of code changed in 1 file:

  • client/trunk/common: metaserver.h (+1 -1)
partmedia 2015-12-21 19:08 Rev.: 20191

Remove unused functions

0 lines of code changed in 3 files:

  • client/trunk/common: commands.c (-5), external.h (-2), mapdata.c (-2)
partmedia 2015-12-20 16:52 Rev.: 20188

Remove unused CMake configuration checks

3 lines of code changed in 2 files:

  • client/trunk/common: client.h (+3 -16), p_cmd.c (-16)
partmedia 2015-11-13 15:28 Rev.: 20040

Replace deprecated GDK and GTK APIs

0 lines of code changed in 2 files:

  • client/trunk/common: commands.c (-1), p_cmd.c (-1)
silvernexus 2015-11-03 18:41 Rev.: 20036

Adjusted msgtypes.pl to use strict perl syntax.

10 lines of code changed in 1 file:

  • client/trunk/common: msgtypes.pl (+10 -2)
silvernexus 2015-11-03 00:12 Rev.: 20035

Fixed a reference to meta_update.php for the US metaserver on client metaserver poll.

1 lines of code changed in 1 file:

  • client/trunk/common: metaserver.c (+1 -1)
silvernexus 2015-11-02 22:10 Rev.: 20033

Improve the mdk.pl script to use strict compilation rules.

13 lines of code changed in 1 file:

  • client/trunk/common: mdk.pl (+13 -11)
partmedia 2015-10-31 14:18 Rev.: 20031

Compact client help message

13 lines of code changed in 2 files:

  • client/trunk/common: p_cmd.c (+13 -14), p_cmd.h (-2)
partmedia 2015-10-31 14:18 Rev.: 20030

Fix invalid type comparisons

7 lines of code changed in 3 files:

  • client/trunk/common: commands.c (+5 -16), misc.c (+1 -1), script.c (+1 -1)
partmedia 2015-10-31 14:18 Rev.: 20029

Remove common stub commands

6 lines of code changed in 2 files:

  • client/trunk/common: external.h (-4), p_cmd.c (+6 -42)
partmedia 2015-10-31 14:18 Rev.: 20028

Reformat client commands array

39 lines of code changed in 1 file:

  • client/trunk/common: p_cmd.c (+39 -129)
partmedia 2015-10-31 14:18 Rev.: 20027

Remove common toolkit-specific command handler

8 lines of code changed in 2 files:

  • client/trunk/common: p_cmd.c (+8 -39), p_cmd.h (-12)
partmedia 2015-10-31 14:18 Rev.: 20026

Omit unused function definition parameters

14 lines of code changed in 1 file:

  • client/trunk/common: p_cmd.c (+14 -27)
partmedia 2015-10-31 14:18 Rev.: 20025

Clean up formatting and remove unused functions

40 lines of code changed in 2 files:

  • client/trunk/common: player.c (+40 -91), proto.h (-2)
partmedia 2015-10-31 14:18 Rev.: 20024

Add server debugging command

7 lines of code changed in 1 file:

  • client/trunk/common: p_cmd.c (+7 -1)
partmedia 2015-10-31 14:18 Rev.: 20023

Remove autotools build system

0 lines of code changed in 1 file:

  • client/trunk/common: Makefile.am (del)
partmedia 2015-04-05 12:33 Rev.: 19900

Clean up empty comments

40 lines of code changed in 1 file:

  • client/trunk/common: p_cmd.c (+40 -225)
partmedia 2015-04-05 12:33 Rev.: 19899

Avoid manually wrapping help text

14 lines of code changed in 1 file:

  • client/trunk/common: p_cmd.c (+14 -60)

(270 more)

Generated by StatSVN 0.7.0