Directory client/trunk/x11/

Directory Deleted:
2010-06-19 10:36
Total Files:
0
Deleted Files:
14
Lines of Code:
0

[root]/client/trunk/x11

Lines of Code

client/trunk/x11/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 87 (100.0%) 730 (100.0%) 8.3
qal21 13 (14.9%) 323 (44.2%) 24.8
akirschbaum 10 (11.5%) 104 (14.2%) 10.4
anmaster 10 (11.5%) 93 (12.7%) 9.3
kbulgrien 12 (13.8%) 84 (11.5%) 7.0
tchize 1 (1.1%) 58 (7.9%) 58.0
ryo_saeba 20 (23.0%) 43 (5.9%) 2.1
mwedel 19 (21.8%) 24 (3.3%) 1.2
quinet 1 (1.1%) 1 (0.1%) 1.0
cavesomething 1 (1.1%) 0 (0.0%) 0.0

Most Recent Commits

ryo_saeba 2010-06-19 10:36 Rev.: 13415

Remove disabled GTK and X11 clients.

0 lines of code changed in 14 files:

  • client/trunk/x11: .cvsignore (del), Makefile.am (del), Makefile.in (del), cfclient.man (del), clientbmap.h (del), crossfire-client-x11.man (del), crossfire-client.desktop (del), png.c (del), rcs-id.h (del), sound.c (del), x11.c (del), x11.h (del), x11proto.h (del), xutil.c (del)
cavesomething 2010-03-18 11:47 Rev.: 12660

Remove the use of the setup flag sexp - The server doesn't
respond to it any more and the clients don't use it.

0 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (-1)
kbulgrien 2009-09-15 06:46 Rev.: 12191

- Add a new m4 macro ax_pthread.m4 to (hopefully) better suport detection of
pthreads. See: SF tracker ID 2850517 for info: crossfire-client-1.12.0
build failure under Slackware 12.2 - ID: 2850517. Note that ax_thread.m4 is
itself licensed under GPLv3. Note a possibility for license confusion, but
also note that a review of various projects shows a fairly common precedent
of allowing mixed licenses in the m4 macro directory - not all explicitly
documenting the fact that different licenses are used. Other projects
maintain a file identifying copyright and licensing provisions for various
parts of the project. Whereas it is very likely other sources will be
modified, it is highly unlikely anyone will expect to modify the .m4 macros
in this project.
- Replace AC_CHECK_LIB(pthread, pthread_create) method of detecting pthreads
with AX_PTHREAD()i
- Modify the configure.ac file to create a configure script that reports if
the x11 client is built. There is no reason to avoid this since it reports
other clients are or are not built.
- Modify the configure script notice "Will build * renderer" to "With *
renderer" since it looks silly in the case where no clients are built that
use the renderers.
- Modify common, x11, gtk, and gtk-v2 Makefile.am files to use PTHREAD_CFLAGS
and PTHREAD_LIBS variables as advised by the new macros/ax_pthread.m4 file.
It is advised that both CFLAGS and LIBS variables be used (even though on
some systems both are not needed).

2 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.am (+2 -2)
kbulgrien 2009-04-22 23:08 Rev.: 11663

The following commit converts all common code and GTK-V2 draw_info() calls to
draw_ext_info() calls so that support for untyped draw_info() messages can be
completely removed from GTK-V2. While converting the draw_info() calls, also
get rid of the deprecated draw_color_info() use in common so that the clients
can have this deprecated function removed. This conversion also requires all
clients provide a draw_ext_info() for common code to use. In the X11 and the
GTK-V1 client, draw_ext_info() discards the message type information and just
uses its existing draw_info() function. To support this change, new message
types and subtypes have been added to support client-sourced messages. More
than likely the client-side message subtypes could be fine tuned, but GTK-V2
also has changed to allow the draw_info() colors to be used until style data
is set up for the client message types. draw_info() is removed from GTK-V2.

common/item.c: draw_info() --> draw_ext_info().
common/commands.c: draw_info() --> draw_ext_info(); Remove
draw_color_info().
Remove commented code used to develop skills report.
common/script.c: draw_info() --> draw_ext_info().
common/client.c: draw_info() --> draw_ext_info().
common/msgtypes.h: Regenerated with `make msgtypes.h`.
common/p_cmd.c: draw_info() --> draw_ext_info().
common/image.c: draw_info() --> draw_ext_info().
common/player.c: draw_info() --> draw_ext_info().
common/script_lua.c: draw_info() --> draw_ext_info().
common/metaserver.c: draw_info() --> draw_ext_info(); comment updates.
common/external.h: Remove draw_info(); remove draw_color_info(); add
draw_ext_info().
common/newclient.h: Add/tweak comments for pre-existing message types.
Add a new message type for client-sourced messages
along with some subtypes that seemed reasonable when
reviewing the kinds of messages the client spawns.
x11/x11proto.h: Regenerated with `make proto`.
x11/x11.c: Remove draw_color_info(). Add draw_ext_info().
gtk/gtkproto.h: Rebuilt file with `make proto`.
gtk/gx11.c: Remove draw_color_info(). Add draw_ext_info().
gtk-v2/src/gtk2proto.h: Regenerated with `make proto`.
gtk-v2/src/config.c: draw_info() --> draw_ext_info().
gtk-v2/src/keys.c: draw_info() --> draw_ext_info(). Fix a misspelling
in a message.
gtk-v2/src/info.c: Fix the message_callback() prototype to match the
function declaration and add a draw_ext_info()
prototype. Modify message_callback() to honor the
orig_color parameter in cases where a style has not
been set for a particular message type/subtype so
that draw_info() texts converted to draw_ext_info()
will not lose their color just because the themes
are not updated. To make this work, the message
routing code was moved to run earlier. draw_info()
is removed from the GTK-V2 client to strongly show
that any new client messages need to be typed. This
enhances the value and coverage of the theme support
in the client. In fact, draw_info() comments hinted
that draw_info() has been considered questionable in
various ways before this conversion was conceived.
Add a draw_ext_info() call that simply uses the
message_callback(). Really the message_callback()
should probably be renamed draw_ext_info() instead
of putting this extra call in.
gtk-v2/src/pickup.c: draw_info() --> draw_ext_info().
gtk-v2/src/inventory.c: draw_info() --> draw_ext_info().

19 lines of code changed in 2 files:

  • client/trunk/x11: x11.c (+18 -10), x11proto.h (+1 -1)
kbulgrien 2008-11-29 00:00 Rev.: 10765

Update all client .desktop files so they do not trigger rpmlint messages like
".desktop file is not valid, check with desktop-file-validate": Terminate
the Categories key/value with a semicolon; remove the deprecated Encoding key.
Unify the Comment for all three clients. Add an appropriate GenericName key.
Add [en] localestrings for the Name, GenericName, and Comment keys to help
make it more obvious that translations may be placed in this file. Put the
keys in order as listed in http://standards.freedesktop.org/desktop-entry-spec
These changes are tested with desktop-file-validate.

8 lines of code changed in 1 file:

  • client/trunk/x11: crossfire-client.desktop (+8 -5)
kbulgrien 2008-07-20 03:52 Rev.: 9583

Update crossfire-client.desktop files by using consistent names; making sure
all have categories; and adding a new file for the X11 client.
x11/crossfire-client.desktop
x11/Makefile.am
gtk/crossfire-client.desktop
gtk-v2/Makefile.am
gtk/crossfire-client.desktop
Change the default version for the client to 2.0.dev instead of 2.0-dev as the
dash is incompatible with modern RPM tools. Dash is reserved for separating
things in the RPM file name, and must not be embedded in the version string.
Also rework datadir computation, and report where client data files will be
placed. Improve reporting of the bindir to be used.
configure.ac
Fix RPM creation for the client release procedure. Add new .desktop files and
package them with the clients rather than in the common package. Change the
location for the .desktop files to /usr/share/applications. Update the list
of .glade files for the GTK client V2. Correct the RPM build process by
adding a _datadir definition, and modify all file specifications accordingly.
Fix the build specs so a crossfire-client-x11 package is made. Swap the gtk
client build to use GTK V2 by default. Change versions to 2.0.dev instead of
2.0-dev, which is invalid for current versions of rpmbuild.
crossfire-client.spec

12 lines of code changed in 2 files:

  • client/trunk/x11: Makefile.am (+3), crossfire-client.desktop (new 9)
anmaster 2008-06-02 13:31 Rev.: 9215

Add stub support for sound2/music commands, I was unable to make server send
the actual commands except "music NONE" (and jxclient that do have sounds don't
get these commands either, but decides locally to play some sounds it seems) so
was not able to debug it beyond making sure it compiled and ran. When the server
actually sends these commands someone need to fill in the implementations and
check the parsing code is correct for sound2.

63 lines of code changed in 2 files:

  • client/trunk/x11: sound.c (+61), x11proto.h (+2)
anmaster 2008-06-01 13:01 Rev.: 9204

Normalize the *.xpm and *.xbm files by opening them in gimp and resaving them.
Then readd "const" as needed in a text editor. Also had to update some source
files because the name of the array for the xpm changed in some cases.

1 lines of code changed in 1 file:

  • client/trunk/x11: clientbmap.h (+1 -1)
anmaster 2008-06-01 12:32 Rev.: 9201

Run protoize on code to add missing void in prototypes. Run the png_compress
script from arch on some *.png files in the tree to reduce their size.

19 lines of code changed in 2 files:

  • client/trunk/x11: x11.c (+17 -17), xutil.c (+2 -2)
anmaster 2008-06-01 11:32 Rev.: 9197

Add some missing "extern" keywords that caused warnings. Remove some extern
variable definitions in source file that were already found in headers.

0 lines of code changed in 1 file:

  • client/trunk/x11: xutil.c (-2)
anmaster 2008-06-01 10:52 Rev.: 9196

Run make proto in subdirs. Make sure make doesn't error out on some subdirs
when running make proto in top directory.

6 lines of code changed in 1 file:

  • client/trunk/x11: x11proto.h (+6)
anmaster 2008-06-01 10:36 Rev.: 9195

Use the -combine option of gcc to find code (mostly extern inside source instead
of headers), where the definitions didn't agree with each other. Fix most of them.
One (hard to fix) is left, I will look at it later. Also use cproto in common/.
Two sprintf changed to snprintf as well.

4 lines of code changed in 3 files:

  • client/trunk/x11: png.c (+1 -1), x11proto.h (+1 -1), xutil.c (+2 -2)
ryo_saeba 2008-05-07 15:12 Rev.: 8911

Apply patch by Jochen Suckfüll to move recently updated skills to top of list for X11 client (could possibly be used for other clients).

14 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (+14 -23)
kbulgrien 2008-04-26 12:38 Rev.: 8801

Fix detection and use of lua 5.0 and 5.x as the build broke on some systems if
the liblua stuff was loaded. For 5.0, libm and libdl are added to LUA_LIBS for
liblualib to be usable. The summary report for ./configure now reports if lua
scripting support is included in the build, and @LUA_LIBS@ is added into the
link library lists for each client to fix build problems when lua is detected.

2 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.am (+2 -1)
quinet 2008-02-12 05:26 Rev.: 8414

- Escape the apostrophe when it starts a line, to avoid confusing man or
nroff ('help -> \'help). Reported by Kari Pahula.

1 lines of code changed in 1 file:

  • client/trunk/x11: crossfire-client-x11.man (+1 -1)
kbulgrien 2008-01-24 00:18 Rev.: 8253

Packaging update work.
crossfire-client-spec: An initial attempt to bring the .spec file up to date
with the libglade/libcurl/pthread requirements and for packaging the theme
and window layout files. It has not been tested yet and probably needs
more work.
gtk-v2/crossfire-client-gtk2.man: For now, this is really only a slightly
modified copy of gtk/crossfire-client-gtk. It needs an update, but then
so do all the other client man pages.
gtk-v2/crossfire-client.desktop: An executable file name change. Really, I
think this file needs a rename to be correct.
gtk-v2/Makefile.am: Support for the new crossfire-client-gtk2.man file.
gtk/crossfire-client-gtk.man: Client name changes for trunk, and a number of
spelling errors fixed and .crossfire file names fixed like winpos->gwinpos.
x11/crossfire-client-x11.man: Client name changes for trunk, and a number of
spelling errors fixed.

30 lines of code changed in 1 file:

  • client/trunk/x11: crossfire-client-x11.man (+30 -33)
kbulgrien 2008-01-19 02:18 Rev.: 8209

Per-character keybind support.
gtk-v2/src/keys.c: In save_keys() and keys_init(), a pointless #ifdef WIN32
was used to attempt to implement per-character keybind files but keys_init()
is called long before a player can log in, so this had the effect of writing
keybinds to a file that cannot be loaded. Oddly, this was under a #ifdef
WIN32 which is quite inappropriate as if supported, it should be for all
platforms. The support is commented out with #if 0 until it can be fixed
and then re-enabled for all clients. Meanwhile, it surely fixes a WIN32 bug.
General doxygen update:
gtk/sound.c: Convert function description comments to doxygen form.
common/client.h: Convert comments to doxygen form.
x11/sound.c: Add doxygen file header.
Makefile.am: Add target dox to generate doxygen files and output errors to
doxygen.err
gtk-v2/src/stats.c: Add doxygen file header. Convert function description
comments to doxygen form. Fix missing doxygen @param for update_stat().
Add stubs for missing function descriptions.
gtk-v2/src/spells.c: Add doxygen file header. Convert comments to doxygen
form. Convert function description comments to doxygen form.
gtk-v2/src/about.c: Whitespace only.
gtk-v2/src/keys.c: Convert comments to doxygen form. Convert function
description comments to doxygen form. Define groups for the functions in
this file. In parse_keybind_line, add a parameter description. In
init_default_keybindings, add to the function description.
gtk-v2/src/image.c: Minor reformatting. In image_update_download_status()
description, remove erroneous @param items.
gtk-v2/src/sdl.c: Add doxygen file header. Convert comments to doxygen form.
Convert function description comments to doxygen form. Add stubs for missing
function descriptions. Move some defines from between a function description
and the function code to above the description to help out doxygen.
gtk-v2/src/png.c: Add doxygen file header. Convert comments to doxygen form.
Add stubs for missing function descriptions. Move some defines from between
a function description and the function code to above the description to help
out doxygen.
gtk-v2/src/sound.c: Rework the doxygen file header.

4 lines of code changed in 1 file:

  • client/trunk/x11: sound.c (+4 -3)
tchize 2007-11-26 15:06 Rev.: 7576

fix for [ 1832377 ] configure script should check for SDL_image.h
Also added configure summary lines at the end.
Rebuild using autogen.sh

58 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+58 -44)
kbulgrien 2007-09-02 23:20 Rev.: 7104

aclocal.m4
configure
Makefile.in
common/Makefile.in
gtk/Makefile.in
gtk-v2/Makefile.in
gtk-v2/themes/Makefile.in
gtk-v2/src/Makefile.in
gtk-v2/glade/Makefile.in
help/Makefile.in
pixmaps/Makefile.in
sound-src/Makefile.in
utils/Makefile.in
x11/Makefile.in
- Result of new and fixed m4 files.
autogen.sh
- Point aclocal at macros so that undefined macros do not crash ./configure
macros/gtk.m4
macros/sdl.m4
- ./configure should never crash, so add to remove errors as follows:
aclocal:configure.in:?: warning: macro `AM_PATH_GTK' not found in library
./configure: line ?: syntax error near unexpected token `1.0.0'
./configure: line ?: ` AM_PATH_GTK(1.0.0)'
aclocal:configure.in:?: warning: macro `AM_PATH_SDL' not found in library
./configure: line ?: syntax error near unexpected token `1.1.3'
./configure: line ?: ` AM_PATH_SDL(1.1.3)'
macros/curses.m4
macros/gnome-print-check.m4
macros/gnome-gettext.m4
macros/linger.m4
macros/need-declaration.m4
- Update .m4 files from a newer glade package to remove many warnings like
the following:
macros/linger.m4:4: warning: underquoted definition of AC_STRUCT_LINGER

2 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+2 -1)
kbulgrien 2007-09-01 13:35 Rev.: 7100

This is a merge of client/branches/gtk-v2-libglade to trunk. It converts the
GTK-V2 client to a libglade-2.0 client that supports changing the UI layout
with glade-2 generated .glade XML files. Various alternate client layouts
are included.
AUTHORS
- Reformatted for aesthetics.
- Added libglade-2.0 conversion author.
ChangeLog
- Summarize gtk-v2-libglade branch merge to trunk.
common/init.c
- Typo corrected in LOG message (inic.c --> init.c).
configure
- LIBGLADE_CFLAGS/LIBS addition.
- gtkv2 checks converted to HAVE_GTK2.
- gtk-v2/glade directory addition now supported.
- V2 client now depends on libglade2.0 instead of GTK+ 2.0.
- Some reformatting resulting from autoconf/automake changes flowing down.
configure.in
- gtk-v2/glade directory addition now supported.
- Update indenting; tab->space conversion for readability.
- Minor message updates for consistency like GTK2 -> GTK+ 2.0.
- V2 client dependency checks changed to require libglade-2.0 vs. gtk+-2.0.
gtk-v2/glade
gtk-v2/glade/Makefile
gtk-v2/glade/Makefile.am
gtk-v2/glade/Makefile.in
- A fully autoconf/automake supported directory to be used for the control
of glade-2 layouts compatible with this client.
gtk-v2/glade/AUTHORS
- A file to attribute the authors of the glade-2 XML layout projects in this
directory.
gtk-v2/glade/README
- A help file for prospective glade-2 XML layout creation that describes how
to create a new layout and workarounds for various issues that may arise.
gtk-v2/glade/caelestis.glade
gtk-v2/glade/caelestis.gladep
gtk-v2/glade/chthonic.glade
gtk-v2/glade/chthonic.gladep
gtk-v2/glade/gtk-v1.glade
gtk-v2/glade/gtk-v1.gladep
gtk-v2/glade/meflin.glade
gtk-v2/glade/meflin.gladep
- New layout files for the V2 client. make install places the .glade files
in the crossfire-client data directory, where they are detected by the
client in order to allow a user to select a new layout from the
configuration popup dialog.
gtk-v2/glade/dialogs.glade
gtk-v2/glade/dialogs.gladep
- This glade-2 XML layout project contains pop-up dialogs formerly contained
in the ../gtk-v2.glade files. It was created to reduce the overhead in
setting up a new main window layout. The client allows a user to specify
a new file at the command-line, but does not attempt to support in-client
selection of an alternate file.
- Various modification to the original pop-up dialogs have been made to
support the libglade-2.0 conversion. The generated code allowed the XML
file to have variations in it that cause problems for libglade.
- Minor alterations have been mode to appearance and/or text on various
dialogs.
gtk-v2/glade/gtk-v2.glade
gtk-v2/glade/gtk-v2.gladep
gtk-v2/gtk-v2.glade
gtk-v2/gtk-v2.gladep
- Moved to gtk-v2/glade sub-directory.
- This is the original gtk-v2 client layout by mwedel.
- All popup dialogs have moved into gtk-v2/glade/dialogs.glade.
gtk-v2/Makefile.am
gtk-v2/Makefile.in
- LIBGLADE_CFLAGS/LIBS addition
- gtk-v2/glade directory addition now supported.
- DIST_COMMON modifications by autoconf/automake to remove files not under
SVN control.
- Remove gtk-v2/gtk-v2.glade and gtk-v2/gtk-v2.gladep from EXTRA_DIST as they
are now located in the gtk-v2/glade subdirectory.
gtk-v2/README-dev
- Reformat for aesthetics and readability.
- Various updates to content based upon IRC or mailing list discussions.
- Rework content to third-party point-of-view to make it easier for other
developers to modify the document.
gtk-v2/src
- Inexplicable property changes to svn:ignore simply reposition .deps entry.
gtk-v2/src/about.c
gtk-v2/src/inventory.c
gtk-v2/src/keys.c
gtk-v2/src/map.c
gtk-v2/src/metaserver.c
gtk-v2/src/spells.c
- Include glade.h
- Remove includes of glade-2 generated source files.
- Conversion to libglade-2.0 requires use of glade_get_widget_tree() and
change from lookup_widget() to glade_xml_get_widget() and insertion of
g_signal_connect() to replace functionality previously found in glade-2
generated source files.
gtk-v2/src/config.c
- Include glade.h
- Various code comment improvements.
- Remove includes of glade-2 generated source files.
- All functions without a comment header now have one.
- Significant code comment reformatting to use of a 79 character line width
and to reduce line lengths over 80 characters.
- Add static char pointers themedir and gladedir to better support loading
combo box widgets from the crossfire-client data directory, and to reduce
the number of redundant hard-coded strings.
- The configuration popup dialog now supports in-client selection of an XML
layout file to redefine the root window appearance. Modified functions
include load_defaults(), save_defaults(), setup_config_window(), and
read_config_window(). New functions are scandir_glade_filter,
fill_combobox_from_datadir() which is derived from code factored out of
setup_config_window() so it can be used multiple times. Modifications to
save_winpos() and load_window_positions() alters screen position saving to
remove hard-coded copy/pasted code and more flexibly support multiple XML
UI layout files.
- Conversion to libglade-2.0 requires use of glade_get_widget_tree() and
change from lookup_widget() to glade_xml_get_widget() and insertion of
g_signal_connect() to replace functionality previously found in glade-2
generated source files.
- scandir_filter() renamed to scandir_theme_filter() for more consistent
naming for multiple scandir filter functions now required since the window
layout combo box also requires on.
gtk-v2/src/image.c
gtk-v2/src/opengl.c
gtk-v2/src/sdl.c
- Include glade.h
gtk-v2/src/info.c
gtk-v2/src/pickup.c
gtk-v2/src/stats.c
- Include glade.h
- Remove includes of glade-2 generated source files.
- Conversion to libglade-2.0 requires use of glade_get_widget_tree() and
change from lookup_widget() to glade_xml_get_widget().
gtk-v2/src/interface.c
gtk-v2/src/interface.h
gtk-v2/src/callbacks.h
gtk-v2/src/support.c
gtk-v2/src/support.h
- Remove glade-2 generated source files.
gtk-v2/src/magicmap.c
- Include glade.h
- Remove includes of glade-2 generated source files.
gtk-v2/src/main.c
gtk-v2/src/main.h
- Include glade.h
- General changes to support the conversion to libglade-2.0 require runtime
processing of the glade-2 XML layout file names and locations.
- Add support for command-line specification of glade-2 generated XML files
that describe the UI windows and pop-up dialogs.
- Conversion to libglade-2.0 requires use of glade_get_widget_tree() and
change from lookup_widget() to glade_xml_get_widget() and insertion of
g_signal_connect() to replace functionality previously found in glade-2
generated source files.
gtk-v2/src/Makefile.am
gtk-v2/src/Makefile.in
- LIBGLADE_CFLAGS/LIBS addition.
- Replace GTK2_CFLAGS/LIBS with LIBGLADE_CFLAGS/LIBS.
- Changes resulting from removal of glade-2 generated source files.
gtk-v2/src/menubar.c
- Include glade.h
- Remove includes of glade-2 generated source files.
- Include image.h and gtk2proto.h as support the libglade-2.0 conversion.
- Conversion to libglade-2.0 requires use of glade_get_widget_tree() and
change from lookup_widget() to glade_xml_get_widget() and insertion of
g_signal_connect() to replace functionality previously found in glade-2
generated source files.
gtk-v2/TODO
- Reformat for aesthetics and readability.
- Add todo for non-functional scroll bar handles on the map display.
- Adjust todo for lower screen resolution support since the libglade-2.0 port
at least partially addresses usability on smaller desktops.
help/about.h
- EOL whitespace removed.
- Minor reformat for aesthetics.
- Added libglade-2.0 conversion author.
Makefile.in
common/Makefile.in
gtk/Makefile.in
gtk/themes/Makefile.in
help/Makefile.in
pixmaps/Makefile.in
sound-src/Makefile.in
- LIBGLADE_CFLAGS/LIBS addition
x11/Makefile.in
- LIBGLADE_CFLAGS/LIBS addition
- DIST_COMMON modifications by autoconf/automake to remove files not under
SVN control.

3 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+3 -2)
kbulgrien 2007-08-25 22:10 Rev.: 6986

- autoconf/automake changes
- gtk-v2/src: make proto changes

2 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+2 -1)
mwedel 2007-08-09 02:10 Rev.: 6899

Add support for metaserver2 in client. For the X11/C clients, they use basic
interface (drawn in text window, select a number), so no changes to the GUI
portions of those clients was done - gtk2 uses window, so some extra work
there.
--
acinclude.m4: New file - added for LIBCURL_CHECK_CONFIG macro support.
aclocal.m4: Rebuilt
configure: Add --disable-metaserver2 option, check for Curl, pthread. Make
sure user either has curl installed or has used --disable-metaserver2
configure, */Makefile.in: Rebuilt with Curl support
common/cconfig.h: Add note about METASERVER2 (controlled via configure)
common/client.c: Add metaserver2 global
common/client.h: Add metaserver2 global
common/config.h.in: Rebuilt by autoheader.
common/init.c: Add call to init_metaserver()
common/metaserver.c: Support for metaserver2. More fields in Meta_Info.
Re-arrange file a little so logical functions are together.
common/metaserver.h: New fields in Meta_Info, some renamed to keep
it consistent accross all of metaserver2.
common/proto.h: rebuilt
gtk-v2/src/metaserver.c: Add support for threaded metaserver2 retrievals -
need to make sure data is accessed in thread safe way, also need to
add check for status of retrieval thread.
MSW 2007-08-08

8 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+8 -10)
akirschbaum 2007-06-27 13:57 Rev.: 6716

Remove trailing whitespace.

33 lines of code changed in 5 files:

  • client/trunk/x11: Makefile.am (-1), crossfire-client-x11.man (+2 -2), png.c (+13 -14), sound.c (+2 -3), xutil.c (+16 -16)
ryo_saeba 2007-06-02 05:05 Rev.: 6374

Remove obsolete mapredraw command (empty on server-side).

2 lines of code changed in 1 file:

  • client/trunk/x11: xutil.c (+2 -2)
akirschbaum 2007-04-16 15:01 Rev.: 6050

Rebuilt auto-generated files.

1 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+1 -1)
akirschbaum 2007-04-16 12:41 Rev.: 6041

Use #include <config.h> instead #include "config.h" to support multiple configurations outside the source directory.

2 lines of code changed in 2 files:

  • client/trunk/x11: png.c (+1 -1), sound.c (+1 -1)
ryo_saeba 2007-02-23 16:43 Rev.: 5588

Fix missing -llualib linking option.

9 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+9 -3)
mwedel 2007-02-21 03:20 Rev.: 5583

Remove hard dependancy of LUA - instead, have configure check for it and
just don't compile in the LUA bits if we don't have lua installed.
--
configure,configure.in: Add lua checks.
*/Makefile.am, */Makefile.in: Remove hard coded links of -llua
common/config.h.in: Add HAVE_LIBLUA define
common/commands.c, common/p_cmd.c, common/script_lua.c: Add #ifdef
HAVE_LIBLUA checks
MSW 2007-02-20


8 lines of code changed in 2 files:

  • client/trunk/x11: Makefile.am (+1 -1), Makefile.in (+7 -10)
ryo_saeba 2007-02-18 10:24 Rev.: 5561

Implement feature request 1025952: GTK Client - Save Pickup options.

7 lines of code changed in 1 file:

  • client/trunk/x11: xutil.c (+7)
ryo_saeba 2007-02-10 13:25 Rev.: 5432

Apply patch #1560052: LUA client-side support.

11 lines of code changed in 2 files:

  • client/trunk/x11: Makefile.am (+1 -1), Makefile.in (+10 -4)
akirschbaum 2007-02-05 13:05 Rev.: 5383

Remove unused variable.

0 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (-1)
akirschbaum 2007-02-05 13:04 Rev.: 5382

Remove trailing whitespace.

68 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (+68 -68)
qal21 2006-10-21 00:13 Rev.: 5037

Make a small tweak to make the svnversion call more proper, and rebuild makefiles (Most don't need to be, however it was becoming too much of a pain to only update the right ones).

4 lines of code changed in 1 file:

  • client/trunk/x11: Makefile.in (+4 -1)
qal21 2006-10-20 23:44 Rev.: 5036

Remove rcs-id handling code from the clients. Unnecessary with the svnversion system.

0 lines of code changed in 3 files:

  • client/trunk/x11: Makefile.am (-1), Makefile.in (-1), x11.c (-26)
qal21 2006-10-20 21:02 Rev.: 5034

Use 'svnversion' to add the svn revision to the version string.

1 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (+1 -1)
qal21 2006-09-26 08:23 Rev.: 4980

Fix display_mapscroll() in the x11 client to handle scrolling by greater than 1 tile at a time. Fix bug #1564584

7 lines of code changed in 1 file:

  • client/trunk/x11: x11.c (+7 -8)
mwedel 2006-09-21 00:50 Rev.: 4963

add propset ID's to client.
MSW 2006-09-20

8 lines of code changed in 16 files:

  • client/trunk/x11: clientbmap.h (new), png.c (new), rcs-id.h (new), sound.c (new), x11.c (+1 -1), x11.h (+1 -1), x11proto.h (+1 -1), xutil.c (new)
qal21 2006-09-20 23:58 Rev.: 4959

Adjust .cvsignore files to account for renamed binaries.

0 lines of code changed in 2 files:

  • client/trunk/x11: .cvsignore (new)
qal21 2006-09-20 23:54 Rev.: 4958

Change client binary names for 2.0 to crossfire-client-foo, where foo is either gtk, gtk2, or x11. Rebuild makefiles.

311 lines of code changed in 5 files:

  • client/trunk/x11: Makefile.am (changed), Makefile.in (changed), crossfire-client-x11.man (new 311)
Generated by StatSVN 0.7.0