docs
This commit is contained in:
parent
c111bd49d3
commit
57152547ce
2 changed files with 5 additions and 15 deletions
|
@ -15,7 +15,6 @@ at anytime.
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed unnecessarily verbose exchange rate error (https://github.com/lbryio/lbry/issues/984)
|
* Fixed unnecessarily verbose exchange rate error (https://github.com/lbryio/lbry/issues/984)
|
||||||
* Merged two sepereate dht test folders into one
|
* Merged two sepereate dht test folders into one
|
||||||
*
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
* `channel_list_mine`, replaced with `channel_list`
|
* `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
|
* Check claim schema in `publish` before trying to make the claim, return better error messages
|
||||||
* Renamed `channel_list_mine` to `channel_list`
|
* 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
|
* 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
|
||||||
* Added `channel_import` and `channel_export` commands
|
* Added `channel_import` and `channel_export` commands
|
||||||
* Added `is_mine` field to `channel_list` results
|
* Added `is_mine` field to `channel_list` results
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
*
|
* Removed claim related filter arguments `name`, `claim_id`, and `outpoint` from `file_list`, `file_delete`, `file_set_status`, and `file_reflect`
|
||||||
*
|
*
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1537,19 +1537,14 @@ class Daemon(AuthJSONRPCServer):
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
file_set_status <status> [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
file_set_status <status> [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
||||||
[--stream_hash=<stream_hash>] [--claim_id=<claim_id>]
|
[--stream_hash=<stream_hash>] [--rowid=<rowid>]
|
||||||
[--outpoint=<outpoint>] [--rowid=<rowid>]
|
|
||||||
[--name=<name>]
|
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--sd_hash=<sd_hash> : set status of file with matching sd hash
|
--sd_hash=<sd_hash> : set status of file with matching sd hash
|
||||||
--file_name=<file_name> : set status of file with matching file name in the
|
--file_name=<file_name> : set status of file with matching file name in the
|
||||||
downloads folder
|
downloads folder
|
||||||
--stream_hash=<stream_hash> : set status of file with matching stream hash
|
--stream_hash=<stream_hash> : set status of file with matching stream hash
|
||||||
--claim_id=<claim_id> : set status of file with matching claim id
|
|
||||||
--outpoint=<outpoint> : set status of file with matching claim outpoint
|
|
||||||
--rowid=<rowid> : set status of file with matching row id
|
--rowid=<rowid> : set status of file with matching row id
|
||||||
--name=<name> : set status of file with matching associated name claim
|
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(str) Confirmation message
|
(str) Confirmation message
|
||||||
|
@ -1583,9 +1578,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
file_delete [-f] [--delete_all] [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
file_delete [-f] [--delete_all] [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
||||||
[--stream_hash=<stream_hash>] [--claim_id=<claim_id>]
|
[--stream_hash=<stream_hash>] [--rowid=<rowid>]
|
||||||
[--outpoint=<outpoint>] [--rowid=<rowid>]
|
|
||||||
[--name=<name>]
|
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-f, --delete_from_download_dir : delete file from download directory,
|
-f, --delete_from_download_dir : delete file from download directory,
|
||||||
|
@ -2639,8 +2632,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
file_reflect [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
file_reflect [--sd_hash=<sd_hash>] [--file_name=<file_name>]
|
||||||
[--stream_hash=<stream_hash>] [--claim_id=<claim_id>]
|
[--stream_hash=<stream_hash>] [--rowid=<rowid>]
|
||||||
[--outpoint=<outpoint>] [--rowid=<rowid>] [--name=<name>]
|
|
||||||
[--reflector=<reflector>]
|
[--reflector=<reflector>]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
Loading…
Add table
Reference in a new issue