From f5331c9c9395dbc8b3a46e76e19ffbd553397d08 Mon Sep 17 00:00:00 2001 From: Muhammed Fatih Talu Date: Tue, 12 Apr 2022 11:59:31 +0300 Subject: [PATCH 1/2] Add files via upload --- ThicknessMap.s4ext | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 ThicknessMap.s4ext diff --git a/ThicknessMap.s4ext b/ThicknessMap.s4ext new file mode 100644 index 000000000..bc93ff91b --- /dev/null +++ b/ThicknessMap.s4ext @@ -0,0 +1,43 @@ +# +# First token of each non-comment line is the keyword and the rest of the line +# (including spaces) is the value. +# - the value can be blank +# + +# This is source code manager (i.e. svn) +scm git +scmurl https://github.com/fatihtalu/Slicer-ThicknessMap +scmrevision master + +# list dependencies +# - These should be names of other modules that have .s4ext files +# - The dependencies will be built first + +# Inner build directory (default is ".") +build_subdirectory inner-build + +# homepage +homepage https://github.com/fatihtalu/Slicer-ThicknessMap + +# Firstname1 Lastname1 ([SubOrg1, ]Org1), Firstname2 Lastname2 ([SubOrg2, ]Org2) +# For example: Jane Roe (Superware), John Doe (Lab1, Nowhere), Joe Bloggs (Noware) +contributors Muhammed Fatih Talu (Computer Science at Inonu) + +# Match category in the xml description of the module (where it shows up in Modules menu) +category Shape Analysis + +# url to icon (png, size 128x128 pixels) +iconurl https://user-images.githubusercontent.com/22032994/158332495-b367f4e5-7c48-4864-9b43-cb600989ee3d.PNG + +# Give people an idea what to expect from this code +# - Is it just a test or something you stand behind? +I stand behind + +# One line stating what the module does +description Calculation Bone Thickness Map + +# Space separated list of urls +screenshoturls https://raw.githubusercontent.com/Auditory-Biophysics-Lab/Slicer-ABLTemporalBoneSegmentation/master/Images/main.png + +# 0 or 1: Define if the extension should be enabled after its installation. +enabled 1 \ No newline at end of file From 0ccff5a625df585b2bc0c4f0f5262cd1900ab7e2 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 1 May 2024 13:54:37 -0400 Subject: [PATCH 2/2] ENH: Convert ThicknessMap s4ext to json file Also set `build_subdirectory` to `.` instead of `inner-build` (the former is specific to SuperBuild extension). --- ThicknessMap.json | 8 ++++++++ ThicknessMap.s4ext | 43 ------------------------------------------- 2 files changed, 8 insertions(+), 43 deletions(-) create mode 100644 ThicknessMap.json delete mode 100644 ThicknessMap.s4ext diff --git a/ThicknessMap.json b/ThicknessMap.json new file mode 100644 index 000000000..5a0815ec4 --- /dev/null +++ b/ThicknessMap.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://raw.githubusercontent.com/Slicer/Slicer/main/Schemas/slicer-extension-catalog-entry-schema-v1.0.0.json#", + "build_dependencies": [], + "build_subdirectory": ".", + "category": "Shape Analysis", + "scm_revision": "master", + "scm_url": "https://github.com/fatihtalu/Slicer-ThicknessMap" +} diff --git a/ThicknessMap.s4ext b/ThicknessMap.s4ext deleted file mode 100644 index bc93ff91b..000000000 --- a/ThicknessMap.s4ext +++ /dev/null @@ -1,43 +0,0 @@ -# -# First token of each non-comment line is the keyword and the rest of the line -# (including spaces) is the value. -# - the value can be blank -# - -# This is source code manager (i.e. svn) -scm git -scmurl https://github.com/fatihtalu/Slicer-ThicknessMap -scmrevision master - -# list dependencies -# - These should be names of other modules that have .s4ext files -# - The dependencies will be built first - -# Inner build directory (default is ".") -build_subdirectory inner-build - -# homepage -homepage https://github.com/fatihtalu/Slicer-ThicknessMap - -# Firstname1 Lastname1 ([SubOrg1, ]Org1), Firstname2 Lastname2 ([SubOrg2, ]Org2) -# For example: Jane Roe (Superware), John Doe (Lab1, Nowhere), Joe Bloggs (Noware) -contributors Muhammed Fatih Talu (Computer Science at Inonu) - -# Match category in the xml description of the module (where it shows up in Modules menu) -category Shape Analysis - -# url to icon (png, size 128x128 pixels) -iconurl https://user-images.githubusercontent.com/22032994/158332495-b367f4e5-7c48-4864-9b43-cb600989ee3d.PNG - -# Give people an idea what to expect from this code -# - Is it just a test or something you stand behind? -I stand behind - -# One line stating what the module does -description Calculation Bone Thickness Map - -# Space separated list of urls -screenshoturls https://raw.githubusercontent.com/Auditory-Biophysics-Lab/Slicer-ABLTemporalBoneSegmentation/master/Images/main.png - -# 0 or 1: Define if the extension should be enabled after its installation. -enabled 1 \ No newline at end of file