Skip to content

Commit c9ffe2b

Browse files
committed
0.0.2-beta2
1 parent 65ec903 commit c9ffe2b

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
cmake_minimum_required(VERSION 3.16.0)
22
project(nwindows
3-
VERSION 0.0.1
3+
VERSION 0.0.2
44
DESCRIPTION "Modern Text User Interface Library for C++."
55
HOMEPAGE_URL "https://rerdavies.github.io/nwindows/"
66
LANGUAGES CXX
77
)
8-
set(NWINDOWS_RELEASE_QUALIFIER "-beta1")
8+
set(NWINDOWS_RELEASE_QUALIFIER "-beta2")
99

1010

1111

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Documentation](https://img.shields.io/badge/documentation-Examples-blue)](https://github.com/rerdavies/nwindows/tree/main/examples)
66
<!--[![Documentation](https://img.shields.io/badge/documentation-Release%20Notes-blue)](https://reravies.github.io/nwindows/) -->
77

8-
*0.0.1-beta1*
8+
*0.0.2-beta2*
99

1010
The *NWindows* library is a C++ text user interface (TUI) library for building console applications on Linux.
1111
The library uses elements to compose user interfaces using an innovative and concise manipulator system. The library provides a rich set of elements with which to build user interfaces.

ReleaseNotes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
## Release Notes
22

3-
### NWindows 0.0.2-beta1
3+
### NWindows 0.0.2-beta2
44

55
- Polyfill checkbox/radio-button/dropdon characters on EGA/VGA (Linux) terminals.
6-
- can_display_character tests display font on Linux EGA/VGA terminals.
76
- Fallback to ASCII for particularly incapable terminals.
7+
- Back-port to GCC12.2 for Debian Bookworm.
8+
9+
810

911

1012
### NWindows 0.0.1-beta1

docs/src/NWindowsVersionInfo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
* SOFTWARE.
2222
*/
2323

24-
export const NWindowsVersion = "0.0.1-beta1";
24+
export const NWindowsVersion = "0.0.2-beta2";

src/include/NWindows/NWindowsVersionInfo.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
// Uses Semantic Versioning
2929
#define NWINDOWS_MAJOR_VERSION 0
3030
#define NWINDOWS_MINOR_VERSION 0
31-
#define NWINDOWS_BUILD_NUMBER 1 // increments with each release
32-
#define NWINDOWS_RELEASE_QUALIFIER "-beta1"
31+
#define NWINDOWS_BUILD_NUMBER 2 // increments with each release
32+
#define NWINDOWS_RELEASE_QUALIFIER "-beta2"
3333

3434

3535

0 commit comments

Comments
 (0)