changeset 85:cd1c06f6f163 upgrade

Orthanc 0.9.5
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 02 Dec 2015 15:22:38 +0100
parents 470aad460956
children 4c24937bd4ae
files NEWS Resources/SyncOrthancFolder.py
diffstat 2 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Wed Dec 02 15:00:59 2015 +0100
+++ b/NEWS	Wed Dec 02 15:22:38 2015 +0100
@@ -1,7 +1,8 @@
 Pending changes in the mainline
 ===============================
 
-=> Supported database versions: 5 and 6 <=
+=> Minimum SDK version: 0.9.5 <=
+=> Supported database versions: 5 (upgrade only) and 6 <=
 
 * Support version 6 of the database schema (for Orthanc >= 0.9.5)
 * The "value" column of tables "MainDicomTags" and "DicomIdentifiers" are now TEXT instead of BYTEA
--- a/Resources/SyncOrthancFolder.py	Wed Dec 02 15:00:59 2015 +0100
+++ b/Resources/SyncOrthancFolder.py	Wed Dec 02 15:22:38 2015 +0100
@@ -11,7 +11,7 @@
 import urllib2
 
 TARGET = os.path.join(os.path.dirname(__file__), '..', 'Orthanc')
-PLUGIN_SDK_VERSION = '0.9.4'
+PLUGIN_SDK_VERSION = '0.9.5'
 REPOSITORY = 'https://bitbucket.org/sjodogne/orthanc/raw'
 
 FILES = [
@@ -66,10 +66,10 @@
 
 for f in SDK:
     commands.append([
-        'default',
-        #'Orthanc-%s' % PLUGIN_SDK_VERSION, 
+        'Orthanc-%s' % PLUGIN_SDK_VERSION, 
         'Plugins/Include/%s' % f,
-        'Sdk-%s/%s' % (PLUGIN_SDK_VERSION, f) ])
+        'Sdk-%s/%s' % (PLUGIN_SDK_VERSION, f) 
+    ])
 
 
 pool = multiprocessing.Pool(10)  # simultaneous downloads