Guilherme Silva f64c46c6ae
Further improvements for the 'Lite' Flatpak variant (#836)
These changes should only affect the Linux build.

Co-authored-by: guihkx <guihkx@users.noreply.github.com>
2022-12-21 15:02:27 +01:00

17 lines
514 B
Bash
Executable File

#!/bin/sh
changelog_file="resources/text/CHANGELOG"
datestring="$(date +%F)"
versionstring="$(head -n 1 "$changelog_file")"
for appdata_file in resources/desktop/*.metainfo.xml.in; do
appdata_file_n="${appdata_file}.n"
# Set version and date.
cat "$appdata_file" | sed -e "s@release version\=\"[A-Za-z0-9.]*\"@release version\=\"$versionstring\"@g" | sed -e "s@ date\=\"[0-9\-]*\"@ date\=\"$datestring\"@g" > "$appdata_file_n"
mv "$appdata_file_n" "$appdata_file"
git add "$appdata_file"
done
exit 0