changeset 25:06da140e11b8

back to mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Nov 2023 14:25:01 +0100
parents e77efde44233 (current diff) 020716fe2ac8 (diff)
children 52e83e94eb37
files CMakeLists.txt
diffstat 2 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Fri Nov 24 12:55:50 2023 +0100
+++ b/CMakeLists.txt	Fri Nov 24 14:25:01 2023 +0100
@@ -28,7 +28,7 @@
   set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "mainline")
   set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "hg")
 else()
-  set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "1.12.0")
+  set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "1.12.1")
   set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "web")
 endif()
 
@@ -196,7 +196,9 @@
   VERSION ${ORTHANC_OHIF_VERSION} 
   SOVERSION ${ORTHANC_OHIF_VERSION})
 
-DefineSourceBasenameForTarget(OrthancOHIF)
+if (DEFINED DefineSourceBasenameForTarget)
+  DefineSourceBasenameForTarget(OrthancOHIF)
+endif()
 
 install(
   TARGETS OrthancOHIF
--- a/NEWS	Fri Nov 24 12:55:50 2023 +0100
+++ b/NEWS	Fri Nov 24 14:25:01 2023 +0100
@@ -1,9 +1,13 @@
 Pending changes in the mainline
 ===============================
 
+
+Version 1.1 (2023-11-24)
+========================
+
 * Updated OHIF to 3.7.0
-* The default configuration has been adapted to avoid unneccesary transcoding 
-  on Orthanc side.
+* The default configuration has been adapted to avoid unneccesary
+  transcoding on Orthanc side
 * Patch to make the build of static assets reproducible, following a
   suggestion by Bernhard M. Wiedemann (bwiedemann@suse.de)