From 877478859c14406bedf0b8579041635fdc9fb8a1 Mon Sep 17 00:00:00 2001 From: Gavin MacGregor Date: Tue, 14 Oct 2025 15:57:49 +0100 Subject: [PATCH] Tag version 0.8-beta --- README.md | 5 ++--- src/qteletextmaker/main.cpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5e09fd7..05d750f 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ It is written in C++ using the Qt 6 widget libraries. Features - Load and save pages in TTI format. - Rendering of pages in Levels 1, 1.5, 2.5 and 3.5 including Local Objects and side panels. +- Rendering of DRCS characters imported from DRCS downloading pages. - Import and export of single pages in t42, EP1 and HTT formats. - Export PNG and animated GIF images of pages. - Undo and redo of editing actions. - Interactive X/26 Local Enhancement Data triplet editor. - Editing of X/27/4 and X/27/5 compositional links to enhancement data pages. - Palette editor. -- Configurable zoom. -- View pages in 4:3, 16:9 pillar-box and 16:9 stretch aspect ratios. +- View pages in 4:3, 16:9 pillar-box and 16:9 stretch aspect ratios with configurable zoom level. - View pages in mix and attribute-less monochrome modes. Although designed on and developed for Linux, the Qt libraries are cross platform so a Windows executable can be built. A Windows executable can be found within the "Releases" link, compiled on a Linux host using [MXE](https://github.com/mxe/mxe) based on [these instructions](https://web.archive.org/web/20230606021352/https://blog.8bitbuddhism.com/2018/08/22/cross-compiling-windows-applications-with-mxe/). After MXE is installed `make qt6-qtbase` should build and install the required dependencies to build QTeletextMaker. @@ -37,7 +37,6 @@ Optionally, type `cmake --install .` to place the executable into /usr/local/bin ## Current limitations The following X/26 enhancement triplets are not rendered by the editor, although the list is fully aware of them. - Invocation of Objects from POP and GPOP pages. -- DRCS characters. - Proportional font spacing on Level 3.5 ## Using the X/26 triplet editor diff --git a/src/qteletextmaker/main.cpp b/src/qteletextmaker/main.cpp index f2852ef..cd6afbb 100644 --- a/src/qteletextmaker/main.cpp +++ b/src/qteletextmaker/main.cpp @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) QApplication::setApplicationDisplayName(QApplication::applicationName()); QApplication::setOrganizationName("gkmac.co.uk"); QApplication::setOrganizationDomain("gkmac.co.uk"); - QApplication::setApplicationVersion("0.7.2-beta"); + QApplication::setApplicationVersion("0.8-beta"); QCommandLineParser parser; parser.setApplicationDescription(QApplication::applicationName()); parser.addHelpOption();