diff options
author | James Moger <james.moger@gitblit.com> | 2012-01-11 20:04:01 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-01-11 20:04:01 -0500 |
commit | 04627e5fff260c88120d3f7f01dba052d04c47da (patch) | |
tree | f70bbed5abd1387b8665073b52a54c987304915e | |
parent | f1c9345ae01d9fa73d75f89d5a428f128189006a (diff) | |
download | gitblit-04627e5fff260c88120d3f7f01dba052d04c47da.tar.gz gitblit-04627e5fff260c88120d3f7f01dba052d04c47da.zip |
Fixed missing icon resource for the manager (issue 40)
-rw-r--r-- | build.xml | 1 | ||||
-rw-r--r-- | docs/04_releases.mkd | 6 | ||||
-rw-r--r-- | src/com/gitblit/Constants.java | 4 |
3 files changed, 9 insertions, 2 deletions
@@ -578,6 +578,7 @@ <resource file="${basedir}/resources/gitblt-favicon.png" />
<resource file="${basedir}/resources/gitweb-favicon.png" />
<resource file="${basedir}/resources/user_16x16.png" />
+ <resource file="${basedir}/resources/users_16x16.png" />
<resource file="${basedir}/resources/settings_16x16.png" />
<resource file="${basedir}/resources/lock_go_16x16.png" />
<resource file="${basedir}/resources/lock_pull_16x16.png" />
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 0ef4d3f2..aa20c11c 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -3,6 +3,12 @@ ### Current Release
**%VERSION%** ([go](http://code.google.com/p/gitblit/downloads/detail?name=%GO%) | [war](http://code.google.com/p/gitblit/downloads/detail?name=%WAR%) | [express](http://code.google.com/p/gitblit/downloads/detail?name=%EXPRESS%) | [fedclient](http://code.google.com/p/gitblit/downloads/detail?name=%FEDCLIENT%) | [manager](http://code.google.com/p/gitblit/downloads/detail?name=%MANAGER%) | [api](http://code.google.com/p/gitblit/downloads/detail?name=%API%)) based on [%JGIT%][jgit] *released %BUILDDATE%*
+#### fixes
+
+- Include missing icon resource for the manager (issue 40)
+
+**0.8.0** ([go](http://code.google.com/p/gitblit/downloads/detail?name=gitblit-0.8.0.zip) | [war](http://code.google.com/p/gitblit/downloads/detail?name=gitblit-0.8.0.war) | [express](http://code.google.com/p/gitblit/downloads/detail?name=express-0.8.0.zip) | [fedclient](http://code.google.com/p/gitblit/downloads/detail?name=fedclient-0.8.0.zip) | [manager](http://code.google.com/p/gitblit/downloads/detail?name=manager-0.8.0.zip) | [api](http://code.google.com/p/gitblit/downloads/detail?name=gbapi-0.8.0.zip)) based on [JGit 1.2.0 (201112221803-r)][jgit] *released 2012-01-11*
+
#### additions
- Platform-independent, Groovy push hook script mechanism.
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index ff58283e..fe4c9dbc 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -29,11 +29,11 @@ public class Constants { // The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION = "0.8.0";
+ public static final String VERSION = "0.8.1-SNAPSHOT";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
- public static final String VERSION_DATE = "2012-01-11";
+ public static final String VERSION_DATE = "PENDING";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
|