Updated KST4C Logo for Builds in Higher Resolution and added it as an

SVG for Source. Should also be done when building Package with the help
of AUR in all Version and every Linux dist.
This commit is contained in:
2026-08-22 00:32:07 +02:00
parent 2bc7554a52
commit 399e5f34b7
13 changed files with 34 additions and 12 deletions
+1
View File
@@ -37,6 +37,7 @@ build() {
jpackage \
--type app-image \
--name KST4Contest \
--icon packaging/icons/kst4contest.png \
--input target/dist-libs \
--main-jar app.jar \
--main-class kst4contest.view.Kst4ContestApplication \
+1 -1
View File
@@ -1,7 +1,7 @@
pkgbase = kst4contest
pkgdesc = ON4KST Chat Client for VHF/UHF contest operation
pkgver = 1.41.1
pkgrel = 1
pkgrel = 2
url = https://github.com/praktimarc/kst4contest
arch = x86_64
license = GPL-3.0-only
+9 -1
View File
@@ -1,7 +1,7 @@
# Maintainer: Philipp Wagner <philipp@wagnersnetz.de>
pkgname=kst4contest
pkgver=1.41.1
pkgrel=1
pkgrel=2
pkgdesc="ON4KST Chat Client for VHF/UHF contest operation"
arch=('x86_64')
url="https://github.com/praktimarc/kst4contest"
@@ -34,9 +34,17 @@ build() {
else
ADD_MODULES="$(sed -n 's:.*<addmodule>\(.*\)</addmodule>.*:\1:p' pom.xml | paste -sd,)"
fi
# Same story for the packaging icon: without --icon jpackage silently ships
# its own Duke placeholder, but tarballs older than v1.42.0 have no icon to
# point at, so only pass the flag when the file is actually there.
ICON_ARGS=()
if [ -f packaging/icons/kst4contest.png ]; then
ICON_ARGS=(--icon packaging/icons/kst4contest.png)
fi
jpackage \
--type app-image \
--name KST4Contest \
"${ICON_ARGS[@]}" \
--input target/dist-libs \
--main-jar app.jar \
--main-class kst4contest.view.Kst4ContestApplication \