Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set (TK_UTIL_MAJOR_VERSION "6")
set (TK_UTIL_MINOR_VERSION "14")
set (TK_UTIL_RELEASE_VERSION "1")
set (TK_UTIL_RELEASE_VERSION "2")
set (TK_UTIL_VERSION ${TK_UTIL_MAJOR_VERSION}.${TK_UTIL_MINOR_VERSION}.${TK_UTIL_RELEASE_VERSION})

set (TK_UTIL_SCRIPTING_MAJOR_VERSION ${TK_UTIL_MAJOR_VERSION})
Expand Down
5 changes: 5 additions & 0 deletions src/TkUtilScripting/TkUtilScripting.i
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
using namespace TkUtil;
%} // module TkUtil

// v 6.14.2 : possible usage de :
// s = UTF8String ("Une chaîne de caractères", Charset.UTF_8)
// print (s.utf8 ( ))
%include "std_string.i" // v 6.14.2

%include TkUtil/UTF8String.h
%include TkUtil/ReferencedObject.h
%include TkUtil/Version.h
Expand Down
15 changes: 15 additions & 0 deletions versions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Version 6.14.2 : 13/03/26
=================

Correctif binding swig concernant la classe UTFString. En python on peut maintenant effectuer :

s = UTF8String ("Une chaîne de caractères", Charset.UTF_8)
print (s.utf8 ( ))

voire même :

s = UTF8String ( )
appelCplusPlus (s)
print (s.utf8 ( ))


Version 6.14.1 : 20/02/26
=================

Expand Down
Loading