Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# ReadDebugString - Changes <!-- omit in toc -->


## 0.0.2 - 27th August 2026

* Fixed **cmake/BuildType.cmake** so the default `CMAKE_BUILD_TYPE` is set correctly in the CMake cache (`set(CMAKE_BUILD_TYPE … CACHE …)` instead of `set(CACHE CMAKE_BUILD_TYPE …)`);


## 0.0.1 - 24th August 2026

* Replaced the initial executable scaffold with a Windows debugger message reader;
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

| Date | News Item |
| ------------------- | --------- |
| 27th August 2026 | [0.0.2 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.2) |
| 24th August 2026 | [0.0.1 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.1) |
| 16th August 2026 | [0.0.0 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.0) |
| 16th August 2026 | [0.0.0 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.0) |
Expand Down
6 changes: 2 additions & 4 deletions cmake/BuildType.cmake
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@

# ######################################################################## #
# File: /cmake/BuildType.cmake
#
# Purpose: CMake module file (for BuildType)
#
# Created: 16th October 2019
# Updated: 25th October 2024
# Updated: 27th August 2026
#
# ######################################################################## #

Expand Down Expand Up @@ -45,7 +44,7 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)

message(STATUS "Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.")

set(CACHE CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}"
set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE
STRING "Choose the type of build." FORCE
)

Expand All @@ -56,4 +55,3 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
endif()

# ############################## end of file ############################# #

2 changes: 1 addition & 1 deletion doc/readdebugstring.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Copyright (c) 2025-2026, Matthew Wilson and Synesis Information Systems
.\"
.TH READDEBUGSTRING 1 "August 2026" "readdebugstring 0.0.1" "User Commands"
.TH READDEBUGSTRING 1 "August 2026" "readdebugstring 0.0.2" "User Commands"
.SH NAME
readdebugstring \- read messages from the Windows debug output stream
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#define PROGRAM_VER_MAJOR 0
#define PROGRAM_VER_MINOR 0
#define PROGRAM_VER_PATCH 1
#define PROGRAM_VER_PATCH 2


union Payload
Expand Down
Loading