From 99b2e7d6dedfc7d51359e15ab88c1487a678ab09 Mon Sep 17 00:00:00 2001 From: parg Date: Fri, 13 Dec 2019 13:49:58 +0000 Subject: [PATCH] Prep 2202 --- ChangeLog.txt | 14 +++++++++++++- core/src/com/biglybt/core/util/Constants.java | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 22a271b674c..269473fee3d 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 ... 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 diff --git a/core/src/com/biglybt/core/util/Constants.java b/core/src/com/biglybt/core/util/Constants.java index 48211ca8c99..9f93e1dca98 100644 --- a/core/src/com/biglybt/core/util/Constants.java +++ b/core/src/com/biglybt/core/util/Constants.java @@ -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" );