changeset 308:163ec1f68da2 OrthancPython-7.0

OrthancPython-7.0
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 02 Dec 2025 12:00:51 +0100
parents fc75b27b018e
children 370e6d73da23
files CITATION.cff CMakeLists.txt NEWS Resources/Orthanc/CMake/Compiler.cmake Resources/SyncOrthancFolder.py
diffstat 5 files changed, 11 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CITATION.cff	Thu Nov 27 11:29:47 2025 +0100
+++ b/CITATION.cff	Tue Dec 02 12:00:51 2025 +0100
@@ -9,5 +9,5 @@
 doi: "10.1007/978-3-031-96899-0_18"
 license: "AGPL-3.0-or-later"
 repository-code: "https://orthanc.uclouvain.be/hg/orthanc-python/"
-version: "6.0"
-date-released: 2025-08-12
+version: "7.0"
+date-released: 2025-12-02
--- a/CMakeLists.txt	Thu Nov 27 11:29:47 2025 +0100
+++ b/CMakeLists.txt	Tue Dec 02 12:00:51 2025 +0100
@@ -25,7 +25,7 @@
 cmake_minimum_required(VERSION 2.8...4.0)
 project(OrthancPython)
 
-set(PLUGIN_VERSION "mainline")
+set(PLUGIN_VERSION "7.0")
 
 if (PLUGIN_VERSION STREQUAL "mainline")
   set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "mainline")
--- a/NEWS	Thu Nov 27 11:29:47 2025 +0100
+++ b/NEWS	Tue Dec 02 12:00:51 2025 +0100
@@ -1,6 +1,10 @@
 Pending changes in the mainline
 ===============================
 
+
+Version 7.0 (2025-12-02)
+========================
+
 => Maximum SDK version: 1.12.10 (default) <=
 
 * The "orthanc.pyi" stub is now excluded from the "install" step during the build
--- a/Resources/Orthanc/CMake/Compiler.cmake	Thu Nov 27 11:29:47 2025 +0100
+++ b/Resources/Orthanc/CMake/Compiler.cmake	Tue Dec 02 12:00:51 2025 +0100
@@ -21,6 +21,8 @@
 
 
 # This file sets all the compiler-related flags
+message(STATUS "CMAKE_CXX_COMPILER_ID is ${CMAKE_CXX_COMPILER_ID}")
+message(STATUS "CMAKE_SYSTEM_NAME is ${CMAKE_SYSTEM_NAME}")
 
 if (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
   # Since Orthanc 1.12.7 that allows CMake 4.0, builds for macOS
--- a/Resources/SyncOrthancFolder.py	Thu Nov 27 11:29:47 2025 +0100
+++ b/Resources/SyncOrthancFolder.py	Tue Dec 02 12:00:51 2025 +0100
@@ -35,6 +35,8 @@
 
 TARGET = os.path.join(os.path.dirname(__file__), 'Orthanc')
 REPOSITORY = 'https://orthanc.uclouvain.be/hg/orthanc/raw-file'
+
+# This list must correspond to the content of "../CMakeLists.txt"
 PLUGIN_SDK_VERSIONS = [ '1.7.2', '1.10.0', '1.12.6', '1.12.9', '1.12.10' ]