Skip to content

Commit

Permalink
Prep 2202
Browse files Browse the repository at this point in the history
  • Loading branch information
parg committed Dec 13, 2019
1 parent 4abeb85 commit 99b2e7d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
BIGLYBT CHANGELOG
-----------------

2020.xx.yy | BiglyBT 2.2.0.1
2019.12.13 | BiglyBT 2.2.0.2

FEATURE: UI | Add sidebar dashboard reset option [Parg]
FEATURE: UI | Chat window now supports <n>...</n> to disable emphasis [Fubar99]

CHANGE: UI | Rate limit table vertical scrolling [Parg]
CHANGE: UI | Remember DDB Graph, Vivaldi view and activity column widths across tab switches [Parg]

BUGFIX: Core | Wait for plugin-proxy connections to actually connect [Parg]
BUGFIX: Core | Apply OS-specific filename character validation to renames in torrent options dialog [Parg]
BUGFIX: UI | Speed Graphic performance improvements [Parg]
BUGFIX: UI | Fix sidebar dashboard not building when UI hidden [Parg]
BUGFIX: UI | Fix UI deadlock [Parg]

2019.12.10 | BiglyBT 2.2.0.0

Expand Down
4 changes: 2 additions & 2 deletions core/src/com/biglybt/core/util/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@
public static final String BIGLY_PEER_ID = "BI";


public static final String BIGLYBT_VERSION = "2.2.0.1_B01";
public static final String BIGLYBT_VERSION = "2.2.0.2";

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

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

Expand Down

0 comments on commit 99b2e7d

Please sign in to comment.