Directory plugins/cfrhg/

Directory Created:
2008-04-12 11:21
Directory Deleted:
2021-04-27 12:42
Total Files:
0
Deleted Files:
2
Lines of Code:
0

[root]/plugins/cfrhg
            Folder removed from repo include (0 files, 0 lines)

Lines of Code

plugins/cfrhg/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 23 (100.0%) 439 (100.0%) 19.0
ryo_saeba 7 (30.4%) 380 (86.6%) 54.2
akirschbaum 5 (21.7%) 26 (5.9%) 5.2
quinet 1 (4.3%) 19 (4.3%) 19.0
anmaster 3 (13.0%) 7 (1.6%) 2.3
mwedel 3 (13.0%) 6 (1.4%) 2.0
gros 1 (4.3%) 1 (0.2%) 1.0
partmedia 3 (13.0%) 0 (0.0%) 0.0

Most Recent Commits

ryo_saeba 2021-04-27 12:42 Rev.: 22105

Convert the 'random house generator' plugin to a module, disabled by default.

0 lines of code changed in 2 files:

  • plugins/cfrhg: Makefile.am (del), cfrhg.c (del)
akirschbaum 2015-11-21 06:36 Rev.: 20049

Add missing #include statements.

1 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+1)
partmedia 2014-06-06 17:54 Rev.: 19531

Remove automatic prototype generation with cproto

Obtained from: Tolga Dalman

0 lines of code changed in 2 files:

  • plugins/cfrhg: Makefile.am (-4), cfrhg.c (-2)
partmedia 2013-07-16 08:30 Rev.: 18792

Trim legacy Makefile headers.

0 lines of code changed in 1 file:

  • plugins/cfrhg: Makefile.am (-25)
mwedel 2011-11-27 01:34 Rev.: 15936

Add logic to do svn version check between plugin and server - this prevents
incompatible plugins from being used.
MSW 2011-11-26

3 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+3)
ryo_saeba 2011-10-22 13:20 Rev.: 15240

Make the random house generator plugin conditionally compilable. Fixes bug #2369272: minor random map unrealisticness (trunk).

7 lines of code changed in 1 file:

  • plugins/cfrhg: Makefile.am (+7 -1)
ryo_saeba 2010-08-07 04:03 Rev.: 13559

Change event listener prototype for plugins to return int instead of void*.

7 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+7 -9)
mwedel 2010-04-26 02:00 Rev.: 12967

Add missing includes, add some makefiles for them for make distcheck.
MSW 2010-04-25

2 lines of code changed in 1 file:

  • plugins/cfrhg: Makefile.am (+2)
akirschbaum 2009-06-13 14:59 Rev.: 11827

Rewrite loops iterating over inv/env/below/above object lists with macros that are not affected by objects being modified/removed/freed within the loop.

2 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+2 -6)
anmaster 2009-02-12 13:48 Rev.: 11461

plugins/cfpython/include/cfpython_proto.h, plugins/cfpython/cfpython.c: Fix
broken give command. Was broken due to MSW removing -Bsymbolic when building
plugins about half a year ago. Also change some other symbols to static in the
plugins to avoid more issues like this.
plugins/cflogger/include/cflogger_proto.h, plugins/cflogger/cflogger.c,
plugins/citylife/include/citylife_proto.h, plugins/citylife/citylife.c,
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c,
plugins/cfanim/include/cfanim.h, plugins/cfanim/include/cfanim_proto.h,
plugins/cfanim/cfanim.c, plugins/cfnewspaper/include/cfnewspaper_proto.h,
plugins/cfnewspaper/cfnewspaper.c: More changes in the same style as the above
python changes to reduce possible symbol lookup conflicts. Also make some
functions static.
plugins/cfrhg/include/cfrhg_proto.h, plugins/cfrhg/cfrhg.c: Fix a typo in cfrhg
(was "cfrgh" in one place).

3 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+3 -3)
akirschbaum 2009-01-21 15:30 Rev.: 11205

Whitespace changes: consistently reformat code.

20 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+20 -25)
akirschbaum 2008-11-19 15:21 Rev.: 10561

Remove unused variables.

1 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+1 -2)
ryo_saeba 2008-09-19 14:36 Rev.: 9891

Fix for bug #2088893: Assertion in cfanim.c globalEventListener on client connect.

2 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+2 -2)
mwedel 2008-07-24 22:32 Rev.: 9684

plugins/*/Makefile.am: Remove -Xlinker -export-dynamic -Xlinker -Bsymbolic
from extra LDFLAGS. Those are gnu specific linker options which cause
the plugins to fail to compile when not using gld. I've tested the build
without those options with gld on linux, and all works fine, so not sure
if those are still needed - in theory, libtool should cover that. If
those options are still needed, configure.ac should get updated with a
a better test.
MSW 2008-07-24


1 lines of code changed in 1 file:

  • plugins/cfrhg: Makefile.am (+1 -1)
quinet 2008-07-20 04:49 Rev.: 9584

Automatic style fix: replace "foo* bar" by "foo *bar", remove extra spaces inside parentheses, etc.

19 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+19 -19)
anmaster 2008-06-04 16:39 Rev.: 9228

Clean up in plugins, fix a lot of gcc warnings (in plugins), update prototype
headers in plugins, make some functions static. Also update build system for
cflogger to make it not include common plugin stuff in header. Followed example
set by cfnewspaper's Makefile.am. Make the template plugin include prototype
header. (It is a good idea to do so, for various reasons.) Also add some missing
newlines at end of copyright header comments in some files. Also make some
variables const (in python plugin) in order to fix gcc warnings and to make
code cleaner (a string literal is always a const char* in C90 or later, but
char* is allowed for compatibility reasons, though it will actually be a const).

3 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+3)
anmaster 2008-06-01 11:40 Rev.: 9198

Set svn:eol-style to native on *.c and *.h files that were missing it.

1 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+1)
gros 2008-05-14 02:34 Rev.: 9069

Allow the server to be built from outside of its source directory.

1 lines of code changed in 1 file:

  • plugins/cfrhg: Makefile.am (+1 -1)
akirschbaum 2008-05-12 13:44 Rev.: 9024

Ansi C compatibility improvement: use prototypes.

2 lines of code changed in 1 file:

  • plugins/cfrhg: cfrhg.c (+2 -2)
ryo_saeba 2008-04-12 11:21 Rev.: 8732

New plugin: random house generator. Check cfrhg.c for details.

364 lines of code changed in 2 files:

  • plugins/cfrhg: Makefile.am (new 39), cfrhg.c (new 325)
Generated by StatSVN 0.7.0