prepare v2.6 release
This commit is contained in:
parent
843f8b8e63
commit
5d8c61e410
@ -80,6 +80,12 @@ Sends greetings and glops to pouet.net : http://pouet.net/prod.php?which=51865
|
|||||||
=== HISTORY ===
|
=== HISTORY ===
|
||||||
|
|
||||||
Short revision history :
|
Short revision history :
|
||||||
|
* 01/2019 2.6 SDL2/X11/win32 GDI support in addition to SDL1.2.x
|
||||||
|
Many more "8bits" computer constraints modes
|
||||||
|
Support for more C64 pictures formats
|
||||||
|
Support for Thomson file formats
|
||||||
|
Open URL when clicking them in oneline help
|
||||||
|
Brush and picture copy/paste support
|
||||||
* 05/2017 2.5 Support for several new file formats.
|
* 05/2017 2.5 Support for several new file formats.
|
||||||
CPC, ZX and Thomson constraints modes.
|
CPC, ZX and Thomson constraints modes.
|
||||||
* 10/2012 2.4 Animation
|
* 10/2012 2.4 Animation
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
;NSIS Modern User Interface
|
;NSIS Modern User Interface
|
||||||
;Based on the Example Script written by Joost Verburg
|
;Based on the Example Script written by Joost Verburg
|
||||||
|
|
||||||
!define VERSION 2.5.1946
|
!define VERSION 2.6.2472
|
||||||
!define API sdl
|
!define API sdl
|
||||||
|
|
||||||
!define FREETYPEDLL libfreetype-6.dll
|
!define FREETYPEDLL libfreetype-6.dll
|
||||||
|
|||||||
Binary file not shown.
@ -164,7 +164,7 @@ void Button_Message_initial(void)
|
|||||||
for (x=14,x_pos=0; x_pos<231; x_pos++,x++)
|
for (x=14,x_pos=0; x_pos<231; x_pos++,x++)
|
||||||
Pixel_in_window(x,y,Gfx->Logo_grafx2[offs_y+x_pos]);
|
Pixel_in_window(x,y,Gfx->Logo_grafx2[offs_y+x_pos]);
|
||||||
|
|
||||||
Print_in_window(130-4*26,88,"Copyright (c) 2007-2018 by",MC_Dark,MC_Light);
|
Print_in_window(130-4*26,88,"Copyright (c) 2007-2019 by",MC_Dark,MC_Light);
|
||||||
Print_in_window(130-4*23,100,"the Grafx2 project team",MC_Black,MC_Light);
|
Print_in_window(130-4*23,100,"the Grafx2 project team",MC_Black,MC_Light);
|
||||||
Print_in_window(130-4*26,112,"Copyright (c) 1996-2001 by",MC_Dark,MC_Light);
|
Print_in_window(130-4*26,112,"Copyright (c) 1996-2001 by",MC_Dark,MC_Light);
|
||||||
Print_in_window(130-4*13,122,"Sunset Design",MC_Black,MC_Light);
|
Print_in_window(130-4*13,122,"Sunset Design",MC_Black,MC_Light);
|
||||||
|
|||||||
10
src/gfx2.rc
10
src/gfx2.rc
@ -5,8 +5,8 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
1 VERSIONINFO
|
1 VERSIONINFO
|
||||||
FILEVERSION 2,6,0,2100
|
FILEVERSION 2,6,0,2472
|
||||||
PRODUCTVERSION 2,6,0,2100
|
PRODUCTVERSION 2,6,0,2472
|
||||||
FILEFLAGSMASK VS_FF_DEBUG
|
FILEFLAGSMASK VS_FF_DEBUG
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS VS_FF_DEBUG
|
FILEFLAGS VS_FF_DEBUG
|
||||||
@ -20,12 +20,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.6wip2100"
|
VALUE "FileVersion", "2.6.2472"
|
||||||
VALUE "InternalName", "grafx2"
|
VALUE "InternalName", "grafx2"
|
||||||
VALUE "LegalCopyright", "(c) 2007-2018 The GrafX2 Team, (c) 1996-2001 Sunset Design"
|
VALUE "LegalCopyright", "(c) 2007-2019 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.6wip2100"
|
VALUE "ProductVersion", "2.6.2472"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|||||||
@ -65,7 +65,7 @@ static const T_Help_table helptable_about[] =
|
|||||||
HELP_TEXT ("")
|
HELP_TEXT ("")
|
||||||
HELP_TEXT (" http://grafx2.tk")
|
HELP_TEXT (" http://grafx2.tk")
|
||||||
HELP_TEXT ("")
|
HELP_TEXT ("")
|
||||||
HELP_TEXT ("Copyright 2007-2018, the Grafx2 project team")
|
HELP_TEXT ("Copyright 2007-2019, the Grafx2 project team")
|
||||||
HELP_TEXT (" 1996-2001, SUNSET DESIGN")
|
HELP_TEXT (" 1996-2001, SUNSET DESIGN")
|
||||||
};
|
};
|
||||||
static const T_Help_table helptable_licence[] =
|
static const T_Help_table helptable_licence[] =
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
const char Program_version[]="2.6wip";
|
const char Program_version[]="2.6";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user