Skip to content

Commit

Permalink
v0.24-b1, some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tduva committed Feb 22, 2023
1 parent fdd5cc5 commit 6066caa
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/chatty/Chatty.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class Chatty {
* by points. May contain a single "b" for beta versions, which are counted
* as older (so 0.8.7b4 is older than 0.8.7).
*/
public static final String VERSION = "0.23"; // Remember changing the version in the help
public static final String VERSION = "0.24-b1"; // Remember changing the version in the help

/**
* Enable Version Checker (if you compile and distribute this yourself, you
Expand Down
11 changes: 10 additions & 1 deletion src/chatty/gui/components/help/help-releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<h1><a name="top">Release Information</a></h1>

<p>
<a href="#0.24">0.24</a> |
<a href="#0.23">0.23</a> |
<a href="#0.22">0.22</a> |
<a href="#0.21">0.21</a> |
Expand Down Expand Up @@ -72,7 +73,15 @@ <h1><a name="top">Release Information</a></h1>
full list of changes.</p>

<h2>
<a name="0.23">Version 0.23</a> <a name="latest">(This one!)</a> (2023-02-17)
<a name="0.24">Version 0.24</a> <a name="latest">(This one!)</a> (2023-??-??)
<a href="#top" class="top">[back to top]</a>
</h2>
<pre>
BETA, TBD
</pre>

<h2>
<a name="0.23">Version 0.23</a> (2023-02-17)
<a href="#top" class="top">[back to top]</a>
</h2>
<pre>
Expand Down
2 changes: 1 addition & 1 deletion src/chatty/gui/components/help/help.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1><a name="top">Chatty (Version: 0.23)</a></h1>
<h1><a name="top">Chatty (Version: 0.24-b1)</a></h1>
<table>
<tr>
<td valign="top">
Expand Down
2 changes: 0 additions & 2 deletions src/chatty/gui/components/textpane/ChannelTextPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,13 @@
import java.awt.image.BufferedImage;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Map.Entry;
import java.util.*;
import java.util.concurrent.atomic.AtomicLong;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.event.CaretEvent;
Expand Down
1 change: 0 additions & 1 deletion src/chatty/util/api/pubsub/LowTrustUserMessageData.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

import java.util.*;
import java.util.logging.Logger;
import java.util.stream.Collectors;
Expand Down
1 change: 0 additions & 1 deletion src/chatty/util/api/pubsub/LowTrustUserUpdateData.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;

import java.util.*;
import java.util.logging.Logger;
import java.util.stream.Collectors;
Expand Down

0 comments on commit 6066caa

Please sign in to comment.