Skip to content

Commit

Permalink
v5.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hplahar committed Dec 16, 2019
1 parent 072f01d commit fe2b16d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.jbei</groupId>
<artifactId>ice</artifactId>
<packaging>war</packaging>
<version>5.6.2</version>
<version>5.6.3</version>
<name>ice</name>
<description>Inventory of Composable Elements (ICE) for Synthetic Biology</description>
<repositories>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/jbei/ice/lib/config/SiteSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
public class SiteSettings implements IDataTransferModel {

private String version = "5.6.2";
private String version = "5.6.3";
private String assetName;
private boolean hasLogo;
private boolean hasLoginMessage;
Expand All @@ -27,6 +27,10 @@ public boolean isHasLogo() {
return hasLogo;
}

public void setHasLogo(boolean hasLogo) {
this.hasLogo = hasLogo;
}

public String getAssetName() {
return assetName;
}
Expand All @@ -35,10 +39,6 @@ public void setAssetName(String assetName) {
this.assetName = assetName;
}

public void setHasLogo(boolean hasLogo) {
this.hasLogo = hasLogo;
}

public boolean isHasLoginMessage() {
return hasLoginMessage;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/views/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
<div class="text-right" style="white-space: nowrap;">
&copy;&nbsp;<a href="https://github.com/JBEI/ice">JBEI ICE Registry</a> <span
class="label label-primary">5.6.1</span><br>
class="label label-primary">5.6.3</span><br>
All rights reserved. <br>
<a href="https://github.com/JBEI/ice/issues/new">Submit an Issue</a>&nbsp; <span class="text-muted">|</span>
&nbsp;<a href="http://ice.jbei.org/">Help</a>
Expand Down

0 comments on commit fe2b16d

Please sign in to comment.