From 8a0ab60852042b25cfe0f849ca84b4ddd3af8a26 Mon Sep 17 00:00:00 2001 From: niawag Date: Wed, 5 Jul 2023 14:29:28 +0200 Subject: [PATCH 1/2] Create transmission-4.0.3.client Used https://github.com/anthonyraymond/joal/blob/master/scripts/bittorrent-client-update-detector/transmission.sh to get the updated values and kept the same file as 3.00 --- resources/clients/transmission-4.0.3.client | 33 +++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 resources/clients/transmission-4.0.3.client diff --git a/resources/clients/transmission-4.0.3.client b/resources/clients/transmission-4.0.3.client new file mode 100644 index 0000000..f1c3bcf --- /dev/null +++ b/resources/clients/transmission-4.0.3.client @@ -0,0 +1,33 @@ +{ + "keyGenerator": { + "algorithm": { + "type": "DIGIT_RANGE_TRANSFORMED_TO_HEX_WITHOUT_LEADING_ZEROES", + "inclusiveLowerBound": 1, + "inclusiveUpperBound": 2147483647 + }, + "refreshOn": "NEVER", + "keyCase": "lower" + }, + "peerIdGenerator": { + "algorithm": { + "type": "RANDOM_POOL_WITH_CHECKSUM", + "prefix": "-TR4030-", + "charactersPool": "0123456789abcdefghijklmnopqrstuvwxyz", + "base": 36 + }, + "refreshOn": "TORRENT_VOLATILE", + "shouldUrlEncode": false + }, + "urlEncoder": { + "encodingExclusionPattern": "[A-Za-z0-9-]", + "encodedHexCase": "lower" + }, + "query": "info_hash={infohash}&peer_id={peerid}&port={port}&uploaded={uploaded}&downloaded={downloaded}&left={left}&numwant={numwant}&key={key}&compact=1&supportcrypto=1&event={event}&ipv6={ipv6}", + "numwant": 80, + "numwantOnStop": 0, + "requestHeaders": [ + { "name": "User-Agent", "value": "Transmission/4.0.3" }, + { "name": "Accept", "value": "*/*" }, + { "name": "Accept-Encoding", "value": "deflate, gzip" } + ] +} From 4ed3bbf6510b9b39d4886418ee5d4bd225ac2ade Mon Sep 17 00:00:00 2001 From: niawag Date: Wed, 5 Jul 2023 14:50:29 +0200 Subject: [PATCH 2/2] Update transmission-4.0.3.client Changed "inclusiveUpperBound": 2147483647 --> 4294967295 --- resources/clients/transmission-4.0.3.client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/clients/transmission-4.0.3.client b/resources/clients/transmission-4.0.3.client index f1c3bcf..8250b0a 100644 --- a/resources/clients/transmission-4.0.3.client +++ b/resources/clients/transmission-4.0.3.client @@ -3,7 +3,7 @@ "algorithm": { "type": "DIGIT_RANGE_TRANSFORMED_TO_HEX_WITHOUT_LEADING_ZEROES", "inclusiveLowerBound": 1, - "inclusiveUpperBound": 2147483647 + "inclusiveUpperBound": 4294967295 }, "refreshOn": "NEVER", "keyCase": "lower"