<div dir="ltr"><div><div><div>Doesn't look like they have a way on their UI to do it, but you can use this information for the purpose:<br><br><a href="https://help.github.com/articles/getting-the-download-count-for-your-releases/">https://help.github.com/articles/getting-the-download-count-for-your-releases/</a><br><br></div>Processing this for the latest release can be done as follows:<br>curl -X GET <a href="https://api.github.com/repos/crosswire/xiphos/releases">https://api.github.com/repos/crosswire/xiphos/releases</a> | jq '.[0].assets[] | .name, .download_count'<br><br></div>This requires the "jq" tool, which is similar to awk/sed/grep for processing JSON formatted data. It is a 0-depdendency C program available from Fedora repos. I get the following output for this command, at present:<br><br>"xiphos-4.0.6-20170810-win32.exe"<br>4<br>"xiphos-4.0.6-20170810-win64.exe"<br>6<br>"xiphos-4.0.6-20170810.tar.gz"<br>16<br>"xiphos-common-4.0.6-1xi.fc24.i686.rpm"<br>0<br>"xiphos-common-4.0.6-1xi.fc24.x86_64.rpm"<br>3<br>"xiphos-debuginfo-4.0.6-1xi.fc24.i686.rpm"<br>0<br>"xiphos-debuginfo-4.0.6-1xi.fc24.x86_64.rpm"<br>0<br>"xiphos-gtk2-4.0.6-1xi.fc24.i686.rpm"<br>0<br>"xiphos-gtk2-4.0.6-1xi.fc24.x86_64.rpm"<br>0<br>"xiphos-gtk3-4.0.6-1xi.fc24.i686.rpm"<br>0<br>"xiphos-gtk3-4.0.6-1xi.fc24.x86_64.rpm"<br>3<br>"xiphos.spec"<br>2<br><br></div>--Greg<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Aug 12, 2017 at 11:03 AM, Karl Kleinpaste <span dir="ltr"><<a href="mailto:karl@kleinpaste.org" target="_blank">karl@kleinpaste.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div text="#000000" bgcolor="#FFFFFF">
<font face="FreeSerif">SF provided histograms of download activity,
providing useful indicators of who looked for what.<br>
<br>
Does GH provide similar capability?<br>
</font>
</div>
<br>______________________________<wbr>_________________<br>
xiphos-devel mailing list<br>
<a href="mailto:xiphos-devel@crosswire.org">xiphos-devel@crosswire.org</a><br>
<a href="http://www.crosswire.org/mailman/listinfo/xiphos-devel" rel="noreferrer" target="_blank">http://www.crosswire.org/<wbr>mailman/listinfo/xiphos-devel</a><br>
<br></blockquote></div><br></div>