Skip to content

Commit

Permalink
Version 1.24.3 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Winning <jason.winning@gmail.com>
  • Loading branch information
jasonwinning committed Jan 15, 2023
1 parent 037b943 commit f7443b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.hypernomicon</groupId>
<artifactId>hypernomicon</artifactId>
<packaging>jar</packaging>
<version>1.24.2</version>
<version>1.24.3</version>
<name>Hypernomicon</name>
<url>http://hypernomicon.org</url>
<inceptionYear>2012</inceptionYear>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/hypernomicon/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public final class Const

EXT_1 = "ext1://";

public static final VersionNumber dbVersion = new VersionNumber(1, 24, 2); // 1.24.2
public static final VersionNumber dbVersion = new VersionNumber(1, 24, 3); // 1.24.3

// This is the minimum version that the application version is able to load
public static final Map<VersionNumber, VersionNumber> appVersionToMinRecordsXMLVersion = new ImmutableMap.Builder<VersionNumber, VersionNumber>()
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/org/hypernomicon/model/HyperDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -2511,7 +2511,9 @@ private void loadMainTextTemplates()

private FilePath mainTextTemplateFilePath(RecordType recordType)
{
return xmlPath().resolve(DESC_TEMPLATE_FOLDER_NAME).resolve(getTag(recordType).header + ".html");
String fileName = recordType == hdtDebate ? "Debate" : FilePath.removeInvalidFileNameChars(getTag(recordType).header);

return xmlPath().resolve(DESC_TEMPLATE_FOLDER_NAME).resolve(fileName + ".html");
}

//---------------------------------------------------------------------------
Expand Down

0 comments on commit f7443b9

Please sign in to comment.