pumped version to 0.7.8

ran autoreconf

updated changelog
This commit is contained in:
Pauli Manninen 2004-05-27 22:10:15 +00:00
parent fe9c19b57f
commit fc265cce6b
4 changed files with 20 additions and 17 deletions

View file

@ -1,4 +1,4 @@
CVS HEAD:
Version 0.7.8:
* changed experience gauge, it is now shown next to hitpoints bar
* search works with coordinates, use it like: /30,15
* weapon type's tooltip shows its effectiveness against all known enemies on the battlefield
@ -46,14 +46,17 @@ CVS HEAD:
* fixed units in swamp villages being submerged
* fixed resizing and changing video modes not working while in lobby
* fixed hotkeys not working while in lobby
* fixed invalid UTF-8 sequences being generated by wstring_to_utf8, causing display bugs with some accented characters on some platforms
* fixed saving being impossible when save games have accented characters on MacOSX
* fixed segfault in random map generation
* fixed Out of Sync bug
* fixed Out of Sync bugs
* fixed bug where pressing 'n' while a unit is attacking would transfer damage to another unit
* fixed entering a chat message while the message is selected would keep the area selected, and cause a crash upon next keypress (#9114)
* fixed chat messages being dropped
* fixed text ellipsis (triple dot being added after too long text) not being UTF-8-aware.
* ignore unicode value of arrow keys in text boxes; so they do not cause problems in platforms where there is one.
* fixed invalid UTF-8 sequences being generated by wstring_to_utf8, causing display bugs with some accented characters on some platforms
* fixed word_wrap_text not being UTF-8 aware
* ignore unicode value of arrow keys in text boxes; so they do not cause problems in platforms where there is one.
* added home and end to keys whose "Unicode" value should be ignored when handling textboxes (fixes home and end being buggy on MacOSX)
* removed alpha keyword from unit data, changed image files to have it
* added font::make_text_ellipsis function, that works like word_wrap_text, but instead adds ellipsis on too long text
* changed portable_isspace() so it only returns true on ASCII spaces

22
configure vendored
View file

@ -1,7 +1,7 @@
#! /bin/sh
# From configure.ac Revision: 1.45 .
# From configure.ac Revision: 1.46 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for Battle for Wesnoth 0.7.8-CVS.
# Generated by GNU Autoconf 2.59 for Battle for Wesnoth 0.7.8.
#
# Report bugs to <davidnwhite@optusnet.com.au>.
#
@ -270,8 +270,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='Battle for Wesnoth'
PACKAGE_TARNAME='wesnoth'
PACKAGE_VERSION='0.7.8-CVS'
PACKAGE_STRING='Battle for Wesnoth 0.7.8-CVS'
PACKAGE_VERSION='0.7.8'
PACKAGE_STRING='Battle for Wesnoth 0.7.8'
PACKAGE_BUGREPORT='davidnwhite@optusnet.com.au'
ac_unique_file="src/actions.cpp"
@ -789,7 +789,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures Battle for Wesnoth 0.7.8-CVS to adapt to many kinds of systems.
\`configure' configures Battle for Wesnoth 0.7.8 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -851,7 +851,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Battle for Wesnoth 0.7.8-CVS:";;
short | recursive ) echo "Configuration of Battle for Wesnoth 0.7.8:";;
esac
cat <<\_ACEOF
@ -981,7 +981,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
Battle for Wesnoth configure 0.7.8-CVS
Battle for Wesnoth configure 0.7.8
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@ -995,7 +995,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Battle for Wesnoth $as_me 0.7.8-CVS, which was
It was created by Battle for Wesnoth $as_me 0.7.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@ -1609,7 +1609,7 @@ fi
# Define the identity of the package.
PACKAGE='wesnoth'
VERSION='0.7.8-CVS'
VERSION='0.7.8'
cat >>confdefs.h <<_ACEOF
@ -7375,7 +7375,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
This file was extended by Battle for Wesnoth $as_me 0.7.8-CVS, which was
This file was extended by Battle for Wesnoth $as_me 0.7.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -7438,7 +7438,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
Battle for Wesnoth config.status 0.7.8-CVS
Battle for Wesnoth config.status 0.7.8
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View file

@ -5,7 +5,7 @@
#######################################################################
AC_PREREQ([2.57])
AC_INIT([Battle for Wesnoth], [0.7.8-CVS], [davidnwhite@optusnet.com.au], [wesnoth])
AC_INIT([Battle for Wesnoth], [0.7.8], [davidnwhite@optusnet.com.au], [wesnoth])
AC_REVISION([$Revision$])

View file

@ -25,7 +25,7 @@ namespace game_config
int rest_heal_amount= 2;
int recall_cost = 20;
int kill_experience = 8;
const std::string version = "0.7.8-CVS";
const std::string version = "0.7.8";
bool debug = false, editor = false;
std::string game_icon = "wesnoth-icon.png", game_title, game_logo, title_music;