Tag version 0.1-alpha

This commit is contained in:
G.K.MacGregor
2021-04-11 18:40:38 +01:00
parent 75f06ce064
commit 2aad1e7f5e
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ Features
- Configurable zoom.
- View teletext pages in 4:3, 16:9 pillar-box and 16:9 stretch aspect ratios.
Although designed on and developed for Linux, the Qt 5 libraries are cross platform so hopefully it should be compilable on Windows. And maybe MacOS as well.
Although designed on and developed for Linux, the Qt 5 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://blog.8bitbuddhism.com/2018/08/22/cross-compiling-windows-applications-with-mxe/). After MXE is installed `make qtbase` will be enough to build QTeletextMaker.
## Building
### Linux

View File

@@ -134,7 +134,7 @@ void MainWindow::about()
{
QMessageBox::about(this, tr("About QTeletextMaker"), tr("<b>QTeletextMaker</b><br>"
"An open source Level 2.5 teletext page editor.<br>"
"<i>Pre-alpha version</i><br><br>"
"<i>Version 0.1-alpha</i><br><br>"
"Copyright (C) 2020, 2021 Gavin MacGregor<br><br>"
"Released under the GNU General Public License version 3<br>"
"<a href=\"https://github.com/gkthemac/qteletextmaker\">https://github.com/gkthemac/qteletextmaker</a>"));