Skip to content

Commit 37f9200

Browse files
committed
Release 1.89.
1 parent 0fc890d commit 37f9200

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

ANSI.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,9 @@
226226
227227
v1.88, 1 March, 2019:
228228
a detached process has no console handle (fixes set_ansicon).
229+
230+
v1.89, 29 April, 2019:
231+
an eight-digit window handle would break my custom printf.
229232
*/
230233

231234
#include "ansicon.h"

ansicon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
add log level 32 to log CreateFile.
100100
*/
101101

102-
#define PDATE L"1 March, 2019"
102+
#define PDATE L"29 April, 2019"
103103

104104
#include "ansicon.h"
105105
#include "version.h"

readme.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Copyright 2005-2019 Jason Hood
55

6-
Version 1.88. Freeware
6+
Version 1.89. Freeware
77

88

99
Description
@@ -340,6 +340,9 @@ Version History
340340

341341
Legend: + added, - bug-fixed, * changed.
342342

343+
1.89 - 29 April, 2019:
344+
- fix occasional freeze on startup (bug converting 8-digit window handle).
345+
343346
1.88 - 1 March, 2019:
344347
- fix ANSICON environment variable when there is no console.
345348

@@ -647,5 +650,5 @@ Distribution
647650
in LICENSE.txt.
648651

649652

650-
==========================
651-
Jason Hood, 1 March, 2019.
653+
===========================
654+
Jason Hood, 29 April, 2019.

version.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
version.h - Version defines.
33
*/
44

5-
#define PVERS L"1.88" // wide string
6-
#define PVERSA "1.88" // ANSI string (windres 2.16.91 didn't like L)
7-
#define PVERE L"188" // wide environment string
8-
#define PVEREA "188" // ANSI environment string
9-
#define PVERB 1,8,8,0 // binary (resource)
5+
#define PVERS L"1.89" // wide string
6+
#define PVERSA "1.89" // ANSI string (windres 2.16.91 didn't like L)
7+
#define PVERE L"189" // wide environment string
8+
#define PVEREA "189" // ANSI environment string
9+
#define PVERB 1,8,9,0 // binary (resource)
1010

1111
#ifdef _WIN64
1212
# define BITS L"64"

0 commit comments

Comments
 (0)