Prepare for a 2.8 release

This commit is contained in:
PulkoMandy 2021-03-24 21:54:59 +01:00
parent 8e2d28b5cf
commit 3fa8c98c17
6 changed files with 430 additions and 429 deletions

View File

@ -119,7 +119,7 @@ Copyright 2018 Jordan Christiansen
Copyright 2018 Alex Myczko Copyright 2018 Alex Myczko
Copyright 2018 Alexander Wilms Copyright 2018 Alexander Wilms
Copyright 2018 Philip Linde Copyright 2018 Philip Linde
Copyright 2017-2020 Thomas Bernard Copyright 2017-2021 Thomas Bernard
Copyright 2015-2018 Adrian Castravete Copyright 2015-2018 Adrian Castravete
Copyright 2014 Sergii Pylypenko Copyright 2014 Sergii Pylypenko
Copyright 2012 Matthias Ruster (mazzearos) Copyright 2012 Matthias Ruster (mazzearos)

View File

@ -6,7 +6,7 @@ _/ _/ _/ _/ _/ _/ _/ _/ _/
GrafX2 - The Ultimate 256-color bitmap paint program GrafX2 - The Ultimate 256-color bitmap paint program
Copyright (C)1996-2001 Sunset Design (G.Dorme & K.Maritaud) Copyright (C)1996-2001 Sunset Design (G.Dorme & K.Maritaud)
Copyright (C)2007-2020 the Grafx2 Project Team (A.Destugues & Y.Rizoud Copyright (C)2007-2021 the Grafx2 Project Team (A.Destugues & Y.Rizoud
& T.Bernard) & T.Bernard)
------------------------------------- -------------------------------------
@ -82,6 +82,8 @@ Sends greetings and glops to pouet.net : http://pouet.net/prod.php?which=51865
=== HISTORY === === HISTORY ===
Short revision history : Short revision history :
* ??/2021 2.8 Fix several crashes
More Amstrad CPC file formats support
* 02/2020 2.7 Relative directory bookmarks * 02/2020 2.7 Relative directory bookmarks
Many more 8bits/16bits computer formats supported Many more 8bits/16bits computer formats supported
Joystick and mouse control rework Joystick and mouse control rework
@ -102,7 +104,7 @@ Short revision history :
* 09/2009 2.1 GUI improvements and some new features. * 09/2009 2.1 GUI improvements and some new features.
* 06/2009 2.0 Completed the features planned by Sunset Design. * 06/2009 2.0 Completed the features planned by Sunset Design.
* 04/2009 2.0b99.0% Many new features and critical fixes. * 04/2009 2.0b99.0% Many new features and critical fixes.
* 01/2009 2.0b98.0% Now running Linux, Windows, Mac OS X, BeOS, Haiku, * 01/2009 2.0b98.0% Now running on Linux, Windows, Mac OS X, BeOS, Haiku,
AmigaOS 3.x and 4, MorphOS, SkyOS and gp2x. AmigaOS 3.x and 4, MorphOS, SkyOS and gp2x.
* 10/2008 2.0b97.0% Our first public beta release. * 10/2008 2.0b97.0% Our first public beta release.
* 07/2008 Our first public alpha release, Windows and Linux only * 07/2008 Our first public alpha release, Windows and Linux only
@ -121,7 +123,6 @@ new features and bugfixes in each numbered version.
We enjoy programming GrafX2, we hope you will enjoy drawing with it. If you like We enjoy programming GrafX2, we hope you will enjoy drawing with it. If you like
the program, here is a list of things you can do: the program, here is a list of things you can do:
* Register as an user at https://www.ohloh.net/p/grafx2 to improve our Karma
* Port GrafX2 to your favourite platform * Port GrafX2 to your favourite platform
* Report bugs or ask for features you miss (you'll get credited in the * Report bugs or ask for features you miss (you'll get credited in the
helpscreen !) helpscreen !)

View File

@ -5,8 +5,8 @@
#endif #endif
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION 2,8,0,2979 FILEVERSION 2,8,0,3091
PRODUCTVERSION 2,8,0,2979 PRODUCTVERSION 2,8,0,3091
FILEFLAGSMASK VS_FF_DEBUG FILEFLAGSMASK VS_FF_DEBUG
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG FILEFLAGS VS_FF_DEBUG
@ -23,12 +23,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "The GrafX2 Team" VALUE "CompanyName", "The GrafX2 Team"
VALUE "FileDescription", "The ultimate 256-color painting programm" VALUE "FileDescription", "The ultimate 256-color painting programm"
VALUE "FileVersion", "2.8wip2979" VALUE "FileVersion", "2.8.3091"
VALUE "InternalName", "grafx2" VALUE "InternalName", "grafx2"
VALUE "LegalCopyright", "(c) 2007-2020 The GrafX2 Team, (c) 1996-2001 Sunset Design" VALUE "LegalCopyright", "(c) 2007-2021 The GrafX2 Team, (c) 1996-2001 Sunset Design"
VALUE "OriginalFilename", "grafx2.exe" VALUE "OriginalFilename", "grafx2.exe"
VALUE "ProductName", "GrafX2" VALUE "ProductName", "GrafX2"
VALUE "ProductVersion", "2.8wip2979" VALUE "ProductVersion", "2.8.3091"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -34,7 +34,7 @@ resource app_signature "application/x-vnd.GrafX2";
resource app_version { resource app_version {
major = 2, major = 2,
middle = 8, middle = 8,
minor = 2979, minor = 3091,
variety = B_APPV_BETA, variety = B_APPV_BETA,
internal = 0, internal = 0,

View File

@ -1 +1 @@
const char Program_version[]="2.8wip"; const char Program_version[]="2.8";