Skip to content

Commit 1ab5b30

Browse files
committed
Final documentation of 1.1.0 release
1 parent 45f5f2c commit 1ab5b30

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

docs/00_index.mkd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<b>Current Release %VERSION% (%BUILDDATE%)</b> <a href="releases.html">changelog</a>
44
<div style="padding:5px;"><a style="width:175px;text-decoration:none;" class="btn btn-success" href="http://code.google.com/p/gitblit/downloads/detail?name=%GO%">Download Gitblit GO</a></div>
55
<div style="padding:5px;"><a style="width:175px;text-decoration:none;" class="btn btn-danger" href="http://code.google.com/p/gitblit/downloads/detail?name=%WAR%">Download Gitblit WAR</a></div>
6-
<div style="padding:5px;"><a style="width:175px;text-decoration:none;" class="btn btn-info" href="http://code.google.com/p/gitblit/downloads/detail?name=%EXPRESS%">Download Gitblit Express</a> <span class="label label-warning">BETA</span></div>
6+
<div style="padding:5px;"><a style="width:175px;text-decoration:none;" class="btn btn-info" href="http://code.google.com/p/gitblit/downloads/detail?name=%EXPRESS%">Download Gitblit Express</a></div>
77
<div style="padding:5px;"><a style="width:175px;text-decoration:none;" class="btn btn-primary" href="http://code.google.com/p/gitblit/downloads/detail?name=%MANAGER%">Download Gitblit Manager</a></div>
88
<div style="text-align:center">
99
<a href="http://code.google.com/p/gitblit/downloads/detail?name=%API%">Gitblit API</a> | <a href="http://code.google.com/p/gitblit/downloads/detail?name=%FEDCLIENT%">Gitblit Federation Client</a>
@@ -47,7 +47,7 @@ All dependencies are bundled.
4747

4848
All dependencies are bundled.
4949

50-
### Express: For the Cloud <span class="label label-warning" style="vertical-align: middle;">BETA</span>
50+
### Express: For the Cloud
5151
*Gitblit Express* is a prepared distribution for [RedHat's OpenShift][rhcloud] cloud service.
5252

5353
All dependencies are bundled.

docs/04_releases.mkd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you are updating from an earlier release AND you have indexed branches with t
1616
- Fixed generated urls in Groovy *sendmail* hook script for grouped repositories
1717
- Fixed generated urls in RSS feeds for grouped repositories
1818
- Fixed nullpointer exception in git servlet security filter (issue 123)
19-
- Eliminated an unnecessary reopsitory enumeration call on the root page which should result in faster page loads (issue 103)
19+
- Eliminated an unnecessary repository enumeration call on the root page which should result in faster page loads (issue 103)
2020
- Gitblit could not delete a Lucene index in a working copy on index upgrade
2121
- Do not index submodule links (issue 119)
2222
- Restore original user or team object on failure to update (issue 118)
@@ -25,7 +25,7 @@ If you are updating from an earlier release AND you have indexed branches with t
2525
- Repository URL now uses `X-Forwarded-Proto` and `X-Forwarded-Port`, if available, for reverse proxy configurations (issue 115)
2626
- Output real RAW content, not simulated RAW content (issue 114)
2727
- Fixed Lucene charset encoding bug when reindexing a repository (issue 112)
28-
- Fixed search box linking to Lucene page for nested repository on Tomcat (issue 111)
28+
- Fixed search box linking to Lucene page for grouped repository on Tomcat (issue 111)
2929
- Fixed null pointer in LdapUserSerivce if account has a null email address (issue 110)
3030
- Really fixed failure to update a GO setting from the manager (issue 85)
3131

docs/05_roadmap.mkd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ This list is volatile.
3030
* Gitblit: diff should highlight inserted/removed fragment compared to original line
3131
* Gitblit: implement branch permission controls as Groovy pre-receive script.
3232
*Maintain permissions text file similar to a gitolite configuration file or svn authz file.*
33-
* Gitblit: consider user-subscribed email notifications for a repository branch.
3433
* Gitblit: aggregate RSS feeds by tag or subfolder
3534
* Gitblit: Consider creating more Git model objects and exposing them via the JSON RPC interface to allow inspection/retrieval of Git commits, Git trees, etc from Gitblit.
3635
* Gitblit: Blame coloring by author (issue 2)

src/com/gitblit/Constants.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public class Constants {
3030

3131
// The build script extracts this exact line so be careful editing it
3232
// and only use A-Z a-z 0-9 .-_ in the string.
33-
public static final String VERSION = "1.1.0-SNAPSHOT";
33+
public static final String VERSION = "1.1.0";
3434

3535
// The build script extracts this exact line so be careful editing it
3636
// and only use A-Z a-z 0-9 .-_ in the string.
37-
public static final String VERSION_DATE = "PENDING";
37+
public static final String VERSION_DATE = "2012-08-25";
3838

3939
// The build script extracts this exact line so be careful editing it
4040
// and only use A-Z a-z 0-9 .-_ in the string.

0 commit comments

Comments
 (0)