Release 1.89.

This commit is contained in:
Jason Hood 2019-04-29 20:20:34 +10:00
parent 0fc890dddd
commit 37f92009f6
4 changed files with 15 additions and 9 deletions

3
ANSI.c
View File

@ -226,6 +226,9 @@
v1.88, 1 March, 2019: v1.88, 1 March, 2019:
a detached process has no console handle (fixes set_ansicon). a detached process has no console handle (fixes set_ansicon).
v1.89, 29 April, 2019:
an eight-digit window handle would break my custom printf.
*/ */
#include "ansicon.h" #include "ansicon.h"

View File

@ -99,7 +99,7 @@
add log level 32 to log CreateFile. add log level 32 to log CreateFile.
*/ */
#define PDATE L"1 March, 2019" #define PDATE L"29 April, 2019"
#include "ansicon.h" #include "ansicon.h"
#include "version.h" #include "version.h"

View File

@ -3,7 +3,7 @@
Copyright 2005-2019 Jason Hood Copyright 2005-2019 Jason Hood
Version 1.88. Freeware Version 1.89. Freeware
Description Description
@ -340,6 +340,9 @@ Version History
Legend: + added, - bug-fixed, * changed. Legend: + added, - bug-fixed, * changed.
1.89 - 29 April, 2019:
- fix occasional freeze on startup (bug converting 8-digit window handle).
1.88 - 1 March, 2019: 1.88 - 1 March, 2019:
- fix ANSICON environment variable when there is no console. - fix ANSICON environment variable when there is no console.
@ -647,5 +650,5 @@ Distribution
in LICENSE.txt. in LICENSE.txt.
========================== ===========================
Jason Hood, 1 March, 2019. Jason Hood, 29 April, 2019.

View File

@ -2,11 +2,11 @@
version.h - Version defines. version.h - Version defines.
*/ */
#define PVERS L"1.88" // wide string #define PVERS L"1.89" // wide string
#define PVERSA "1.88" // ANSI string (windres 2.16.91 didn't like L) #define PVERSA "1.89" // ANSI string (windres 2.16.91 didn't like L)
#define PVERE L"188" // wide environment string #define PVERE L"189" // wide environment string
#define PVEREA "188" // ANSI environment string #define PVEREA "189" // ANSI environment string
#define PVERB 1,8,8,0 // binary (resource) #define PVERB 1,8,9,0 // binary (resource)
#ifdef _WIN64 #ifdef _WIN64
# define BITS L"64" # define BITS L"64"