From: CEA Support SALOME Date: Thu, 3 Mar 2016 09:32:08 +0000 (+0100) Subject: fixing a problem with the window and module titles X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c9dd4f5d80b4868ecc8264fe9da7b51d61b0a153;p=tools%2FSALOME.git fixing a problem with the window and module titles --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ab3ec5f..4ba49a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,4 +117,5 @@ SALOME_INSTALL_SCRIPTS("${_salome_context_API_SCRIPTS}" ${SALOME_INSTALL_SCRIPT_ SET(_salome_context_BASHRC ${KERNEL_ROOT_DIR}/bin/salome/appliskel/.bashrc ) -SALOME_INSTALL_SCRIPTS("${_salome_context_BASHRC}" $ENV{SALOME_PROFILE_ROOT_DIR}) +FILE(TO_CMAKE_PATH $ENV{SALOME_PROFILE_ROOT_DIR} _SALOME_PROFILE_ROOT_DIR) +SALOME_INSTALL_SCRIPTS("${_salome_context_BASHRC}" ${_SALOME_PROFILE_ROOT_DIR}) diff --git a/resources/about.png b/resources/about.png index 4d38ef2..c73d028 100644 Binary files a/resources/about.png and b/resources/about.png differ diff --git a/resources/splash.png b/resources/splash.png index 4d38ef2..c73d028 100644 Binary files a/resources/splash.png and b/resources/splash.png differ diff --git a/src/resources/LightApp_msg_en.ts b/src/resources/LightApp_msg_en.ts index 6e138c7..e729f8e 100644 --- a/src/resources/LightApp_msg_en.ts +++ b/src/resources/LightApp_msg_en.ts @@ -13,11 +13,11 @@ APP_NAME - SALOME SALOME + SALOME APP_VERSION - V7.8.0 + V7.8.0BR ABOUT_LICENSE @@ -25,7 +25,7 @@ ABOUT_VERSION - Version 7.8.0 + Version 7.8.0BR ABOUT_TITLE diff --git a/src/resources/LightApp_msg_fr.ts b/src/resources/LightApp_msg_fr.ts index 2e4e69a..1fe8411 100644 --- a/src/resources/LightApp_msg_fr.ts +++ b/src/resources/LightApp_msg_fr.ts @@ -13,11 +13,11 @@ APP_NAME - SALOME SALOME + SALOME APP_VERSION - V7.8.0 + V7.8.0BR ABOUT_LICENSE @@ -25,7 +25,7 @@ ABOUT_VERSION - Version 7.8.0 + Version 7.8.0BR ABOUT_TITLE diff --git a/src/resources/LightApp_msg_ja.ts b/src/resources/LightApp_msg_ja.ts index b8c5d45..b568d19 100644 --- a/src/resources/LightApp_msg_ja.ts +++ b/src/resources/LightApp_msg_ja.ts @@ -13,11 +13,11 @@ APP_NAME - SALOME SALOME + SALOME APP_VERSION - V7.8.0 + V7.8.0BR ABOUT_LICENSE @@ -25,7 +25,7 @@ ABOUT_VERSION - Version 7.8.0 + Version 7.8.0BR ABOUT_TITLE diff --git a/src/salomeContext.py b/src/salomeContext.py index 7a89e96..f30c015 100755 --- a/src/salomeContext.py +++ b/src/salomeContext.py @@ -153,7 +153,10 @@ class SalomeContext: """Append value to LD_LIBRARY_PATH environment variable""" def addToLdLibraryPath(self, value): - self.addToVariable('LD_LIBRARY_PATH', value) + if platform.system() == 'Windows': + self.addToVariable('PATH', value) + else: + self.addToVariable('LD_LIBRARY_PATH', value) # """Append value to DYLD_LIBRARY_PATH environment variable"""