Skip to content

Commit

Permalink
v0.14-b4, fix ignore list
Browse files Browse the repository at this point in the history
  • Loading branch information
tduva committed Jan 13, 2021
1 parent 5b099b0 commit b5f30c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.14-b3"; // Remember changing the version in the help
public static final String VERSION = "0.14-b4"; // Remember changing the version in the help

/**
* Enable Version Checker (if you compile and distribute this yourself, you
Expand Down
2 changes: 1 addition & 1 deletion src/chatty/gui/MainGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ private void updateHighlight() {

private void updateIgnore() {
ignoreList.update(StringUtil.getStringList(client.settings.getList("ignore")));
ignoreList.update(StringUtil.getStringList(client.settings.getList("ignoreBlacklist")));
ignoreList.updateBlacklist(StringUtil.getStringList(client.settings.getList("ignoreBlacklist")));
}

private void updateFilter() {
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.14-b3)</a></h1>
<h1><a name="top">Chatty (Version: 0.14-b4)</a></h1>
<table>
<tr>
<td valign="top">
Expand Down

0 comments on commit b5f30c3

Please sign in to comment.