Skip to content

Commit 4e3a1f7

Browse files
author
Charles PIGNEROL
committed
Version 6.10.1. Hostinfos test: added MachineData::isRemoteHost.
1 parent c87fec6 commit 4e3a1f7

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

cmake/version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
set (TK_UTIL_MAJOR_VERSION "6")
66
set (TK_UTIL_MINOR_VERSION "10")
7-
set (TK_UTIL_RELEASE_VERSION "0")
7+
set (TK_UTIL_RELEASE_VERSION "1")
88
set (TK_UTIL_VERSION ${TK_UTIL_MAJOR_VERSION}.${TK_UTIL_MINOR_VERSION}.${TK_UTIL_RELEASE_VERSION})
99

1010
set (TK_UTIL_SCRIPTING_MAJOR_VERSION ${TK_UTIL_MAJOR_VERSION})

src/tests/hostinfos.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ int main (int argc, char* argv [], char* envp[])
3636
<< machine.getOperatingSystem ( ).getNumericInformations ( )
3737
<< endl;
3838
cout << "Machine virtuelle : " << (true == machine.isVirtualMachine ( ) ? "oui" : "non") << endl;
39+
cout << "Machine distante : " << (true == machine.isRemoteHost ( ) ? "oui" : "non") << " (différente de celle de login via, par ex., ssh machine)" << endl;
3940

4041
if (argc <= 1)
4142
{

versions.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 6.10.1 : 22/11/24
2+
=================
3+
4+
Test hostinfos : ajout MachineData::isRemoteHost.
5+
6+
17
Version 6.10.0 : 04/10/24
28
=================
39

0 commit comments

Comments
 (0)