Changelog
Source:NEWS.md
rdryad 0.4.0
CRAN release: 2018-06-18
NEW FEATURES
- gains new function
dryad_metadata()
to download Dryad file metadata - gains new function
dryad_package_dois()
to get file DOIs for a Dryad package DOI (a package can have many files) (#22)
MINOR IMPROVEMENTS
-
dryad_files
(formerlydownload_url()
) now scrapes Dryad page to get URLs to Dryad files instead of using their API, which was not dependable (#26) -
dryad_fetch
gains a parametertry_file_names
(a boolean) which ifTRUE
we try to extract file names out of URLs (#26)
BUG FIXES
- fix to solr
rdryad
functions to hard code use ofxml
return format, and followlocation to follow any redirects (#27)
DEFUNCT
-
download_url()
is now defunct, seedryad_files()
rdryad 0.3.0
CRAN release: 2017-11-07
NEW FEATURES
- Move to using
solrium
package instead ofsolr
package for interaction with Dryad’s Solr backend (#21) (#24) - Now using
crul
instead ofhttr
for HTTP requests (#23) - gains two new functions
handle2doi
anddoi2handle
to convert between handles and DOIs, and DOIs and handles, respectively (#25) -
download_url
function name has been changed todryad_files
, but you can still usedownload_url
until the next version. In addition,download_url
/dryad_files
parametersid
is changed todoi
.
MINOR IMPROVEMENTS
-
dryad_fetch
is improved, and usescurl::curl_download
instead ofdownload.file
. It now accepts >1 input URL, butdestile
length must equal number of urls.