Skip to content

Commit 7d2c953

Browse files
committed
3802
1 parent 81608ae commit 7d2c953

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

ChangeLog.txt

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11
BIGLYBT CHANGELOG
22
-----------------
33

4-
2025.xx.yy | BiglyBT 3.8.0.1
4+
2025.03.09 | BiglyBT 3.8.0.2
5+
6+
FEATURE: Tag | Added Peer Set execute-on-assign option to ban peers [Parg]
7+
FEATURE: UI | Added filter box to chat overview [Parg]
8+
FEATURE: UI | Add explicit banning option to IP filter window [Parg]
9+
10+
CHANGE: Core | Run remote searches at low priority [Parg]
11+
CHANGE: UI | Run code directly in getOffSWTThread if not on SWT thread [Parg]
12+
CHANGE: UI | Make reposition in library view asynchronous [Parg]
13+
CHANGE: UI | Limit active search results views to 5 [Parg]
14+
CHANGE: UI | Show forced state in console torrent info [Parg]
15+
CHANGE: UI | pt_BR: Brazilian Portuguese translation update [Havokdan]
16+
CHANGE: UI | no_NO: Norwegian translation update [DandelionSprout]
17+
CHANGE: UI | ru_RU: Russian translation update [adem4ik]
18+
CHANGE: UI | tr_TR: Turkish translation update [BouRock]
19+
20+
BUGFIX: Core | Fix sync issue on share removal [Parg]
21+
BUGFIX: Core | Fix move file fix [Parg]
22+
BUGFIX: Core | Reduce blocking in swarm merger [Parg]
23+
BUGFIX; Core | JVM name should be lower case [TuxPaper]
24+
BUGFIX: Core | Fix up IP filter application on some tracker paths [Parg]
25+
BUGFIX: UI | Remove reduced GC creation in table painter on OSX [Parg]
26+
BUGFIX: UI | Reduce chance of blocking on rank item creation [Parg]
27+
BUGFIX: UI | Don't remove dead-download chats if favourites [Parg]
28+
BUGFIX: UI | NAT Test window missing default size [Parg]
529

630
2025.02.17 | BiglyBT 3.8.0.0
731

core/src/com/biglybt/core/util/Constants.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@
145145
public static final String BIGLY_PEER_ID = "BI";
146146

147147

148-
public static final String BIGLYBT_VERSION = "3.8.0.1_B01";
148+
public static final String BIGLYBT_VERSION = "3.8.0.2";
149149

150150
//public static final String BUILD_VERSION = "@build.version@"; //Ant replace - believed dead
151151
public static final String SUBVERSION = "";
152-
public static final byte[] VERSION_ID = ("-" + BIGLY_PEER_ID + "3801" + "-").getBytes(); //MUST be 8 chars long!
152+
public static final byte[] VERSION_ID = ("-" + BIGLY_PEER_ID + "3802" + "-").getBytes(); //MUST be 8 chars long!
153153

154154
private static final boolean FORCE_NON_CVS = System.getProperty( "az.force.noncvs", "0" ).equals( "1" );
155155

0 commit comments

Comments
 (0)