comparison Resources/SyncOrthancFolder.py @ 454:f4244c7e2725 improve-delete

merge pg-transactions -> improve-delete
author Alain Mazy <am@osimis.io>
date Mon, 22 Jan 2024 10:00:28 +0100
parents d700c8f9fc24
children bba27bbef7e0
comparison
equal deleted inserted replaced
424:95c413106a66 454:f4244c7e2725
1 #!/usr/bin/python 1 #!/usr/bin/python3
2 2
3 # 3 #
4 # This maintenance script updates the content of the "Orthanc" folder 4 # This maintenance script updates the content of the "Orthanc" folder
5 # to match the latest version of the Orthanc source code. 5 # to match the latest version of the Orthanc source code.
6 # 6 #
17 17
18 TARGET = os.path.join(os.path.dirname(__file__), 'Orthanc') 18 TARGET = os.path.join(os.path.dirname(__file__), 'Orthanc')
19 PLUGIN_SDK_VERSION_OLD = [ '0.9.5', '1.4.0', '1.5.2', '1.5.4' ] 19 PLUGIN_SDK_VERSION_OLD = [ '0.9.5', '1.4.0', '1.5.2', '1.5.4' ]
20 PLUGIN_SDK_VERSION_NEW = [ '1.9.2', '1.12.0' ] 20 PLUGIN_SDK_VERSION_NEW = [ '1.9.2', '1.12.0' ]
21 HAS_PROTOCOL_BUFFERS = [ '1.12.0' ] 21 HAS_PROTOCOL_BUFFERS = [ '1.12.0' ]
22 REPOSITORY = 'https://hg.orthanc-server.com/orthanc/raw-file' 22 REPOSITORY = 'https://orthanc.uclouvain.be/hg/orthanc/raw-file'
23 23
24 FILES = [ 24 FILES = [
25 ('default', 'OrthancFramework/Resources/CMake/AutoGeneratedCode.cmake', 'CMake'), 25 ('default', 'OrthancFramework/Resources/CMake/AutoGeneratedCode.cmake', 'CMake'),
26 ('default', 'OrthancFramework/Resources/CMake/Compiler.cmake', 'CMake'), 26 ('default', 'OrthancFramework/Resources/CMake/Compiler.cmake', 'CMake'),
27 ('default', 'OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake', 'CMake'), 27 ('default', 'OrthancFramework/Resources/CMake/DownloadOrthancFramework.cmake', 'CMake'),