diff --git a/README.md b/README.md index fc28b09..c03736f 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ 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 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. +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` should be enough to build QTeletextMaker. ## Building ### Linux -Install the QtCore, QtGui and QtWidgets libraries and build headers, along with the qmake tool. Then type `qmake && make -j3` in a terminal, you can replace -j3 with the number of processor cores used for the compile process. +Install the QtCore, QtGui and QtWidgets libraries and build headers, along with the qmake tool. Then type `qmake5 && make -j3` in a terminal, you can replace -j3 with the number of processor cores used for the compile process. The above will place the qteletextmaker executable in the same directory as the source, type `./qteletextmaker` in the terminal to launch. Optionally, type `make install` afterwards to place the executable into /usr/local/bin. diff --git a/main.cpp b/main.cpp index ab68392..718f63b 100644 --- a/main.cpp +++ b/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.5.3-alpha"); + QApplication::setApplicationVersion("0.5.4-alpha"); QCommandLineParser parser; parser.setApplicationDescription(QApplication::applicationName()); parser.addHelpOption();