[root]/trunk/crossfire/doc
Developers
(0 files, 0 lines)
img
(0 files, 0 lines)
plugins.doc
(0 files, 0 lines)
cfanim
(0 files, 0 lines)
playbook-html
(0 files, 0 lines)
fig
(0 files, 0 lines)
playbook
(0 files, 0 lines)
fig
(0 files, 0 lines)
scripts
(0 files, 0 lines)
spell-docs
(0 files, 0 lines)
spoiler-html
(0 files, 0 lines)
spoiler
(0 files, 0 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 201 (100.0%) | 152357 (100.0%) | 757.9 |
mwedel | 91 (45.3%) | 95428 (62.6%) | 1048.6 |
cvs | 24 (11.9%) | 28059 (18.4%) | 1169.1 |
uid200 | 29 (14.4%) | 26277 (17.2%) | 906.1 |
michtoen | 2 (1.0%) | 817 (0.5%) | 408.5 |
tchize | 9 (4.5%) | 597 (0.4%) | 66.3 |
tanner | 17 (8.5%) | 476 (0.3%) | 28.0 |
akirschbaum | 5 (2.5%) | 321 (0.2%) | 64.2 |
peterm | 6 (3.0%) | 200 (0.1%) | 33.3 |
garbled | 3 (1.5%) | 81 (0.1%) | 27.0 |
damn | 1 (0.5%) | 32 (0.0%) | 32.0 |
gros | 4 (2.0%) | 19 (0.0%) | 4.7 |
quinet | 1 (0.5%) | 10 (0.0%) | 10.0 |
ryo_saeba | 3 (1.5%) | 9 (0.0%) | 3.0 |
mids | 1 (0.5%) | 9 (0.0%) | 9.0 |
cavesomething | 1 (0.5%) | 7 (0.0%) | 7.0 |
jec | 1 (0.5%) | 6 (0.0%) | 6.0 |
mardahl | 1 (0.5%) | 4 (0.0%) | 4.0 |
avogl | 1 (0.5%) | 4 (0.0%) | 4.0 |
qal21 | 1 (0.5%) | 1 (0.0%) | 1.0 |
make branche directories, delete old trunk.
0 lines of code changed in 45 files:
Add support (or at least documentation) for underlining.
MSW 2006-09-17
2 lines of code changed in 1 file:
Document create_home_portals setting in doc/settings.
1 lines of code changed in 1 file:
Bulk of this change is updating some files to use draw_ext_info() - all
future code should use this, since there is no real reason not to and
it provides additional features. One notable change - reversed the
order of the new and old formats in draw_ext_info_format() - the
order was different than that of draw_ext_info(), which leads to confusion.
draw_ext_info_format() wasn't used in many places, so easier to change
that than all the draw_ext_info() calls. Only another 1200
new_draw_info calls left in the server.
--
doc/mediaTags: Fix some typos, clarify some behaviour (the way it works
now so that there will not be confusion in the future).
include/define.h: Remove MSG_ tags - moved to newclient.h
include/newclient.h: Synchronize with client version. Add MSG_ defines
include/newserver.h: Move some defines from here to newclient.h
server/apply.c: Reverse format parameters to draw_ext_info_format() calls.
server/c_misc.c: Rewrite to use draw_ext_info{_format} - this allows nice
formatting of tables, etc. Also general style cleanups, clarify some
messages. in help_topics(), don't do linewrap - let the client
handle it. remove bug_report() function - no longer used. Remove
explore_mode() - wasn't used. Move command_style_map_info() to
c_wiz.c since it is a wiz only command.
server/c_wiz.c: As per above, move command_style_map_info() to this file
since it is a wiz command.
server/player.c: Reverse format parameters to draw_ext_info_format() calls.
server/shop.c: Update to use draw_ext_info{_format} instead of new_draw_info()
socket/info.c: Reverse format parameters in draw_ext_info_format().
Update va_start() to use new last parameter. Remove call to
strip_media() if the client supports the tag - that should only be
used if the client does not support the tag.
socket/request.c: remove commented out MSG_TYPE values.
MSW 2006-09-03
23 lines of code changed in 1 file:
Added media tags documentation
85 lines of code changed in 1 file:
configure, aclocal.m4, utils/config.guess, utils/config.sub,
utils/ltmain.sh, include/autoconf.h.in, */Makefile.in: regenerated using
slightly newer versions of libtoolize, aclocal, automake and autoconf.
10 lines of code changed in 1 file:
Add .cvsignore files, courtesy Rapha��l Quinet - quinet
0 lines of code changed in 1 file:
Fixed error in build process regarding unit test.
Our modularization is way broken, with have intredependent .a files, this should be solved.
Applied a compilation workaround suggest by gnu, twice every .a at link time. Applied an automake
workaround as we need to pass --preserver-dup-deps to autotools and to do this only current CVS
version can do it without a bit i hacking. Applied Hacking suggested by automake mailing list.
1 lines of code changed in 1 file:
First part of patch #1453869 courtesy Stefan Huehner (shuehner)
1 lines of code changed in 1 file:
Added autogeneration of html and text report for test process.
6 lines of code changed in 1 file:
updated configure.ac to automatically check availability of a few headers required by crossedit
Basically, it tries to compile a test code having only includes of xaw, posix, etc. Should be
enough to prevent most crossedit compilation issue but not perfect. (Should check version of lib and
try a few methods on them). crossedit/ and test/unit/crossedit are skipped by make if test fail.
1 lines of code changed in 1 file:
Initial commit of unit tests (see doc/Developers/testplans)
This is it, initial commit of unit test framework. It contains empty testcases
for all unit tests. See test/unit/check_shstr.c for a completed example unit test :)
4 lines of code changed in 1 file:
Add settings permanent_experience_percentage, death_penalty_percentage and
death_penalty_levels to the settings file.
---
common/living.c: don't hardcode exp calculations
common/init.c, include/config.h, lib/settings: set defaults for new values
doc/settings: document new values
include/global.h: change settings struct to hold the new values
server/init.c: parse new values in the settings file.
server/skill_util.c: reference new value
7 lines of code changed in 1 file:
Apply modified patch #1396303 (add setting to disable stealing from players)
by Terry Brown. It adds a new option "no_player_stealing" to the settings
file. If set, it prevents players from stealing from other players. It
defaults to ON.
1 lines of code changed in 1 file:
aclocal.m4, configure, utils/config.guess, utils/config.sub, utils/ltmain.sh,
*Makefile.in, plugins/cfanim/Makefile, plugins/Makefile: Rebuilt.
1 lines of code changed in 1 file:
Upgrade of the Crossfire server to version 2.0 of the plugin interface.
Upgrade of the Python plugin to version 2.0 of the plugin interface.
Gros - 18/10/05
1 lines of code changed in 1 file:
*Makefile.in, aclocal.m4, configure: Rebuilt generated files.
18 lines of code changed in 1 file:
configure.ac, configure, aclocal.m4, */Makefile.in: Add AM_MAINTAINER_MODE
macro to configure.ac - this should hopefully supress auto regeneration of
makefiles.in
MSW 2005-07-08
6 lines of code changed in 1 file:
Commit updated makefiles so files these depend on have been updated
(aclocal/include).
MSW 2005-07-08
229 lines of code changed in 1 file:
added a new command to identify the type of text send to client.
media tags can be included inside them. Those text types include
scrolls, books, message of the day, signs, aso.
See protocol doc for details
118 lines of code changed in 1 file:
*Makefile.in, aclocal.m4, configure, utils/config.guess, utils/config.sub,
utils/ltmain.sh: Rebuild generated files.
250 lines of code changed in 1 file:
doc/{README_PLUGINS.doc, README_PYTHON.txt, plugins}, doc/Developers/{README,
plugins, python}: Update plugin documentation.
51 lines of code changed in 1 file:
Various fixes for Win32, apply some tracker patches
8 lines of code changed in 1 file:
configure, Makefiles: Rebuilt for 1.6.0 release
doc/*/Makefile.am: Modified to use one makeps.pl utility in scripts directory.
doc/scripts/makeps.pl: Make this the definitive copy - fix problem with it
trying to combine big images when it doesn't need to. Remove other copies.
doc/playbook/chap1.tex, doc/playbook/chap5.tex: Fix some obvious errors,
but overall, the playbook is still quite out of date.
doc/playbook/treas2-extract: Have it not include abilities in given items,
have it properly deal with multiple underscores in arch names.
doc/spoiler-html/spoiler.html, doc/spoiler.ps: Rebuilt
MSW 2004-04-26
30990 lines of code changed in 3 files:
Changing Makefile.am pushes changes down into each Makefile.in
11 lines of code changed in 1 file:
Added very simple crossloop manpage.
14 lines of code changed in 2 files:
More badly needed documentation.
241 lines of code changed in 3 files:
Wow. Debian lint is much more picky then rpmlint!
14 lines of code changed in 1 file:
Some badly needed updates to the man pages.
7 lines of code changed in 3 files:
Needed to add the crossfire-config man page to .am and regen the .in. Why is
the autotools so convoluted.
128 lines of code changed in 2 files:
Super-quick hack on the crossfire-config man page.
Just took Mark's comments from the code and dropped them into the file.
5 lines of code changed in 1 file:
Rebuilt with up to date aclocal/automake/autoconf so that they all work
properly.
MSW 2004-01-20
233 lines of code changed in 1 file:
Rebuilded Makefile.in using autogen.sh because of recent add of a file in server/
Also rebuilded loader.c for linux because loader.l was modified by a windows developper.
130 lines of code changed in 1 file:
utils/player_dl.html utils/player_dl.pl.in: New files - scripts for allowing
character directories to be downloaded over the web.
configure.ac: Add check for 'tar', so that we can put it in the script above.
Makefile.in (All of them): Changed because TAR variable propogated to them.
MSW 2003-09-30
1 lines of code changed in 1 file:
Add conditional compilation to the stop level Makefile.am so that it
only tries to compile crossedit if we have X libraries. Also, rebuild
the files with older version of aclocal/autoheader/automake, so it
shouldn't have as many troubles with some peoples systems.
MSW 2003-09-22
52 lines of code changed in 1 file:
Added support for smoothing to the client.
This will allow (i hope) better graphical results while using very
little bandwidth overhead.
Changes done follows:
- Added protocol command MapExtendedInfos and smooth commands to server
- Added a SetUp paramater in protocol for activating smoothing
(disabled by default) or more general Extended map infos
- Added file lib/smooth a text file containing some smoothing info a
client might ask the server about.
- Changed loader.l to be able to mark an object as 'smoothed' in
archetypes (the smoothlevel parameter) and rebuild loader.c
accordingly
- Changed lib/Makefile.am to install lib/smooth file in shared folder
- Rebuild the Makefiles.am and the Configure script (using autogen.sh)
To be able to smooth, A client commit (the common part+ the gtk part)
will follow and an archetypes commit will also follow.
I will also detail changes to the protocol within a few days
Server has been tested with older client to check backward compatibility
126 lines of code changed in 1 file:
acinclude.m4: Update path to find python includes, since aclocal.m4 gets
derived from this file.
configure.ac, configure: Add utils/scores.pl to list of files to substitute on.
common/loader.l, loader.c: Add subtype for objects - will be used in future work.
common/object.c: Add subtype diff check in CAN_MERGE()
common/porting.c: Have it use SAVE_DIR_MODE when doing the mkdir, and not have
hardcoded 777 permissions.
doc/Makefile.in, doc/Makefile.am, doc/Developers/Makefile.am,
doc/Developers/Makefile.in: Move some of the spell docs around and merge
them together
doc/Developers/objects: Add notes about subtype.
doc/Developers/spells: New file, contains preliminary work on spell objects.
include/config.h: Remove command about DM_MAIL and LIBDIR from file, as they
are options no longer present. Update comment about SAVE_MODE, and add
SAVE_DIR_MODE
include/object.h: Add subtype field to object.
server/login.c: Have it use SAVE_DIR_MODE when doing the mkdir, and not have
hardcoded 6700 permissions.
utils/Makefile.in: Updated to know about scores.pl
utils/scores.pl.in: New file - reads player file to generate HTML score
file.
MSW 2003-04-04
4 lines of code changed in 2 files:
Fix lib/Makefile.am - some lines got split/joined that should not
have been.
Rebuilt some of the doc files.
MSW 2003-02-24
6734 lines of code changed in 1 file:
*/Makefile.in, related files: Updated for 1.5.0
server/attack.c: Don't change weak wall image if no damage was actually done.
server/c_object.c: Include math.h - needed for pow()
server/spell_effect.c: fix infinite loop in town_portal
MSW 2003-02-24
52 lines of code changed in 1 file:
Added crossfire-config to the build list of the configure.ac and regenerated the Makefiles and
configure.in to handle it
126 lines of code changed in 1 file:
(63 more)