Skip to content

Commit

Permalink
Prep 2600
Browse files Browse the repository at this point in the history
  • Loading branch information
parg committed Dec 17, 2020
1 parent 3a83abc commit 824ace3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
BIGLYBT CHANGELOG
-----------------

2020.12.yy | BiglyBT 2.6.0.0

2020.12.17 | BiglyBT 2.6.0.0

FEATURE: Tag | Added new download-state tags for 'moving' and 'checking' [Parg]
FEATURE: Tag | Added torrent_type tag constraint keyword [Parg]
Expand Down Expand Up @@ -61,7 +60,6 @@ CHANGE: UI | ja_JP: Japanese translation update [ayano.midori]
CHANGE: UI | fr_FR: French translation update [GMartigny]
CHANGE: UI | fi_FI: Finnish translation update [olavinto]


BUGFIX: Core | Fix removal from read-only collection [Parg]
BUGFIX: Core | Fix NPE causing magnet downloads not to be recovered [Parg]
BUGFIX: Core | Ensure we have a peer-manager piece when writing a block [Parg]
Expand All @@ -76,7 +74,6 @@ BUGFIX: UI | Ignore media server URIs when monitoring clipboard for torrent
BUGFIX: UI | Fix inconsistent table depth when hidden rows removed from a table [Parg]
BUGFIX: UI | Fix Files View piece column sort when download stopped [Parg]


2020.09.21 | BiglyBT 2.5.0.0

FEATURE: Core | Support BitTorrent Protocol Specification v2 (BEP 52) [Parg]
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.5.0.1_B19";
public static final String BIGLYBT_VERSION = "2.6.0.0";

//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 + "2501" + "-").getBytes(); //MUST be 8 chars long!
public static final byte[] VERSION_ID = ("-" + BIGLY_PEER_ID + "2600" + "-").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 824ace3

Please sign in to comment.