Skip to content

Commit

Permalink
[Zenodo] Some initial integration with Zenodo
Browse files Browse the repository at this point in the history
More work will likely need to be done with automated description generation.

[skip_ci]
  • Loading branch information
atruskie committed Mar 5, 2018
1 parent 5d4ecb6 commit 6ea3cbb
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"upload_type": "software",
"creators": [
{
"@id": "https://orcid.org/0000-0002-8246-7151",
"@type": "Person",
"affiliation": "Queensland University of Technology",
"name": "Michael Towsey"
},
{
"@id": "https://orcid.org/0000-0003-1110-1483",
"@type": "Person",
"affiliation": "Queensland University of Technology",
"name": "Anthony Truskinger"
},
{
"@type": "Person",
"affiliation": "@Australian-Translational-Genomics",
"name": "Mark Cottman-Fields"
},
{
"@type": "Person",
"affiliation": "Queensland University of Technology",
"name": "Paul Roe"
}
],
"license": "Apache-2.0"
}
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ All the analyses are performed by a single executable file, _AnalysisPrograms.ex

## Citation

[![DOI](https://zenodo.org/badge/18597929.svg)](https://zenodo.org/badge/latestdoi/18597929)

Use this citation in all publications that use data or concepts from this code base is required:

> Towsey, M., Truskinger, A., & Roe, P. (2017) Audio Analysis Software (Version 17.04.3813.0) \[Computer software\].
> Brisbane: QUT Ecoacoustics Research Group, https://github.com/QutEcoacoustics/audio-analysis
> Michael Towsey, Anthony Truskinger, Mark Cottman-Fields, & Paul Roe. (2018, March 5). Ecoacoustics Audio Analysis Software v18.03.0.41 (Version v18.03.0.41). Zenodo. http://doi.org/10.5281/zenodo.1188744
Additionally, depending on the analysis that was run, extra work may be required to be cited. Any such additional
citations will printed in the console and in the log file.
Expand Down
4 changes: 2 additions & 2 deletions build/release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ $old_tag_name = exec { git describe --abbrev=0 --always "$tag_name^" }

$compare_message = "[Compare $old_tag_name...$tag_name](https://github.com/QutBioacoustics/audio-analysis/compare/$old_tag_name...$tag_name)"
$commit_summary = exec { git log --no-merges --pretty=format:"%h %an - %s" "$old_tag_name...$tag_name" -- . ':(exclude,icase)*.r' }
$commit_summary = $commit_summary -join "`n"
$commit_summary = ($commit_summary | % { "- " + $_ }) -join "`n"
$release_message = "Version $tag_name`n`n$compare_message`n`n$commit_summary"
$env:ApReleaseMessage = $release_message
$release_title = "Version $tag_name - Release and Debug builds"
$release_title = "Ecoacoustics Audio Analysis Software $tag_name"
$env:ApReleaseTitle = $release_title

echo "Release strings:`n$release_title`n$release_message"
Expand Down

0 comments on commit 6ea3cbb

Please sign in to comment.