From 9942a165ab85b4f769158e4a1878cca067d7653d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 22 Oct 2016 17:01:17 +0300 Subject: Change version to 1.6.10.22. Also remove README.cmake --- ChangeLog | 5 +++ Makefile.am | 3 +- README | 2 +- README.cmake | 138 --------------------------------------------------------- README.md | 2 +- README.txt | 2 +- build/packevol | 2 +- build/packtmw | 2 +- build/packwin | 2 +- configure.ac | 2 +- src/main.h | 4 +- 11 files changed, 15 insertions(+), 149 deletions(-) delete mode 100644 README.cmake diff --git a/ChangeLog b/ChangeLog index 73c3035f3..3d5b65169 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-10-22 New release 1.6.10.22 +fix: character creation for packet version >= 20120307 (hercules) +add: support for redicts in online list (legacy servers) +add: option to show player name only on selected player. + 2016-10-08 New release 1.6.10.8 fix: fix modal dialogs if update window is open. fix: theme info dialog. diff --git a/Makefile.am b/Makefile.am index b52aa936c..536592c70 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,8 +22,7 @@ EXTRA_DIST = $(desktop_DATA) \ ChangeLog \ INSTALL \ PKGBUILD \ - README \ - README.cmake + README # Autopoint m4 stuff ACLOCAL_AMFLAGS = -I m4 diff --git a/README b/README index cdc5a4f5c..6b876f31c 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.6.10.8 Date: 2016-10-08 + Version: 1.6.10.22 Date: 2016-10-22 Build status: https://gitlab.com/manaplus/manaplus/badges/master/build.svg diff --git a/README.cmake b/README.cmake deleted file mode 100644 index b116780fb..000000000 --- a/README.cmake +++ /dev/null @@ -1,138 +0,0 @@ -Warning cmake is unsupported build type. - -0. Contents ------------- - 1. Basic syntax - 2. How do I... - 3. Crosscompiling using CMake - 4. Creating an installer binary for Windows - -This readme explains the most common parameters to CMake needed for -building mana, as well as setting up a cross build environement to -create Windows builds. - - -1. Basic syntax ---------------- - -cmake [options] - -If you don't need any special options just change to the directory where -you extracted the sources and do `cmake . && make' - -The syntax for setting variables to control CMakes behaviour is --D = - - -2. How do I... --------------- - -- Use a custom install prefix (like --prefix on autoconf)? - CMAKE_INSTALL_PREFIX=/path/to/prefix -- Create a debug build? - CMAKE_BUILD_TYPE=Debug . -- Add additional package search directories? - CMAKE_PREFIX_PATH=/prefix/path -- Add additional include search directories? - CMAKE_INCLUDE_PATH=/include/path - -For example, to build mana to install in /opt/mana, with libraries in -/build/mana/lib, and SDL-headers in /build/mana/include/SDL you'd use -the following command: - -cmake -D CMAKE_PREFIX_PATH=/build/mana \ - -D CMAKE_INCLUDE_PATH=/build/mana/include/SDL \ - -D CMAKE_INSTALL_PREFIX=/opt/mana . - - -3. Crosscompiling using CMake ------------------------------ - -The following example assumes you're doing a Windows-build from within a -UNIX environement, using mingw32 installed in /build/mingw32. - -- create a toolchain-file describing your environement: -$ cat /build/toolchain.cmake -# the name of the target operating system -SET(CMAKE_SYSTEM_NAME Windows) - -# toolchain prefix, can be overridden by -DTOOLCHAIN=... -IF (NOT TOOLCHAIN) - SET(TOOLCHAIN "i386-mingw32-") -ENDIF() - -# which compilers to use for C and C++ -SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc) -SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++) - -# here is the target environment located -SET(CMAKE_FIND_ROOT_PATH /build/mingw32 /build/mana-libs ) - -# adjust the default behaviour of the FIND_XXX() commands: -# search headers and libraries in the target environment, search -# programs in the host environment -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) - - -- set your PATH to include the bin-directory of your mingw32-installation: -$ export PATH=/build/mingw32/bin:$PATH - -- configure the source tree for the build, using the toolchain file: -$ cmake -DCMAKE_TOOLCHAIN_FILE=/build/toolchain.cmake . - -- use make for building the application - - -4. Creating an installer binary for Windows -------------------------------------------- - -Call cmake with the following flags: - - - CMAKE_TOOLCHAIN_FILE=/build/toolchain.cmake - The path to your toolchain file from chapter 3 - - VERSION=$VERSION - The version number for the build, used to set client identification and - EXE meta information. Needs to be in the form Major.Minor.Release.Build - - CMAKE_BUILD_TYPE=RelWithDebInfo|Release - RelWithDebInfo is the prefered build type, as it provides some backtrace - information without blowing the binary up too much. Don't use Debug. - -Install nsis (on Debian, apt-get install nsis), and get the UnTGZ plugin: - http://nsis.sourceforge.net/UnTGZ_plug-in -Place untgz.dll in nsis plugins directory (on Debian, /usr/share/nsis/Plugins/) - -Now chdir to packaging/windows. Make sure you have the msgfmt program (from -gettext), and execute make-translations.sh to generate translations from the -po-files in ../../translations/ - -Check that you've got the translations, and call `makensis setup.nsi' with the -following parameters: - - -DDLLDIR=/build/mana-libs/lib/ - The directory you've put the libraries. It's the one from the toolchain file - with /lib/ added at the end. If you'd like to include the Dr. MingW crash - handler place exchndl.dll in this directory. - -DPRODUCT_VERSION=$VERSION - Same as above - -DUPX=true - Set to upx if you'd like to compress the binaries using upx (and install upx, - of course). Will remove debug symbols. - -DEXESUFFIX=/src - Suffix to the source directory, pointing to the directory where the binaries - are. For cmake-builds that's /src. - -To build the installer for the 0.1.0.0 release you'd do the following: -$ cmake -DVERSION=0.1.0.0 -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DCMAKE_TOOLCHAIN_FILE=/build/toolchain.cmake . -[...] -$ make -[...] -$ cd packaging/windows -$ ./make-translations.sh -[...] -$ makensis -DDLLDIR=/build/mana-libs/lib/ -DPRODUCT_VERSION=0.1.0.0 \ - -DUPX=true -DEXESUFFIX=/src setup.nsi - -and end up with the installer in mana-0.1.0.0-win32.exe diff --git a/README.md b/README.md index 1a4bc4b94..27ff03dca 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![ManaPlus logo](data/icons/manaplus.png) -Version: 1.6.10.8 Date: 2016-10-08 +Version: 1.6.10.22 Date: 2016-10-22 ### Build status diff --git a/README.txt b/README.txt index e4bdf78ab..c2219e7d7 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ THE MANA PLUS CLIENT =============== - Version: 1.6.10.8 Date: 2016-10-08 + Version: 1.6.10.22 Date: 2016-10-22 Development team: - See AUTHORS file for a list diff --git a/build/packevol b/build/packevol index ad4f1afae..77ae7dd19 100755 --- a/build/packevol +++ b/build/packevol @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.6.10.8" \ + -DPRODUCT_VERSION="1.6.10.22" \ -DEXESUFFIX=/src \ -DUPX=true \ evol.nsi diff --git a/build/packtmw b/build/packtmw index c3435ecb8..ddf9aa98d 100755 --- a/build/packtmw +++ b/build/packtmw @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.6.10.8" \ + -DPRODUCT_VERSION="1.6.10.22" \ -DEXESUFFIX=/src \ -DUPX=true \ tmw.nsi diff --git a/build/packwin b/build/packwin index 6e7fca108..dfe24497a 100755 --- a/build/packwin +++ b/build/packwin @@ -7,7 +7,7 @@ dir=`pwd` cd packaging/windows ./make-translations.sh makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.6.10.8" \ + -DPRODUCT_VERSION="1.6.10.22" \ -DEXESUFFIX=/src \ -DUPX=true \ setup.nsi diff --git a/configure.ac b/configure.ac index 8b60a9c14..db87b484e 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([ManaPlus], [1.6.10.8], [akaras@inbox.ru], [manaplus]) +AC_INIT([ManaPlus], [1.6.10.22], [akaras@inbox.ru], [manaplus]) AM_INIT_AUTOMAKE([1.9]) AC_LANG_CPLUSPLUS diff --git a/src/main.h b/src/main.h index a96ac44fc..8184ad08a 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.6.10.8" -#define CHECK_VERSION "01.06.10.08" +#define SMALL_VERSION "1.6.10.22" +#define CHECK_VERSION "01.06.10.22" #ifdef HAVE_CONFIG_H #include "../config.h" -- cgit v1.2.3-60-g2f50