diff --git a/CHANGELOG b/CHANGELOG index e9875fb69..20ccfb838 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +sdrangel (7.22.0-1) unstable; urgency=medium + + * New Rx channel based on WDSP. Issue #2156 + * Added cubehelix based color maps. Issue #2191 + * Fix API host address in About dialog and debug message. PR #2218 + * Some cleanup. PR #2212 + * Added shift to channel marker to take RIT into account. Part of #2156 + * Added S-meter units to scale engine. Part of #2156 + * Some typos fixes. PR #2206 + * Map enhancements and fixes. PR #2187 + * APT Demod: Check filename suffix is specified. PR #2190 + * Don't change filenames on Android, PR #2190 + * Frequency Scanner: Fix rounding error. PR #2186 + * Update sdrangel-windows-libraries link to include latest VC redistributable. PR #2185 + + -- Edouard Griffiths, F4EXB Tue, 13 Aug 2024 17:01:01 +0200 + sdrangel (7.21.4-1) unstable; urgency=medium * Code fixes. PR #2184 diff --git a/debian/changelog b/debian/changelog index 4d45d5c55..531224657 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +sdrangel (7.22.0-1) unstable; urgency=medium + + * New Rx channel based on WDSP. Issue #2156 + * Added cubehelix based color maps. Issue #2191 + * Fix API host address in About dialog and debug message. PR #2218 + * Some cleanup. PR #2212 + * Added shift to channel marker to take RIT into account. Part of #2156 + * Added S-meter units to scale engine. Part of #2156 + * Some typos fixes. PR #2206 + * Map enhancements and fixes. PR #2187 + * APT Demod: Check filename suffix is specified. PR #2190 + * Don't change filenames on Android, PR #2190 + * Frequency Scanner: Fix rounding error. PR #2186 + * Update sdrangel-windows-libraries link to include latest VC redistributable. PR #2185 + + -- Edouard Griffiths, F4EXB Tue, 13 Aug 2024 17:01:01 +0200 + sdrangel (7.21.4-1) unstable; urgency=medium * Code fixes. PR #2184 diff --git a/gitdiff.sh b/gitdiff.sh index 1fe827198..2b27474a9 100755 --- a/gitdiff.sh +++ b/gitdiff.sh @@ -1,2 +1,9 @@ #!/bin/sh -git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | sort -u +BASEDIR=$(dirname $0) +PLUGINS=$(git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | sort -u) +for plugin in $PLUGINS +do + FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp") + sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.0\"\)/" $FILE +done +