From db949e3522f0b6f6083646819892119ebf3271b8 Mon Sep 17 00:00:00 2001
From: Padraig Gleeson
Date: Thu, 27 Jul 2023 11:00:49 +0100
Subject: [PATCH] Update internal version num to 1.7.4
---
.../project/GeneralProperties.java | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/ucl/physiol/neuroconstruct/project/GeneralProperties.java b/src/ucl/physiol/neuroconstruct/project/GeneralProperties.java
index 2ba38982..9d7c5fd8 100755
--- a/src/ucl/physiol/neuroconstruct/project/GeneralProperties.java
+++ b/src/ucl/physiol/neuroconstruct/project/GeneralProperties.java
@@ -50,7 +50,7 @@ public class GeneralProperties
private static final String packageOfCellTypes = "ucl.physiol.neuroconstruct.cell";
- private static final String versionNumber = "1.7.1";
+ private static final String versionNumber = "1.7.4";
//private static final String latestNeuroMLVersionNumber = "1.8.1";
@@ -106,11 +106,11 @@ public class GeneralProperties
GeneralProperties.loadFromSettingsFile();
- if (userSettings.getNeuronHome() == null || userSettings.getNeuronHome().trim().length() == 0)
+ if (userSettings.getNeuronHome() == null || userSettings.getNeuronHome().trim().length() == 0)
{
userSettings.setNeuronHome(null);
-
- if (GeneralUtils.isWindowsBasedPlatform())
+
+ if (GeneralUtils.isWindowsBasedPlatform())
{
String[] options = new String[]{"nrn75", "nrn74", "nrn73", "nrn72", "nrn71", "nrn70", "nrn61", "nrn60"};
for (String s : options) {
@@ -733,7 +733,7 @@ public static File getNeuroMLv2alphaSchemaFile()
{
return new File("NeuroML2/Schemas/NeuroML2/NeuroML_v2alpha.xsd");
}
-
+
/**
* Gets the NeuroML v2beta schema
*
@@ -742,7 +742,7 @@ public static File getNeuroMLv2beta0SchemaFile()
{
return new File("NeuroML2/Schemas/NeuroML2/NeuroML_v2beta.xsd");
}
-
+
/**
* Gets the NeuroML v2beta1 schema
*
@@ -797,13 +797,13 @@ public static File getChannelMLReadableXSL()
return new File("templates/xmlTemplates/Schemata/"+getNeuroMLVersionString()
+"/Level2/ChannelML_"+getNeuroMLVersionString()+"_HTML.xsl");
}
-
+
//// added to test creation of NeuroML2 channel summary
-
+
public static File getNeuroML2ReadableXSL()
{
return new File("templates/xmlTemplates/NeuroML2/v2.0/CellMechanisms/"+"NeuroML2Test.xsl");
-
+
}