Browse Source

add compatabilty message

feature/ubuntu24
Daniel Gibbs 3 months ago
parent
commit
4a30a5ce84
  1. 4
      lgsm/data/serverlist.csv
  2. 12
      lgsm/data/ubuntu-24.04.csv
  3. 10
      lgsm/modules/check_deps.sh

4
lgsm/data/serverlist.csv

@ -10,8 +10,8 @@ av,avserver,Avorion,ubuntu-24.04
bb,bbserver,BrainBread,ubuntu-24.04 bb,bbserver,BrainBread,ubuntu-24.04
bb2,bb2server,BrainBread 2,ubuntu-24.04 bb2,bb2server,BrainBread 2,ubuntu-24.04
bd,bdserver,Base Defense,ubuntu-24.04 bd,bdserver,Base Defense,ubuntu-24.04
bf1942,bf1942server,Battlefield 1942,ubuntu-24.04 bf1942,bf1942server,Battlefield 1942,ubuntu-22.04
bfv,bfvserver,Battlefield: Vietnam,ubuntu-24.04 bfv,bfvserver,Battlefield: Vietnam,ubuntu-22.04
bmdm,bmdmserver,Black Mesa: Deathmatch,ubuntu-24.04 bmdm,bmdmserver,Black Mesa: Deathmatch,ubuntu-24.04
bo,boserver,Ballistic Overkill,ubuntu-24.04 bo,boserver,Ballistic Overkill,ubuntu-24.04
bs,bsserver,Blade Symphony,ubuntu-24.04 bs,bsserver,Blade Symphony,ubuntu-24.04

1 shortname gameservername gamename os
10 bb bbserver BrainBread ubuntu-24.04
11 bb2 bb2server BrainBread 2 ubuntu-24.04
12 bd bdserver Base Defense ubuntu-24.04
13 bf1942 bf1942server Battlefield 1942 ubuntu-24.04 ubuntu-22.04
14 bfv bfvserver Battlefield: Vietnam ubuntu-24.04 ubuntu-22.04
15 bmdm bmdmserver Black Mesa: Deathmatch ubuntu-24.04
16 bo boserver Ballistic Overkill ubuntu-24.04
17 bs bsserver Blade Symphony ubuntu-24.04

12
lgsm/data/ubuntu-24.04.csv

@ -31,7 +31,7 @@ cs
cs2 cs2
cscz cscz
csgo csgo
css,libtinfo5:i386 css
ct ct
dab dab
dayz dayz
@ -48,7 +48,7 @@ etl
ets2 ets2
fctr fctr
fof fof
gmod,libtinfo5:i386 gmod
hcu hcu
hl2dm hl2dm
hldm hldm
@ -72,7 +72,7 @@ mohaa,libstdc++5:i386
mta,libncursesw5,libxml2-utils mta,libncursesw5,libxml2-utils
nd nd
nec nec
nmrih,libtinfo5:i386 nmrih
ns ns
ns2,speex,libtbb2 ns2,speex,libtbb2
ns2c,speex:i386,libtbb2 ns2c,speex:i386,libtbb2
@ -104,7 +104,7 @@ scpsl,mono-complete
scpslsm,mono-complete scpslsm,mono-complete
sdtd,telnet,expect,libxml2-utils sdtd,telnet,expect,libxml2-utils
sf sf
sfc,libtinfo5:i386 sfc
sm,telnet,expect sm,telnet,expect
sof2 sof2
sol sol
@ -135,5 +135,5 @@ wf
wmc,openjdk-21-jre wmc,openjdk-21-jre
wurm,xvfb wurm,xvfb
xnt xnt
zmr,libtinfo5:i386 zmr
zps,libtinfo5:i386 zps

Can't render this file because it has a wrong number of fields in line 2.

10
lgsm/modules/check_deps.sh

@ -348,6 +348,8 @@ if [ "${commandname}" == "INSTALL" ]; then
fi fi
fi fi
info_distro.sh
# Will warn user if their distro is no longer supported by the vendor. # Will warn user if their distro is no longer supported by the vendor.
if [ -n "${distrosupport}" ]; then if [ -n "${distrosupport}" ]; then
if [ "${distrosupport}" == "unsupported" ]; then if [ "${distrosupport}" == "unsupported" ]; then
@ -356,7 +358,13 @@ if [ -n "${distrosupport}" ]; then
fi fi
fi fi
info_distro.sh if { [ "${distroid}" == "ubuntu" ] && dpkg --compare-versions "${distroversion}" "gt" "24.04"; } || { [ "${distroidlike}" == "debian" ] && dpkg --compare-versions "${distroversion}" "gt" "12"; }; then
if [ "${shortname}" == "bf1942" ] || [ "${shortname}" == "bfv" ]; then
fn_print_warning_nl "${gamename} is not supported on ${distroname}."
fn_script_log_warn "${gamename} is not supported on ${distroname}."
core_exit.sh
fi
fi
if [ ! -f "${tmpdir}/dependency-no-check.tmp" ] && [ ! -f "${datadir}/${distroid}-${distroversioncsv}.csv" ]; then if [ ! -f "${tmpdir}/dependency-no-check.tmp" ] && [ ! -f "${datadir}/${distroid}-${distroversioncsv}.csv" ]; then
# Check that the distro dependency csv file exists. # Check that the distro dependency csv file exists.

Loading…
Cancel
Save