Directory gtk-v2/src/

Total Files:
28
Deleted Files:
10
Lines of Code:
16689

[root]/gtk-v2/src

Lines of Code

gtk-v2/src/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 1038 (100.0%) 27122 (100.0%) 26.1
kbulgrien 231 (22.3%) 11773 (43.4%) 50.9
partmedia 468 (45.1%) 8415 (31.0%) 17.9
mwedel 93 (9.0%) 4597 (16.9%) 49.4
kstenger 18 (1.7%) 619 (2.3%) 34.3
cavesomething 11 (1.1%) 333 (1.2%) 30.2
ryo_saeba 29 (2.8%) 324 (1.2%) 11.1
silvernexus 30 (2.9%) 282 (1.0%) 9.4
anmaster 82 (7.9%) 241 (0.9%) 2.9
akirschbaum 35 (3.4%) 237 (0.9%) 6.7
qal21 29 (2.8%) 166 (0.6%) 5.7
tchize 5 (0.5%) 94 (0.3%) 18.8
quinet 2 (0.2%) 18 (0.1%) 9.0
crowbert 1 (0.1%) 13 (0.0%) 13.0
floomby 2 (0.2%) 8 (0.0%) 4.0
kfitzner 2 (0.2%) 2 (0.0%) 1.0

Most Recent Commits

silvernexus 2021-03-30 13:25 Rev.: 22049

Properly close keybinding files when loading a character with existing keybindings.

20 lines of code changed in 1 file:

  • gtk-v2/src: keys.c (+20 -8)
silvernexus 2021-03-02 18:01 Rev.: 22017

Based off Partmedia's patch they wanted Draug to test, fix the "no error" message log spam from select().

3 lines of code changed in 1 file:

  • gtk-v2/src: main.c (+3)
partmedia 2021-02-24 23:27 Rev.: 21997

Include project headers first

In the case that some system package installs a system-wide header file
named config.h, it will override our config.h, causing our build to
break. Prevent this from happening by changing the header file order to
bring in our header files first.

4 lines of code changed in 1 file:

  • gtk-v2/src: CMakeLists.txt (+4 -4)
silvernexus 2021-01-14 18:47 Rev.: 21770

Fix undefined variable in Big-Endian SDL code.
Resolves bug #885

1 lines of code changed in 1 file:

  • gtk-v2/src: image.c (+1 -1)
silvernexus 2021-01-09 12:27 Rev.: 21744

Implement preliminary support for map scaling using the SDL renderer.

138 lines of code changed in 2 files:

  • gtk-v2/src: image.c (+21 -15), sdl.c (+117 -108)
silvernexus 2021-01-08 00:55 Rev.: 21737

Remove unused SDL_image dependency from SDL rendering.

0 lines of code changed in 2 files:

  • gtk-v2/src: image.c (-1), sdl.c (-1)
partmedia 2021-01-04 13:44 Rev.: 21720

Correctly set maxfd

The nfds argument to select() is the number of the highest file
descriptor that we're interested in. sysconf(_SC_OPEN_MAX) returns *one
more* than the largest file descriptor allocated by the system, which
causes select() to fail on FreeBSD. One fix would be to subtract one
from this number, but it is better to just make maxfd a local variable
set to the highest script file descriptor.

While here, unify the exec failure error message and print errors in the
future if select() fails.

5 lines of code changed in 1 file:

  • gtk-v2/src: main.c (+5 -9)
partmedia 2021-01-03 17:24 Rev.: 21714

Stop warning about empty lines

1 lines of code changed in 1 file:

  • gtk-v2/src: keys.c (+1 -1)
partmedia 2021-01-03 17:08 Rev.: 21713

Load default key bindings from a GResource

41 lines of code changed in 2 files:

  • gtk-v2/src: CMakeLists.txt (+10), keys.c (+31 -34)
partmedia 2021-01-03 12:56 Rev.: 21709

Fix mapscale option for Pixmap

10 lines of code changed in 2 files:

  • gtk-v2/src: image.c (+1 -17), map.c (+9 -4)
partmedia 2021-01-02 22:42 Rev.: 21708

Fix header file name

1 lines of code changed in 1 file:

  • gtk-v2/src: cfsndserv.c (+1 -1)
partmedia 2021-01-01 18:16 Rev.: 21700

Merge sound server with GTK client

No longer install a stand-alone sound server. Merge sound server with
GTK client.

269 lines of code changed in 7 files:

  • gtk-v2/src: CMakeLists.txt (+4 -1), cfsndserv.c (new 212), main.c (+2 -4), snd.vala (new 35), sound-vala.vala (del), sound.c (+4 -14), sound.h (new 12)
partmedia 2020-12-15 14:25 Rev.: 21611

Prevent crash in map_init() when faceset size not set

Some broken servers do not correctly send the faceset size, in which
case 'size' becomes NULL. Check for this condition and avoid a crash.

7 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+7 -3)
partmedia 2020-12-15 14:25 Rev.: 21610

Adjust Pixmap fog-of-war opacity

1 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+1 -1)
partmedia 2020-11-25 16:02 Rev.: 21567

Fix copy/paste error

1 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+1 -1)
partmedia 2020-11-25 15:43 Rev.: 21566

Fix Pixmap renderer smoothing

32 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+32 -40)
partmedia 2020-11-25 12:42 Rev.: 21565

Don't crash on NULL

2 lines of code changed in 1 file:

  • gtk-v2/src: config.c (+2 -2)
silvernexus 2020-11-21 16:58 Rev.: 21556

Fix config dialog faceset selection.
Fixes bug 877

24 lines of code changed in 1 file:

  • gtk-v2/src: config.c (+24 -7)
silvernexus 2020-11-21 12:22 Rev.: 21555

Make Harfbuzz word wrapping wrap on characters when the word is too long to wrap in the message window.

1 lines of code changed in 1 file:

  • gtk-v2/src: info.c (+1 -1)
silvernexus 2020-11-08 15:13 Rev.: 21534

Fix improper handling of event association on map area. Now the events only associate once.

7 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+7 -2)
silvernexus 2020-10-14 07:36 Rev.: 21500

Prevent a segfault when the server forcibly terminates a connection.

15 lines of code changed in 1 file:

  • gtk-v2/src: main.c (+15 -10)
silvernexus 2020-10-04 08:36 Rev.: 21478

Prevent multiple inclusions of main.h. Should fix Bug #871.

5 lines of code changed in 1 file:

  • gtk-v2/src: main.h (+5)
crowbert 2020-09-14 18:03 Rev.: 21435

add --script=SCRIPT_NAME command-line option (not tested on Windows)

13 lines of code changed in 1 file:

  • gtk-v2/src: main.c (+13)
silvernexus 2020-09-14 07:42 Rev.: 21429

Resolve assertion error described in bug 878 by scaling pixmaps[0] to the chosen tileset's size.

20 lines of code changed in 3 files:

  • gtk-v2/src: gtk2proto.h (+1), image.c (+8), map.c (+11)
silvernexus 2020-09-10 13:07 Rev.: 21391

Allow for the face set to define the tile size, rather than assume 32x32.
This works for 24x24, and presumably can be extended to larger tile sizes as well, e.g. 64x64.

6 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+6)
silvernexus 2020-09-09 21:26 Rev.: 21390

Correct incorrect selection of current face set in config menu.

4 lines of code changed in 1 file:

  • gtk-v2/src: config.c (+4 -1)
floomby 2020-09-04 12:31 Rev.: 21345

don't modify const char for connection strting

7 lines of code changed in 1 file:

  • gtk-v2/src: metaserver.c (+7 -5)
floomby 2020-09-04 01:58 Rev.: 21343

strip leading and trailing whitespace from connection string

1 lines of code changed in 1 file:

  • gtk-v2/src: metaserver.c (+1)
partmedia 2020-08-25 23:18 Rev.: 21313

Fix occasional divide by zero after saving

7 lines of code changed in 1 file:

  • gtk-v2/src: inventory.c (+7)
partmedia 2020-08-23 12:39 Rev.: 21303

Fix build with -fno-common

window_xml_file appears in a header file without extern, causing a
linker error when built with -fno-common.

1 lines of code changed in 1 file:

  • gtk-v2/src: main.h (+1 -1)
partmedia 2020-06-22 18:54 Rev.: 21245

Add metaserver refresh button

25 lines of code changed in 1 file:

  • gtk-v2/src: metaserver.c (+25 -12)
partmedia 2020-03-26 00:51 Rev.: 21199

Simplify combo box population

11 lines of code changed in 1 file:

  • gtk-v2/src: config.c (+11 -26)
partmedia 2020-03-26 00:50 Rev.: 21198

Remove GtkObject

12 lines of code changed in 5 files:

  • gtk-v2/src: config.c (+1 -1), gtk2proto.h (+1 -1), keys.c (+6 -6), main.c (+3 -3), metaserver.c (+1 -1)
partmedia 2020-03-26 00:50 Rev.: 21197

Use accessors where possible

7 lines of code changed in 3 files:

  • gtk-v2/src: info.c (+1 -1), opengl.c (+4 -4), sdl.c (+2 -2)
partmedia 2020-03-25 14:25 Rev.: 21195

Update key symbols

20 lines of code changed in 1 file:

  • gtk-v2/src: keys.c (+20 -20)
partmedia 2020-03-25 14:25 Rev.: 21194

Rename CMake GTK variable name

2 lines of code changed in 1 file:

  • gtk-v2/src: CMakeLists.txt (+2 -2)
partmedia 2019-08-31 11:54 Rev.: 20995

Replace non-null assertion with null check

This assertion gets triggered when the server exits right when the
client is connecting. Exit with an error instead.

6 lines of code changed in 1 file:

  • gtk-v2/src: main.c (+6 -1)
partmedia 2019-08-31 11:53 Rev.: 20994

Make profiling output easier to parse

1 lines of code changed in 1 file:

  • gtk-v2/src: map.c (+1 -1)
partmedia 2019-08-27 23:43 Rev.: 20980

Remove inventory table column limit

30 lines of code changed in 1 file:

  • gtk-v2/src: inventory.c (+30 -30)
partmedia 2019-08-18 21:38 Rev.: 20976

Fix table view for large inventories

Fun fact: this bug has been here since the GTKv2 client landed in r3083!

1 lines of code changed in 1 file:

  • gtk-v2/src: inventory.c (+1 -1)

(438 more)

Generated by StatSVN 0.7.0