-
v0.67.0 Stable
released this
2020-03-31 01:43:45 +02:00 | 1743 commits to master since this release[0.67.0] - 2020-03-30
API
- [bug] fix estimated timestamp to return integer instead of float (https://github.com/lbryio/lbry-sdk/pull/2893) by eukreign
- [improvement] improve speed of
status(https://github.com/lbryio/lbry-sdk/pull/2890) by jackrobison - [new feature] added
txo_spendcommand to support liquidating large number of txos (eg. tips) by batching them across several transactions (https://github.com/lbryio/lbry-sdk/pull/2887) by eukreign
Blobs/files
- [improvement] add m4a content type (https://github.com/lbryio/lbry-sdk/pull/2888) by tzarebczan
Network
- [bug] fix for startup issues when connecting to wallet servers (https://github.com/lbryio/lbry-sdk/pull/2896) by eukreign
Wallet
- [improvement] repair headers tip on open and let new headers come in during background fetching (https://github.com/lbryio/lbry-sdk/pull/2885) by shyba
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
35 downloads · 14 MiB
-
lbrynet-mac.zip
24 downloads · 11 MiB
-
lbrynet-windows.zip
28 downloads · 11 MiB
-
v0.66.0 Stable
released this
2020-03-26 22:59:02 +01:00 | 1768 commits to master since this release[0.66.0] - 2020-03-26
API
- [new feature] added
txo_plotcommand to allow plotting txo sums over time (https://github.com/lbryio/lbry-sdk/pull/2884) by eukreign - [new feature] added
wallet_syncingtostatus, which is set to true when processing transaction updates (https://github.com/lbryio/lbry-sdk/pull/2881) by shyba
Files
- [new feature] transcoding support for MKV files (https://github.com/lbryio/lbry-sdk/pull/2880) by BrannonKing
Wallet
- [new feature] added
wallet_syncingtostatus, which is set to true when processing transaction updates (https://github.com/lbryio/lbry-sdk/pull/2881) by shyba - [improvement] more efficient syncing of wallet transactions (https://github.com/lbryio/lbry-sdk/pull/2852) by jackrobison
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
lbrynet-linux.zip
42 downloads · 14 MiB
-
lbrynet-mac.zip
28 downloads · 11 MiB
-
lbrynet-windows.zip
33 downloads · 11 MiB
- [new feature] added
-
v0.65.0 Stable
released this
2020-03-23 19:56:45 +01:00 | 1792 commits to master since this release[0.65.0] - 2020-03-23
This release includes changes to the client side database schema which will trigger a reset of your
blockchain.dband perform full sync on startup.In this release the
txo_listcommand has reached its full potential in being able to filter specific transaction outputs based on who made them and who controls them which allows for differentiating between "supports" and "tips" and many other use cases. This release also introduces a newtxo_sumcommand which takes almost all of the same arguments astxo_listbut produces a sum of the outputs thattxo_listwould have returned in full, useful for making reports.Below are some examples and use cases of how to use
txo_list.Get all of the tips you've received from others on claim "xyz" (assuming "xyz" is your claim):
lbrynet txo list --is_my_output --is_not_my_input --type="support" --claim_id="xyz" --unspentSum of all of the tips you've sent to claim "xyz" (assuming "xyz" is not your claim):
lbrynet txo sum --is_my_input --is_not_my_output --type="support" --claim_id="xyz"Note:
--unspentis missing above, this is because the local database (at least in desktop app) doesn't know the status of outputs after you've sent them to someone else, therefore filtering by unspent is meaningless here (anytime you pass--is_not_my_output).Sum of all of the non-tip supports you've sent to claim "xyz" (assuming "xyz" is not your claim):
lbrynet txo sum --is_my_input --is_my_output --type="support" --claim_id="xyz" --unspentAnything someone just sent me:
lbrynet txo list --is_not_my_input --unspentEmulate
channel list:
lbrynet txo list --type=channel --unspentEmulate
support list:
lbrynet txo list --type=support --unspentAnother flag added is
--no_totalswhich is useful if you expect a very large result set, want a performant pagination and don't need to know total number of pages. (or, a more clever strategy, is to get total once and cache the size for some period of time and then do subsequent calls with--no_totalsas user paginates)Also,
--order_bysupports a value ofnonewhich is useful in certain situations where you don't care about the order and want maximum performance (or, if you just want to see performance impact actually is of sorting the result).API
- [new feature] added
--include_received_tipstoclaim_listandtxo_listcommands (https://github.com/lbryio/lbry-sdk/pull/2872) by eukreign - [new feature] added new flags to
resolve(and a few toclaim_search) commands:--include_purchase_receipt,--include_is_my_output,--include_sent_supports,--include_sent_tipsand--include_received_tips(https://github.com/lbryio/lbry-sdk/pull/2870) by eukreign - [new feature]
txo_listadds many new ownership filters such as--is_my_input,--is_my_output, etc and some metadata filters such as--channel_id,--reposted_claim_id, etc and a new commandtxo_sumwhich takes the same arguments astxo_listand produces sum of outputs (https://github.com/lbryio/lbry-sdk/pull/2862) by eukreign - [new feature] Adds tracemalloc api for memory troubleshooting (https://github.com/lbryio/lbry-sdk/pull/2854) by shyba
Blobs/files
- [bug] fixed issue with shell parsing on Windows (https://github.com/lbryio/lbry-sdk/pull/2866) by BrannonKing
- [refactor] transcode in stream_update, re-enable transcode on Windows (https://github.com/lbryio/lbry-sdk/pull/2861) by BrannonKing
Database
- [new feature] Use multiple processes for querying the db for api calls (https://github.com/lbryio/lbry-sdk/pull/2823) by jackrobison
Discovery
- [new feature] Trending algorithm with time delay and variable decay rate (https://github.com/lbryio/lbry-sdk/pull/2857) by eggplantbren
Files
- [improvement] ffmpeg transcoding - default to 1080P for any source higher than 1080p (https://github.com/lbryio/lbry-sdk/pull/2875) by tzarebczan
Tests
- [improvement] upgrade lbrycrd to v0.17.4.4 (https://github.com/lbryio/lbry-sdk/pull/2865) by eukreign
Wallet
- [bug] fix to prevent transaction cache from leaking some information about outputs between unrelated wallets (https://github.com/lbryio/lbry-sdk/pull/2871) by eukreign
- [improvement] fetch headers on demand (https://github.com/lbryio/lbry-sdk/pull/2863) by shyba
Wallet server
- [new feature] Add
blockchain.transaction.infoandblockchain.transaction.get_batchto the wallet server for more efficient transaction fetching (https://github.com/lbryio/lbry-sdk/pull/2851) by jackrobison
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
132 downloads · 14 MiB
-
lbrynet-mac.zip
100 downloads · 11 MiB
-
lbrynet-windows.zip
107 downloads · 11 MiB
- [new feature] added
-
v0.64.0 Stable
released this
2020-03-09 18:32:19 +01:00 | 1870 commits to master since this release[0.64.0] - 2020-03-09
API
- [new feature] added new
txo_listcommand with filtering for--claim_id, claim--nameand--is_received/--is_not_received, also commandsclaim_list/stream_list/channel_list/support_listare based ontxo_listand thus support most of the new filters (https://github.com/lbryio/lbry-sdk/pull/2848) by eukreign - [new feature] added
is_spentattribute to transaction outputs (https://github.com/lbryio/lbry-sdk/pull/2846) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
lbrynet-linux.zip
133 downloads · 14 MiB
-
lbrynet-mac.zip
79 downloads · 11 MiB
-
lbrynet-windows.zip
100 downloads · 11 MiB
- [new feature] added new
-
v0.63.0 Stable
released this
2020-03-06 21:58:34 +01:00 | 1877 commits to master since this release[0.63.0] - 2020-03-06
Asyncio
- [bug] fix DHT setup and disable ffmpeg on windows temporarily (https://github.com/lbryio/lbry-sdk/pull/2845) by jackrobison
Files
- [bug] use
os.path.join()instead of string addition when searching for file analysis binaries (https://github.com/lbryio/lbry-sdk/pull/2839) by eukreign - [improvement] don't validate and repair files that aren't videos; add maximum video bit rate setting (https://github.com/lbryio/lbry-sdk/pull/2793) by BrannonKing
Packaging
- [bug] revert LD_LIBRARY_PATH before calling ffmpeg (https://github.com/lbryio/lbry-sdk/pull/2842) by BrannonKing
Wallet server
- [new feature]
statuscommand returns features available of currently connected wallet server, including trending algorithm (https://github.com/lbryio/lbry-sdk/pull/2840) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
lbrynet-linux.zip
251 downloads · 14 MiB
-
lbrynet-mac.zip
161 downloads · 11 MiB
-
lbrynet-windows.zip
191 downloads · 11 MiB
-
v0.62.0 Stable
released this
2020-03-02 02:29:32 +01:00 | 1898 commits to master since this release[0.62.0] - 2020-03-01
API
- [improvement] when using
--resolvewith local claim*_listcommands, update resolved result with local metadata (such asis_mine) (https://github.com/lbryio/lbry-sdk/pull/2834) by eukreign
Commenting
- [improvement] Require a
channel_name/channel_idparameter forcomment_createinstead both being optional (https://github.com/lbryio/lbry-sdk/pull/2816) by osilkin98
Wallet server
- [improvement] Add LRU caches for blocks and block hashes in the wallet server (https://github.com/lbryio/lbry-sdk/pull/2836) by jackrobison
- [improvement] Improve wallet server performance with separate thread pools for leveldb, the block processor, and mempool (https://github.com/lbryio/lbry-sdk/pull/2835) by jackrobison
- [improvement] update
claim_type_*db indexes to be more performant (https://github.com/lbryio/lbry-sdk/pull/2831) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
41 downloads · 14 MiB
-
lbrynet-mac.zip
27 downloads · 11 MiB
-
lbrynet-windows.zip
28 downloads · 11 MiB
- [improvement] when using
-
v0.61.0 Stable
released this
2020-02-24 16:01:03 +01:00 | 1915 commits to master since this release[0.61.0] - 2020-02-24
Discovery
- [improvement] reposts inherit the tags of the original claim, filtered/blocked claims cause their reposts to also be filtered/blocked (https://github.com/lbryio/lbry-sdk/pull/2827) by eukreign
- [bug]
claim_search --not_channel_idsexcludes the channel itself and not just claims in the channel (https://github.com/lbryio/lbry-sdk/pull/2826) by eukreign
Tests
- [improvement] update lbrycrd in tests to v0.17.4.3 (https://github.com/lbryio/lbry-sdk/pull/2828) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
186 downloads · 14 MiB
-
lbrynet-mac.zip
138 downloads · 11 MiB
-
lbrynet-windows.zip
167 downloads · 11 MiB
-
v0.60.1 Stable
released this
2020-02-21 22:13:30 +01:00 | 1924 commits to master since this release[0.60.1] - 2020-02-21
API
- [new feature] add
ffmpeg_findapi to check ffmpeg installation status, don't recheck for ffmpeg instatus(https://github.com/lbryio/lbry-sdk/pull/2821) by jackrobison - [improvement] apply
share_usage_dataas it's set, without restarting (https://github.com/lbryio/lbry-sdk/pull/2815) by shyba
Config
- [improvement] max wallet server payment fee defaults to 0 and component doesnt start when its not a positive value (https://github.com/lbryio/lbry-sdk/pull/2824) by shyba
Files
- [new feature] Add
is_fully_reflectedtofile_listresponse (https://github.com/lbryio/lbry-sdk/pull/2772) by jackrobison
Wallet
- [refactor] use stream controller and documented errors for wallet server payments (https://github.com/lbryio/lbry-sdk/pull/2822) by shyba
Wallet server
- [bug] disconnect from client sending message larger than
MAX_RECEIVE(https://github.com/lbryio/lbry-sdk/pull/2820) by jackrobison - [new feature] add
MAX_RECEIVEsetting to wallet server (https://github.com/lbryio/lbry-sdk/pull/2819) by jackrobison - [new feature] wallet servers requesting a daily fee will automatically get paid by client (https://github.com/lbryio/lbry-sdk/pull/2707) by shyba
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
84 downloads · 14 MiB
-
lbrynet-mac.zip
61 downloads · 11 MiB
-
lbrynet-windows.zip
75 downloads · 11 MiB
- [new feature] add
-
v0.60.0 Stable
released this
2020-02-17 23:52:11 +01:00 | 1965 commits to master since this release[0.60.0] - 2020-02-17
Config
- [improvement] change default privacy setting (https://github.com/lbryio/lbry-sdk/pull/2806) by jessopb
Wallet server
- [improvement] wallet server indexes (https://github.com/lbryio/lbry-sdk/pull/2811) by eukreign
- [improvement] removed default
order_byforclaim_search(https://github.com/lbryio/lbry-sdk/pull/2810) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
49 downloads · 14 MiB
-
lbrynet-mac.zip
51 downloads · 11 MiB
-
lbrynet-windows.zip
45 downloads · 11 MiB
-
v0.59.2 Stable
released this
2020-02-13 23:22:21 +01:00 | 1976 commits to master since this release[0.59.2] - 2020-02-13
Packaging
- [improvement] linux build of LBRY SDK for Ubuntu 16.04 Xenial (https://github.com/lbryio/lbry-sdk/pull/2796) by eukreign
Wallet
- [bug] fix claim apis failing with --resolve if no claims are present (https://github.com/lbryio/lbry-sdk/pull/2803) by jackrobison
Wallet server
- [bug] Fix race condition setting/clearing the claim_search and resolve cache (https://github.com/lbryio/lbry-sdk/pull/2800) by jackrobison
- [improvement] Add sqlite index for reposted claims (https://github.com/lbryio/lbry-sdk/pull/2798) by jackrobison
- [bug] SQL generation fix to handle IN operation for one value lists (https://github.com/lbryio/lbry-sdk/pull/2790) by eukreign
Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
1 download
-
lbrynet-linux.zip
127 downloads · 14 MiB
-
lbrynet-mac.zip
87 downloads · 11 MiB
-
lbrynet-windows.zip
84 downloads · 11 MiB