Skip to content

Commit 6e4c21a

Browse files
- updated copyright year
- enabled hidpi - SetStyleSheetFromFileCross(): added support for Android and iOS
1 parent 7d19421 commit 6e4c21a

File tree

686 files changed

+2413
-2386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

686 files changed

+2413
-2386
lines changed

ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 1.1.2.1:
2+
- Release date:
3+
- New features:
4+
- added CentOS 8
5+
- Improvements:
6+
- SetStyleSheetFromFileCross(): added support for Android and iOS
7+
- updated CentOS 7 to 7.7
8+
- Fixed bugs:
9+
10+
111
Version 1.1.1.1:
212
- Release date: 10 Sep 2019
313
- New features:

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = CppDevTk
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.1.1
41+
PROJECT_NUMBER = 1.1.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
1. Prerequisites:
2-
- Qt 5.6.3 msvc2015 and Qt 5.6.1-1 android needed on Windows
3-
- Qt 5.6.3 macosx and Qt 5.9.8 ios needed on Mac OS X
2+
- Qt 5.9.8 msvc2015 and Qt 5.6.1-1 android needed on Windows
3+
- Qt 5.9.8 needed on Mac OS X and iOS
44
- JDK 8u144 needed on Windows
55
- JDK 8u144 needed on Mac OS X >= 10.7 and Apple provided JDK 6 on Mac < 10.7
66
- Android SDK r25.2.5 + NDK r10e needed on Windows

common.pri

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#****************************************************************************************************************************
2-
# Copyright (C) 2015 - 2019 CoSoSys Ltd <[email protected]>
2+
# Copyright (C) 2015 - 2020 CoSoSys Ltd <[email protected]>
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at
@@ -58,7 +58,7 @@ else {
5858
# version
5959
CPPDEVTK_VERSION_MAJOR = 1
6060
CPPDEVTK_VERSION_MINOR = 1
61-
CPPDEVTK_VERSION_PATCH = 1
61+
CPPDEVTK_VERSION_PATCH = 2
6262
win32 {
6363
CPPDEVTK_VERSION_BUILD = 1
6464
}
@@ -1382,6 +1382,10 @@ win32 {
13821382
QMAKE_RC += -d _WIN32 -d WIN32
13831383
isEqual(QMAKE_TARGET.arch, "x86_64") {
13841384
QMAKE_RC += -d _WIN64 -d WIN64
1385+
QMAKE_RC += -d _M_X64 -d _M_AMD64
1386+
}
1387+
else {
1388+
QMAKE_RC += -d _M_IX86
13851389
}
13861390

13871391
QMAKE_RC += -d _UNICODE -d UNICODE
@@ -1403,6 +1407,7 @@ win32 {
14031407

14041408
QMAKE_RC += -I $${PWD}/include
14051409
QMAKE_RC += -I $${CPPDEVTK_THIRD_PARTY_INCLUDE_DIR}
1410+
QMAKE_RC += -I $$[QT_INSTALL_HEADERS]
14061411
}
14071412

14081413

common_customization.pri

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#****************************************************************************************************************************
2-
# Copyright (C) 2015 - 2019 CoSoSys Ltd <[email protected]>
2+
# Copyright (C) 2015 - 2020 CoSoSys Ltd <[email protected]>
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

cppdevtk.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#****************************************************************************************************************************
2-
# Copyright (C) 2015 - 2019 CoSoSys Ltd <[email protected]>
2+
# Copyright (C) 2015 - 2020 CoSoSys Ltd <[email protected]>
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at

0 commit comments

Comments
 (0)