Skip to content

Commit 19c9c21

Browse files
fixed win sdk v7.1A paths.
1 parent f8ec1d6 commit 19c9c21

31 files changed

+46
-70
lines changed

ChangeLog

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
Version 1.0.7.1:
2-
- Release date:
3-
- New features:
4-
- Improvements:
5-
- Fixed bugs:
6-
7-
81
Version 1.0.6.1:
92
- Release date: 7 Jan 2018
103
- New features:

Doxyfile

Lines changed: 1 addition & 1 deletion
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.0.7
41+
PROJECT_NUMBER = 1.0.6
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

common.pri

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ else {
5858
# version
5959
CPPDEVTK_VERSION_MAJOR = 1
6060
CPPDEVTK_VERSION_MINOR = 0
61-
CPPDEVTK_VERSION_PATCH = 7
61+
CPPDEVTK_VERSION_PATCH = 6
6262
win32 {
6363
CPPDEVTK_VERSION_BUILD = 1
6464
}
@@ -612,16 +612,16 @@ else {
612612
error("Qt must set _MSC_VER in QMAKE_COMPILER_DEFINES")
613613
}
614614
if(isEqual(CPPDEVTK_MSC_VER, "1700")|greaterThan(CPPDEVTK_MSC_VER, 1700)):contains(DEFINES, _USING_V110_SDK71_) {
615-
INCLUDEPATH = "C:/Program Files (x86)/Microsoft SDKs/Windows/7.1A/Include" $${INCLUDEPATH}
615+
INCLUDEPATH = "C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Include" $${INCLUDEPATH}
616616
isEqual(QMAKE_TARGET.arch, "x86_64") {
617617
QMAKE_LFLAGS_WINDOWS *= /SUBSYSTEM:WINDOWS,5.02
618618
QMAKE_LFLAGS_CONSOLE *= /SUBSYSTEM:CONSOLE,5.02
619-
LIBS = -L"C:/Program Files (x86)/Microsoft SDKs/Windows/7.1A/Lib/x64" $${LIBS}
619+
LIBS = -L"C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib/x64" $${LIBS}
620620
}
621621
else {
622622
QMAKE_LFLAGS_WINDOWS *= /SUBSYSTEM:WINDOWS,5.01
623623
QMAKE_LFLAGS_CONSOLE *= /SUBSYSTEM:CONSOLE,5.01
624-
LIBS = -L"C:/Program Files (x86)/Microsoft SDKs/Windows/7.1A/Lib" $${LIBS}
624+
LIBS = -L"C:/Program Files (x86)/Microsoft SDKs/Windows/v7.1A/Lib" $${LIBS}
625625
}
626626
}
627627
}

cppdevtk.spec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777

7878

7979
Name: cppdevtk
80-
Version: 1.0.7
80+
Version: 1.0.6
8181
%if (0%{?centos} || 0%{?rhel})
8282
Release: 1.el%{rhel}_%{centos_minor_ver}
8383
%else
@@ -591,9 +591,6 @@ exit 0
591591

592592

593593
%changelog
594-
* Mon Jan 8 2018 Cristian ANITA <[email protected]>, <[email protected]>
595-
- v1.0.7.1
596-
- to fill
597594
* Sun Jan 7 2018 Cristian ANITA <[email protected]>, <[email protected]>
598595
- v1.0.6.1
599596
- added CallTraits

debian/changelog

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
cppdevtk (1.0.7-0ubuntu1) xenial; urgency=medium
2-
3-
* to fill
4-
5-
-- Cristian ANITA <[email protected]>, <[email protected]> Mon, 8 Jan 2018 14:19:46 +0300
6-
7-
81
cppdevtk (1.0.6-0ubuntu1) xenial; urgency=medium
92

103
* added CallTraits

debian_distros/ubuntu_14.04/debian/changelog

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
cppdevtk (1.0.7-0ubuntu1) trusty; urgency=medium
2-
3-
* to fill
4-
5-
-- Cristian ANITA <[email protected]>, <[email protected]> Mon, 8 Jan 2018 14:19:46 +0300
6-
7-
81
cppdevtk (1.0.6-0ubuntu1) trusty; urgency=medium
92

103
* added CallTraits

doc/cppdevtk_api.chm

86 Bytes
Binary file not shown.

include/cppdevtk/config/product_info.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
// TODO: keep updated
4444
#define CPPDEVTK_VERSION_MAJOR 1 ///< \attention May have maximum 2 digits.
4545
#define CPPDEVTK_VERSION_MINOR 0 ///< \attention May have maximum 2 digits.
46-
#define CPPDEVTK_VERSION_PATCH 7 ///< \attention May have maximum 2 digits.
46+
#define CPPDEVTK_VERSION_PATCH 6 ///< \attention May have maximum 2 digits.
4747
#ifdef _WIN32
4848
#define CPPDEVTK_VERSION_BUILD 1
4949
#endif

test/test_base/android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<manifest package="org.qtproject.example.cppdevtk_test_base" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.7" android:versionCode="107" android:installLocation="auto">
2+
<manifest package="org.qtproject.example.cppdevtk_test_base" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.6" android:versionCode="106" android:installLocation="auto">
33
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="cppdevtk_test_base">
44
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
55
android:name="org.qtproject.qt5.android.bindings.QtActivity"

test/test_caps_lock_widget/android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<manifest package="org.qtproject.example.cppdevtk_test_caps_lock_widget" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.7" android:versionCode="107" android:installLocation="auto">
2+
<manifest package="org.qtproject.example.cppdevtk_test_caps_lock_widget" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.6" android:versionCode="106" android:installLocation="auto">
33
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="cppdevtk_test_caps_lock_widget">
44
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
55
android:name="org.qtproject.qt5.android.bindings.QtActivity"

0 commit comments

Comments
 (0)