Changed version to 0.57.1; Updated release notes

This commit is contained in:
zicodxx 2011-07-16 21:21:11 +02:00
parent c8b7f65809
commit 23c04c17e1
4 changed files with 13 additions and 2 deletions

View file

@ -4,6 +4,7 @@ D1X-Rebirth Changelog
--------
main/songs.c: Correctly proceed to new Redbook track if songnum != Song_playing (hopefully - to confirm); Using songs_stop_all() in songs_uninit() to clear redundancy; added some notes to functions to shine a bit light on the mess of some functions; Also if there's no escape song, continue level music
arch/sdl/rbaudio.c, main/inferno.c: Fixing Redbook hooks: Initialize last_check_time in RBACheckFinishedHook(); Execute RBACheckFinishedHook() during EVENT_WINDOW_DRAW in standard_handler() as EVENT_IDLE rarely happens if you have a shivering Joystick connected for example
arch/carbon/conf.h, SConstruct: Changed version to 0.57.1; Updated release notes
20110715
--------

View file

@ -1,6 +1,11 @@
RELEASE NOTES
=============
What's new in 0.57.1
--------------------
* Several Bugfixes
What's new in 0.57
------------------
* OpenGL ES Support by Florian Feucht and Oliver Haag
@ -39,3 +44,8 @@ Special notes for this release
'warning: variable VARIABLE_NAME set but not used [-Wunused-but-set-variable]'
Note that these warnings are totally harmless and we will fix them as soon as possible.
* The Tracker server is brand new and might still have a bug or two. If you encounter a bug, let us know so we can properly fix it. Most can be fixed without a modification on the game itself.
Known issues
------------
* On Windows the mouse is not correctly released if using ALT+TAB to minimize the game. This is not a bug in the program but rather the SDL library. It can be worked around by pausing the game and using ALT+ENTER to get the game to windowed mode. The mosue should not be stuck then anymore

View file

@ -11,7 +11,7 @@ target = 'd1x-rebirth'
# version number
D1XMAJOR = 0
D1XMINOR = 57
D1XMICRO = 0
D1XMICRO = 1
VERSION_STRING = ' v' + str(D1XMAJOR) + '.' + str(D1XMINOR) + '.' + str(D1XMICRO)
# installation path

View file

@ -12,7 +12,7 @@
#define D1XMINOR "57"
/* d2x micro version */
#define D1XMICRO "0"
#define D1XMICRO "1"
/* Define if you want to build the editor */
/* #undef EDITOR */