1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

tools: better logic for the splash image text.

Change of series must always have their own splash image (which will
stay the same within the whole series).
Development releases though will have a new splash image most of the
time (but it is not mandatory).

See rule edicted in commit Infrastructure/gimp-web-devel@061f544.
This commit is contained in:
Jehan
2025-09-22 12:39:23 +02:00
parent ec4daa643e
commit aa9e437d42

View File

@@ -235,7 +235,15 @@ count_data_contributors 'icons/*.svg icons/*.png' "%d icon designers: %s"
count_data_contributors 'cursors' "%d cursor designers: %s"
count_data_contributors 'brushes' "%d brush designers: %s"
count_data_contributors 'patterns' "%d pattern designers: %s"
echo " - TODO: splash author."
if [ "$prevmajor" -ne "$major" ] || [ "$prevminor" -ne "$minor" ] || [ $((minor%2)) -eq 1 ]; then
# Micro releases don't have a splash update (expect optionally
# development releases).
if [ $((minor%2)) -eq 0 ]; then
echo " - The splash image for the $major.$minor series was authored by TODO under license TODO."
else
echo " - [OPTIONAL] This new development splash image was authored by TODO under license TODO."
fi
fi
echo
echo "Contributions on other repositories in the GIMPverse (order is determined by"