From 34a492ac70b3217937eafeb6db3cb9bfdc18fba9 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 25 Nov 2011 01:11:42 +0300 Subject: Move A_UNUSED define to include file. --- src/main.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/main.h') diff --git a/src/main.h b/src/main.h index f0f3b8c2c..36173a1c8 100644 --- a/src/main.h +++ b/src/main.h @@ -98,10 +98,4 @@ #define PKG_DATADIR "" #endif -#ifdef __GNUC__ -#define A_UNUSED __attribute__ ((unused)) -#else -#define A_UNUSED -#endif - #endif -- cgit v1.2.3-70-g09d2 From 71fe51d38a406012e166589b7b720d83c1ab3ade Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 26 Nov 2011 15:28:20 +0300 Subject: Change version to 1.1.11.27. --- ChangeLog | 14 ++++++++++++++ README | 2 +- README.txt | 2 +- build/packwin | 2 +- configure.ac | 2 +- src/main.h | 4 ++-- 6 files changed, 20 insertions(+), 6 deletions(-) (limited to 'src/main.h') diff --git a/ChangeLog b/ChangeLog index cbf0956f3..8e6665a82 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2011-11-27 New release 1.1.11.27 +ManaPlus: +fix: show enemy relation in online list. +fix: dead monsters and floor items poisition. +fix: file name conflicts between skins and client data files. +add: update ru and es translations. +add: change chat log save path to yyyy-mm/dd/file.log. +add: support for incomplete replace tag for items for compotability with future version of mana. +add: background images for equipment window. +add: whisper player name in autocomplete list. +add: show yellow bar mode changes in debug chat tab. +add: limits for hair color and style for char creation dialog. +add: different animations depend on monster hp (only for evol). + 2011-11-12 New release 1.1.11.12 ManaPlus: fix: hide death message on reconnect. diff --git a/README b/README index a2a2e70d8..57d6cf834 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.11.12 Date: 2011-11-12 + Version: 1.1.11.27 Date: 2011-11-27 Development team: - See AUTHORS file for a list diff --git a/README.txt b/README.txt index 27db90d2c..2950b8e2a 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.1.11.12 Date: 2011-11-12 + Version: 1.1.11.27 Date: 2011-11-27 Development team: - See AUTHORS file for a list diff --git a/build/packwin b/build/packwin index 2d43c0b42..f81957f13 100755 --- a/build/packwin +++ b/build/packwin @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../mana_win/libs/dll/ \ - -DPRODUCT_VERSION="1.1.11.12" \ + -DPRODUCT_VERSION="1.1.11.27" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 26f448c8a..a2f596cc6 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([ManaPlus], [1.1.11.12], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.1.11.27], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index 36173a1c8..6f7c0980a 100644 --- a/src/main.h +++ b/src/main.h @@ -45,8 +45,8 @@ * different interfaces, which have different implementations for each server. */ -#define SMALL_VERSION "1.1.11.12" -#define CHECK_VERSION "01.01.11.12" +#define SMALL_VERSION "1.1.11.27" +#define CHECK_VERSION "01.01.11.27" #ifdef HAVE_CONFIG_H #include "../config.h" -- cgit v1.2.3-70-g09d2