Mercurial > hg > orthanc-python
changeset 309:370e6d73da23
back to mainline
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Tue, 02 Dec 2025 12:09:36 +0100 |
| parents | fc75b27b018e (current diff) 163ec1f68da2 (diff) |
| children | f96ce88ff764 |
| files | CMakeLists.txt |
| diffstat | 4 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/CITATION.cff Thu Nov 27 11:29:47 2025 +0100 +++ b/CITATION.cff Tue Dec 02 12:09:36 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/NEWS Thu Nov 27 11:29:47 2025 +0100 +++ b/NEWS Tue Dec 02 12:09:36 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:09:36 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:09:36 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' ]
