Update NEWS and ChangeLog, bump version number.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2510
This commit is contained in:
parent
003c82ce37
commit
ddb9af112d
8 changed files with 1605 additions and 1423 deletions
40
NEWS
40
NEWS
|
|
@ -1,16 +1,46 @@
|
|||
|
||||
1.7.0 (2012-06-09):
|
||||
|
||||
* Fixed gnome-screensaver desktop file (thanks Rahul Sundaram).
|
||||
* Updated COPYING to current version of GPL2 (thanks Rahul
|
||||
Sundaram).
|
||||
* Fix bug with detection of IWAD type by filename (thanks mether).
|
||||
* Reduce palette accuracy to 6 bits per channel, to more accurately
|
||||
emulate the PC VGA hardware (thanks GhostlyDeath).
|
||||
* Fix teleport behavior when emulating the alternate Final Doom
|
||||
* Running servers now re-resolve the address of the master server
|
||||
occasionally, to adapt to DNS address changes.
|
||||
* Error dialog is no longer shown on OS X when running from the
|
||||
console.
|
||||
* The Makefiles no longer use GNU make extensions, so the package
|
||||
builds on OpenBSD.
|
||||
* There is now an OPL MIDI debug option (-opldev), useful for
|
||||
when developing GENMIDI lumps.
|
||||
* A workaround for SDL mouse lag is now only used on Windows
|
||||
(where it is needed), and not on other systems. This fixes
|
||||
Chocolate Doom on AmigaOS (thanks Timo Sievänen).
|
||||
* UTF-8 usernames are supported, and Windows usernames with
|
||||
non-ASCII characters are now supported (thanks Alexandre
|
||||
Xavier).
|
||||
|
||||
Compatibility:
|
||||
* Palette accuracy is reduced to 6 bits per channel, to more
|
||||
accurately emulate the PC VGA hardware (thanks GhostlyDeath).
|
||||
* Fixed teleport behavior when emulating the alternate Final Doom
|
||||
executable (-gameversion final2) (thanks xttl).
|
||||
* Fix weapon cycling keys when playing in Shareware Doom and using
|
||||
|
||||
Bugs fixed:
|
||||
* Fixed weapon cycling keys when playing in Shareware Doom and using
|
||||
the IDKFA cheat (thanks Alexandre Xavier).
|
||||
* Fixed the default mouse buttons in the setup tool (thanks
|
||||
Alexandre Xavier).
|
||||
* Chat macros now work when vanilla_keyboard_mapping is turned
|
||||
off.
|
||||
* Default chat macros were fixed in the setup tool.
|
||||
* Ping time calculation was fixed for LAN search, and made more
|
||||
accurate for all searches.
|
||||
* Fixed bug with detection of IWAD type by filename (thanks mether).
|
||||
|
||||
libtextscreen:
|
||||
* There is now limited UTF-8 text support in the textscreen
|
||||
library, used in the label and input box widgets.
|
||||
* Scroll bar behavior was fixed (thanks Alexandre Xavier).
|
||||
* Input boxes stop editing and save when they lose their focus,
|
||||
correcting a previous counterintuitive behavior (thanks
|
||||
Twelve).
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@
|
|||
#define PACKAGE_NAME "Chocolate Doom"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "Chocolate Doom 1.6.0"
|
||||
#define PACKAGE_STRING "Chocolate Doom 1.7.0"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "chocolate-doom"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.6.0"
|
||||
#define PACKAGE_VERSION "1.7.0"
|
||||
|
||||
/* Change this when you create your awesome forked version */
|
||||
#define PROGRAM_PREFIX "chocolate-"
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
#define STDC_HEADERS 1
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.6.0"
|
||||
#define VERSION "1.7.0"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
1 ICON "../data/doom.ico"
|
||||
|
||||
1 VERSIONINFO
|
||||
PRODUCTVERSION 1,6,0,0
|
||||
FILEVERSION 1,6,0,0
|
||||
PRODUCTVERSION 1,7,0,0
|
||||
FILEVERSION 1,7,0,0
|
||||
FILETYPE 1
|
||||
{
|
||||
BLOCK "StringFileInfo"
|
||||
{
|
||||
BLOCK "040904E4"
|
||||
{
|
||||
VALUE "FileVersion", "1.6.0"
|
||||
VALUE "FileDescription", "1.6.0"
|
||||
VALUE "FileVersion", "1.7.0"
|
||||
VALUE "FileDescription", "1.7.0"
|
||||
VALUE "InternalName", "Chocolate-Doom"
|
||||
VALUE "CompanyName", "Chocolate-Doom"
|
||||
VALUE "LegalCopyright", "GNU General Public License"
|
||||
VALUE "ProductName", "Chocolate-Doom"
|
||||
VALUE "ProductVersion", "1.6.0"
|
||||
VALUE "ProductVersion", "1.7.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,21 +3,21 @@
|
|||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "setup-manifest.xml"
|
||||
|
||||
1 VERSIONINFO
|
||||
PRODUCTVERSION 1,6,0,0
|
||||
FILEVERSION 1,6,0,0
|
||||
PRODUCTVERSION 1,7,0,0
|
||||
FILEVERSION 1,7,0,0
|
||||
FILETYPE 1
|
||||
{
|
||||
BLOCK "StringFileInfo"
|
||||
{
|
||||
BLOCK "040904E4"
|
||||
{
|
||||
VALUE "FileVersion", "1.6.0"
|
||||
VALUE "FileVersion", "1.7.0"
|
||||
VALUE "FileDescription", "Chocolate-Doom Setup"
|
||||
VALUE "InternalName", "chocolate-setup"
|
||||
VALUE "CompanyName", "fraggle@gmail.com"
|
||||
VALUE "LegalCopyright", "GNU General Public License"
|
||||
VALUE "ProductName", "Chocolate-Doom Setup"
|
||||
VALUE "ProductVersion", "1.6.0"
|
||||
VALUE "ProductVersion", "1.7.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
AC_INIT(Chocolate Doom, 1.6.0, fraggle@gmail.com, chocolate-doom)
|
||||
AC_INIT(Chocolate Doom, 1.7.0, fraggle@gmail.com, chocolate-doom)
|
||||
|
||||
PACKAGE_SHORTDESC="Conservative Doom source port"
|
||||
PACKAGE_COPYRIGHT="Copyright (C) 1993-2011"
|
||||
PACKAGE_COPYRIGHT="Copyright (C) 1993-2012"
|
||||
PACKAGE_LICENSE="GNU General Public License, version 2"
|
||||
PACKAGE_MAINTAINER="Simon Howard"
|
||||
PACKAGE_URL="http://www.chocolate-doom.org/"
|
||||
|
|
|
|||
|
|
@ -11,19 +11,19 @@
|
|||
#define PACKAGE_NAME "Chocolate Doom"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "Chocolate Doom 1.6.0"
|
||||
#define PACKAGE_STRING "Chocolate Doom 1.7.0"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "chocolate-doom"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.6.0"
|
||||
#define PACKAGE_VERSION "1.7.0"
|
||||
|
||||
/* Change this when you create your awesome forked version */
|
||||
#define PROGRAM_PREFIX "chocolate-"
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.6.0"
|
||||
#define VERSION "1.7.0"
|
||||
|
||||
/* Define to 1 if your processor stores words with the most significant byte
|
||||
first (like Motorola and SPARC, unlike Intel and VAX). */
|
||||
|
|
|
|||
|
|
@ -32,21 +32,21 @@
|
|||
#endif
|
||||
|
||||
1 VERSIONINFO
|
||||
PRODUCTVERSION 1,6,0,0
|
||||
FILEVERSION 1,6,0,0
|
||||
PRODUCTVERSION 1,7,0,0
|
||||
FILEVERSION 1,7,0,0
|
||||
FILETYPE 1
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904E4"
|
||||
BEGIN
|
||||
VALUE "FileVersion", "1.6.0"
|
||||
VALUE "FileDescription", "Chocolate Doom 1.6.0"
|
||||
VALUE "FileVersion", "1.7.0"
|
||||
VALUE "FileDescription", "Chocolate Doom 1.7.0"
|
||||
VALUE "InternalName", "chocolate-doom"
|
||||
VALUE "CompanyName", "fraggle@gmail.com"
|
||||
VALUE "LegalCopyright", "GNU General Public License"
|
||||
VALUE "ProductName", "Chocolate Doom"
|
||||
VALUE "ProductVersion", "1.6.0"
|
||||
VALUE "ProductVersion", "1.7.0"
|
||||
END
|
||||
END
|
||||
END
|
||||
|
|
|
|||
Loading…
Reference in a new issue