From b5b4026628c50ffdfa3ceeb93badb613cdca18eb Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Tue, 03 May 2011 15:59:20 -0400
Subject: [PATCH] Drop new lines between table rows for Opera.

---
 src/com/gitblit/Constants.java |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java
index 186193e..4ad4663 100644
--- a/src/com/gitblit/Constants.java
+++ b/src/com/gitblit/Constants.java
@@ -4,20 +4,22 @@
 
 	public final static String NAME = "Git:Blit";
 
-	public final static String VERSION = "0.0.1";
-	
+	public final static String VERSION = "0.1.0-SNAPSHOT";
+
 	public final static String ADMIN_ROLE = "admin";
-	
+
 	public final static String PULL_ROLE = "pull";
-	
+
 	public final static String PUSH_ROLE = "push";
+
+	public final static String PROPERTIES_FILE = "gitblit.properties";
 
 	public static String getGitBlitVersion() {
 		return NAME + " v" + VERSION;
 	}
-	
+
 	public static String getJGitVersion() {
-		return "JGit 0.11.3";
+		return "JGit 0.12-stable";
 	}
 
 	public static String getRunningVersion() {

--
Gitblit v1.9.1