Skip to content

Commit

Permalink
Update internal version num to 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jul 27, 2023
1 parent f30a67f commit db949e3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/ucl/physiol/neuroconstruct/project/GeneralProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -733,7 +733,7 @@ public static File getNeuroMLv2alphaSchemaFile()
{
return new File("NeuroML2/Schemas/NeuroML2/NeuroML_v2alpha.xsd");
}

/**
* Gets the NeuroML v2beta schema
*
Expand All @@ -742,7 +742,7 @@ public static File getNeuroMLv2beta0SchemaFile()
{
return new File("NeuroML2/Schemas/NeuroML2/NeuroML_v2beta.xsd");
}

/**
* Gets the NeuroML v2beta1 schema
*
Expand Down Expand Up @@ -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");

}


Expand Down

0 comments on commit db949e3

Please sign in to comment.