diff --git a/CHANGELOG.md b/CHANGELOG.md index bb8e86fd6..6f9812547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,6 @@ at anytime. ### Fixed * Fixed unnecessarily verbose exchange rate error (https://github.com/lbryio/lbry/issues/984) * Merged two sepereate dht test folders into one - * ### Deprecated * `channel_list_mine`, replaced with `channel_list` @@ -25,15 +24,14 @@ at anytime. * Check claim schema in `publish` before trying to make the claim, return better error messages * Renamed `channel_list_mine` to `channel_list` * Changed `channel_list` to include channels where the certificate info has been imported but the claim is not in the wallet - * API commands file_list, file_delete, and file_reflect no longer deals with claim information - * + * Changed `file_list`, `file_delete`, `file_set_status`, and `file_reflect` to no longer return claim related information. ### Added * Added `channel_import` and `channel_export` commands * Added `is_mine` field to `channel_list` results ### Removed - * + * Removed claim related filter arguments `name`, `claim_id`, and `outpoint` from `file_list`, `file_delete`, `file_set_status`, and `file_reflect` * diff --git a/lbrynet/daemon/Daemon.py b/lbrynet/daemon/Daemon.py index d23185e3e..f01bb524c 100644 --- a/lbrynet/daemon/Daemon.py +++ b/lbrynet/daemon/Daemon.py @@ -1537,19 +1537,14 @@ class Daemon(AuthJSONRPCServer): Usage: file_set_status [--sd_hash=] [--file_name=] - [--stream_hash=] [--claim_id=] - [--outpoint=] [--rowid=] - [--name=] + [--stream_hash=] [--rowid=] Options: --sd_hash= : set status of file with matching sd hash --file_name= : set status of file with matching file name in the downloads folder --stream_hash= : set status of file with matching stream hash - --claim_id= : set status of file with matching claim id - --outpoint= : set status of file with matching claim outpoint --rowid= : set status of file with matching row id - --name= : set status of file with matching associated name claim Returns: (str) Confirmation message @@ -1583,9 +1578,7 @@ class Daemon(AuthJSONRPCServer): Usage: file_delete [-f] [--delete_all] [--sd_hash=] [--file_name=] - [--stream_hash=] [--claim_id=] - [--outpoint=] [--rowid=] - [--name=] + [--stream_hash=] [--rowid=] Options: -f, --delete_from_download_dir : delete file from download directory, @@ -2639,8 +2632,7 @@ class Daemon(AuthJSONRPCServer): Usage: file_reflect [--sd_hash=] [--file_name=] - [--stream_hash=] [--claim_id=] - [--outpoint=] [--rowid=] [--name=] + [--stream_hash=] [--rowid=] [--reflector=] Options: