mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
Minor updates for release.
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@8861 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
@ -24,7 +24,7 @@
|
||||
<property name="version.major" value="2"/>
|
||||
<property name="version.minor" value="5"/>
|
||||
<property name="version.revision" value="5"/>
|
||||
<property name="version.extra" value="beta1"/>
|
||||
<property name="version.extra" value=""/>
|
||||
<!-- For 'beta' or 'alpha' -->
|
||||
|
||||
<!-- Setup the full version property correctly -->
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1076,7 +1076,7 @@ public final class GroupChatRoom extends ChatRoom {
|
||||
* An internal UI implementation for display subjects
|
||||
* within the conference room.
|
||||
*/
|
||||
private class SubjectPanel extends JPanel {
|
||||
public class SubjectPanel extends JPanel {
|
||||
|
||||
private JLabel iconLabel;
|
||||
private JLabel roomJIDLabel;
|
||||
@ -1099,6 +1099,19 @@ public final class GroupChatRoom extends ChatRoom {
|
||||
public void setSubject(String subject) {
|
||||
subjectLabel.setText(subject);
|
||||
}
|
||||
|
||||
public void setRoomLabel(String label) {
|
||||
roomJIDLabel.setText(label);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the descriptive panel at the top of the room.
|
||||
*
|
||||
* @return the SubjectPanel.
|
||||
*/
|
||||
public SubjectPanel getSubjectPanel() {
|
||||
return subjectPanel;
|
||||
}
|
||||
|
||||
public Color getColor(String nickname) {
|
||||
|
||||
@ -17,11 +17,11 @@ public class JiveInfo {
|
||||
}
|
||||
|
||||
public static String getVersion() {
|
||||
return "2.5.5.beta1";
|
||||
return "2.5.5";
|
||||
}
|
||||
|
||||
public static String getBuildNumber() {
|
||||
return "2.5.5.beta1";
|
||||
return "2.5.5";
|
||||
}
|
||||
|
||||
public static String getOS() {
|
||||
|
||||
Reference in New Issue
Block a user