Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
10a72426
Commit
10a72426
authored
Mar 21, 2016
by
akrherz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Denote Openfire 4.0.2 Release
parent
39ca5026
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
2 deletions
+31
-2
build.xml
build/build.xml
+1
-1
changelog.html
documentation/dist/changelog.html
+29
-0
XMPPServer.java
src/java/org/jivesoftware/openfire/XMPPServer.java
+1
-1
No files found.
build/build.xml
View file @
10a72426
...
...
@@ -26,7 +26,7 @@
<property
name=
"version.major"
value=
"4"
/>
<property
name=
"version.minor"
value=
"0"
/>
<property
name=
"version.revision"
value=
"2"
/>
<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"
/>
...
...
documentation/dist/changelog.html
View file @
10a72426
...
...
@@ -162,6 +162,35 @@ hr {
<div
id=
"pageBody"
>
<h2>
4.0.2 --
<span
style=
"font-weight: normal;"
>
Mar 21, 2016
</span></h2>
<h2>
Bug
</h2>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-829'
>
OF-829
</a>
] - Ghost sessions left on a server when using Pidgin client
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-954'
>
OF-954
</a>
] - Openfire clustering fails to correctly sync MUC room occupants
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1082'
>
OF-1082
</a>
] - Fix unicode read on BOSH
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1083'
>
OF-1083
</a>
] - Cannot join room in a cluster after an availability update
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1087'
>
OF-1087
</a>
] - Monitoring plugin gives invalid responses
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1090'
>
OF-1090
</a>
] - Outcasts should not be allowed to register with room
</li>
</ul>
<h2>
Improvement
</h2>
<ul>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1086'
>
OF-1086
</a>
] - Update bundled JRE to 1.8u74
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1089'
>
OF-1089
</a>
] - XEP-0313: send IQ result only after messages
</li>
<li>
[
<a
href=
'https://igniterealtime.org/issues/browse/OF-1107'
>
OF-1107
</a>
] - Add option to not show email in Email on Away plugin
</li>
</ul>
<h2>
4.0.1 --
<span
style=
"font-weight: normal;"
>
Jan 26, 2016
</span></h2>
<h2>
Bug
...
...
src/java/org/jivesoftware/openfire/XMPPServer.java
View file @
10a72426
...
...
@@ -315,7 +315,7 @@ public class XMPPServer {
host
=
"127.0.0.1"
;
}
version
=
new
Version
(
4
,
0
,
2
,
Version
.
ReleaseStatus
.
Alpha
,
-
1
);
version
=
new
Version
(
4
,
0
,
2
,
Version
.
ReleaseStatus
.
Release
,
-
1
);
if
(
"true"
.
equals
(
JiveGlobals
.
getXMLProperty
(
"setup"
)))
{
setupMode
=
false
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment