annotate deploy/src/archive.sh @ 1231:b4fd38b40712 spectrogram-minor-refactor

Fix threshold in spectrogram -- it wasn't working in the last release. There is a new protocol for this. Formerly the threshold parameter had a range from -50dB to 0 with the default at -50, and -50 treated internally as "no threshold". However, there was a hardcoded, hidden internal threshold for spectrogram colour mapping at -80dB with anything below this being rounded to zero. Now the threshold parameter has range -81 to -1 with the default at -80, -81 is treated internally as "no threshold", and there is no hidden internal threshold. So the default behaviour is the same as before, an effective -80dB threshold, but it is now possible to change this in both directions. Sessions reloaded from prior versions may look slightly different because, if the session says there should be no threshold, there will now actually be no threshold instead of having the hidden internal one. Still need to do something in the UI to make it apparent that the -81dB setting removes the threshold entirely. This is at least no worse than the previous, also obscured, magic -50dB setting.
author Chris Cannam
date Mon, 01 Aug 2016 16:21:01 +0100
parents 0fd39f67a6ee
children bd14a0f69b60
rev   line source
Chris@654 1 #!/bin/bash
Chris@654 2
Chris@1158 3 set -eu
Chris@1158 4
Chris@654 5 tag=`hg tags | grep '^sv_v' | head -1 | awk '{ print $1; }'`
Chris@654 6
Chris@1158 7 v=`echo "$tag" | sed 's/sv_v//' | sed 's/_.*$//'`
Chris@654 8
Chris@1158 9 echo
Chris@1158 10 echo -n "Packaging up version $v from tag $tag... "
Chris@654 11
Chris@654 12 hg archive -r"$tag" --subrepos --exclude sv-dependency-builds /tmp/sonic-visualiser-"$v".tar.gz
Chris@654 13
Chris@1158 14 echo Done
Chris@1158 15 echo
Chris@1158 16
Chris@1158 17 # Test that the appropriate version of the docs exist on the website
Chris@1158 18
Chris@1158 19 doc_url="http://sonicvisualiser.org/doc/reference/$v/en/"
Chris@1158 20 doc_status=$(curl -sL -w "%{http_code}" "$doc_url" -o /dev/null)
Chris@1158 21
Chris@1158 22 if [ "$doc_status" = "404" ]; then
Chris@1158 23 echo "*** WARNING: Documentation URL returns a 404:"
Chris@1158 24 echo "*** $doc_url"
Chris@1158 25 echo "*** Please fix this before release!"
Chris@1158 26 echo
Chris@1158 27 fi