Eliminado el soporte de discord.

Corrección de nombres y typos.
Eliminación de código innecesario.
Depuración archivos de idiomas.
This commit is contained in:
2025-05-27 23:21:12 -03:00
parent 0afac26523
commit def51d532e
112 changed files with 72 additions and 2293 deletions
+9 -9
View File
@@ -377,15 +377,15 @@ fi
CHANNEL_SIMPLE="$CHANNEL"
if [ -z $CHANNEL ] ; then
if [ $TARGET_PLATFORM == "darwin" ] ; then
CHANNEL="private-`hostname -s` "
else
CHANNEL="private-`hostname`"
fi
else
#if [ -z $CHANNEL ] ; then
# if [ $TARGET_PLATFORM == "darwin" ] ; then
# CHANNEL="private-`hostname -s` "
# else
# CHANNEL="private-`hostname`"
# fi
#else
CHANNEL=`echo $CHANNEL | sed -e "s/[^a-zA-Z0-9\-]*//g"` # strip out difficult characters from channel
fi
#fi
CHANNEL="Puma-$CHANNEL"
if [ \( $WANTS_CLEAN -eq $TRUE \) -a \( $WANTS_BUILD -eq $FALSE \) ] ; then
@@ -495,7 +495,7 @@ if [ $WANTS_CONFIG -eq $TRUE ] ; then
# Also delete easy-to-copy resource files, insuring that we properly refresh resoures from the source tree
if [ -d skins ] ; then
echo "Removing select previously packaged resources, they will refresh at build time"
for subdir in skins app_settings fs_resources ; do
for subdir in skins app_settings pm_resources ; do
for resourcedir in `$FIND . -type d -name $subdir` ; do
rm -rf $resourcedir ;
done