Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
refactor(modules): bundle/outside
style: apply code style and reformat
fix(core): late load precache crash
fix(modules): logic of pet animation
feat(modules): imporve performance
style: use methodmap
feat(core): optimize spawn timer performance
fix(core): Fix empty model crash server
  • Loading branch information
Kxnrl committed Aug 18, 2023
2 parents 5923141 + a9ec2b7 commit ca97da8
Show file tree
Hide file tree
Showing 24 changed files with 2,596 additions and 2,252 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
cp store.sp store_tt.sp
for file in store_tt.sp
do
sed -i "s%<Compile_Environment>%GM_TT%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_TT%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core TTT..."
Expand All @@ -62,7 +62,7 @@ jobs:
cp store.sp store_ze.sp
for file in store_ze.sp
do
sed -i "s%<Compile_Environment>%GM_ZE%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_ZE%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core ZE..."
Expand All @@ -74,7 +74,7 @@ jobs:
cp store.sp store_mg.sp
for file in store_mg.sp
do
sed -i "s%<Compile_Environment>%GM_MG%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_MG%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core MG..."
Expand All @@ -86,7 +86,7 @@ jobs:
cp store.sp store_jb.sp
for file in store_jb.sp
do
sed -i "s%<Compile_Environment>%GM_JB%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_JB%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core JB..."
Expand All @@ -98,7 +98,7 @@ jobs:
cp store.sp store_kz.sp
for file in store_kz.sp
do
sed -i "s%<Compile_Environment>%GM_KZ%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_KZ%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core KZ..."
Expand All @@ -110,7 +110,7 @@ jobs:
cp store.sp store_pr.sp
for file in store_pr.sp
do
sed -i "s%<Compile_Environment>%GM_PR%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_PR%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core Pure..."
Expand All @@ -122,7 +122,7 @@ jobs:
cp store.sp store_hg.sp
for file in store_hg.sp
do
sed -i "s%<Compile_Environment>%GM_HG%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_HG%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core HG..."
Expand All @@ -134,7 +134,7 @@ jobs:
cp store.sp store_sr.sp
for file in store_sr.sp
do
sed -i "s%<Compile_Environment>%GM_SR%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_SR%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core Surf..."
Expand All @@ -146,7 +146,7 @@ jobs:
cp store.sp store_hz.sp
for file in store_hz.sp
do
sed -i "s%<Compile_Environment>%GM_HZ%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_HZ%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core Warcraft..."
Expand All @@ -158,7 +158,7 @@ jobs:
cp store.sp store_bh.sp
for file in store_bh.sp
do
sed -i "s%<Compile_Environment>%GM_BH%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_BH%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core BHOP..."
Expand All @@ -170,7 +170,7 @@ jobs:
cp store.sp store_is.sp
for file in store_is.sp
do
sed -i "s%<Compile_Environment>%GM_IS%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_IS%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core Insurgency"
Expand All @@ -182,7 +182,7 @@ jobs:
cp store.sp store_ef.sp
for file in store_ef.sp
do
sed -i "s%<Compile_Environment>%GM_EF%g" $file > output.txt
sed -i "s%COMPILE_ENVIRONMENT%GM_EF%g" $file > output.txt
rm output.txt
done
echo -e "\nCompiling Core Left 4 Dead(2)..."
Expand Down Expand Up @@ -229,4 +229,4 @@ jobs:
RSYNC_PASSWORD=${{secrets.RSYNC_PSWD}} rsync -avz ./build/plugins/*.smx rsync://${{secrets.RSYNC_USER}}@${{secrets.RSYNC_HOST}}:${{secrets.RSYNC_PORT}}/${{secrets.RSYNC_PATH}}/_Raw/
RSYNC_PASSWORD=${{secrets.RSYNC_PSWD}} rsync -avz ./build/plugins/modules/*.smx rsync://${{secrets.RSYNC_USER}}@${{secrets.RSYNC_HOST}}:${{secrets.RSYNC_PORT}}/${{secrets.RSYNC_PATH}}/_Raw/
RSYNC_PASSWORD=${{secrets.RSYNC_PSWD}} rsync -avz ./build/translations/store.phrases.txt rsync://${{secrets.RSYNC_USER}}@${{secrets.RSYNC_HOST}}:${{secrets.RSYNC_PORT}}/${{secrets.RSYNC_PATH}}/_Raw/translations/
2 changes: 1 addition & 1 deletion include/store.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#endif

#define STORE_AUTHOR "Kyle"
#define STORE_VERSION "2.6.1" ... "." ... STORE_AUTO_VERSION
#define STORE_VERSION "2.7.0" ... "." ... STORE_AUTO_VERSION
#define STORE_URL "https://www.kxnrl.com"

public SharedPlugin __pl_store =
Expand Down
Loading

0 comments on commit ca97da8

Please sign in to comment.