Skip to content

Commit 27bf2aa

Browse files
authored
Drop building of Qt 5.15 (#727)
1 parent 9b10ae5 commit 27bf2aa

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-20.04, windows-latest, macos-latest]
20-
qt_version: ["5.15", "6.5", "6.6"]
21-
exclude:
22-
- os: macos-latest
23-
qt_version: "5.15"
19+
os: [ubuntu-22.04, windows-latest, macos-latest]
20+
qt_version: ["6.5"]
2421

2522
runs-on: ${{ matrix.os }}
2623

@@ -34,7 +31,7 @@ jobs:
3431
uses: jurplel/install-qt-action@v4
3532
with:
3633
version: ${{ matrix.qt_version }}
37-
modules: ${{ matrix.qt_version != '5.15' && 'qt5compat' || '' }}
34+
modules: 'qt5compat'
3835
cache: true
3936

4037
- name: Get number of CPU cores

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ defaults -currentHost write -g AppleFontSmoothing -int 0
5050
A restart is required for this to take effect.
5151

5252
# Development
53-
Current development is done using QtCreator with the Microsft Visual C++ (msvc) compiler. Qt 6.5 is the prefered Qt version but this can also be built with Qt 5.15. This is also known to build successfully on various Linux distributions and macOS. Other platforms/compilers should be usable with minor modifications.
53+
Current development is done using QtCreator with the Microsft Visual C++ (msvc) compiler. Qt 6.5 is the currently supported Qt version. Older versions of Qt are likely to work but are not tested. Any fixes for older versions will be accepted as long as they do not introduce complex fixes. This application is also known to build successfully on various Linux distributions and macOS. Other platforms/compilers should be usable with minor modifications.
5454

5555
If you are familiar with building C++ Qt desktop applications with Qt Creator, then this should be as simple as opening `src/NotepadNext.pro` and build/run the project.
5656

0 commit comments

Comments
 (0)