Skip to content

Commit

Permalink
Denote Openfire 4.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Jan 26, 2016
1 parent f9dc85c commit 113917a
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<property name="version.major" value="4"/>
<property name="version.minor" value="0"/>
<property name="version.revision" value="1"/>
<property name="version.extra" value="alpha"/> <!-- For 'beta' or 'alpha' -->
<property name="version.extra" value=""/> <!-- For 'beta' or 'alpha' -->

<property name="javac.source" value="1.7"/>
<property name="javac.target" value="1.7"/>
Expand Down
36 changes: 36 additions & 0 deletions documentation/dist/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,42 @@ <h1>Openfire Changelog</h1>

<div id="pageBody">


<h2>4.0.0 -- <span style="font-weight: normal;">Jan 26, 2016</span></h2>
<h2> Bug
</h2>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1040'>OF-1040</a>] - Banning users from room does not result in proper exit
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1041'>OF-1041</a>] - Using AD specific attribute breaks OpenLDAP support
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1042'>OF-1042</a>] - NPE in stanza handler (after failed TLS?)
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1045'>OF-1045</a>] - NPE with cluster management if cluster has not been started
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1046'>OF-1046</a>] - Error 503 emitted sending update notifications to offline admins that are over offline storage quota
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1051'>OF-1051</a>] - ConcurrentModificationException in PluginManager
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1053'>OF-1053</a>] - i18n params fail when text has apostrophe
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1054'>OF-1054</a>] - IllegalStateException when destroying MUC room prevents unavailable broadcast to be sent
</li>
</ul>

<h2> Improvement
</h2>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1048'>OF-1048</a>] - Should not store chat state messages
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1049'>OF-1049</a>] - Improve Certificate Store Management
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1055'>OF-1055</a>] - Remove exclamation mark from the Search button
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1057'>OF-1057</a>] - Upgrade Jetty to latest patch release of its 9.2 branch.
</li>
</ul>

<h2>4.0.0 -- <span style="font-weight: normal;">Jan 11, 2016</span></h2>
<h2> Sub-task
</h2>
Expand Down
2 changes: 1 addition & 1 deletion src/java/org/jivesoftware/openfire/XMPPServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private void initialize() throws FileNotFoundException {
host = "127.0.0.1";
}

version = new Version(4, 0, 1, Version.ReleaseStatus.Alpha, -1);
version = new Version(4, 0, 1, Version.ReleaseStatus.Release, -1);
if ("true".equals(JiveGlobals.getXMLProperty("setup"))) {
setupMode = false;
}
Expand Down

0 comments on commit 113917a

Please sign in to comment.