summaryrefslogtreecommitdiff
path: root/update/createnew.sh
blob: 309da442157d4380895301b1954d1be014649eff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash

# Copyright (C) 2011-2012  TMW2 Online
# Author: Andrei Karas (4144)

dir=`pwd`

#rm adler32
#gcc -lz adler32.c -o adler32

mkdir files
mkdir upload

rm files/TMW2.zip
rm files/Audio.zip
rm files/Maps.zip
echo "\033[1mls -lh ../..\033[0m"
ls -lh ../..
echo "\033[1mcd ../../clientdata\033[0m"
cd ../../clientdata
echo "\033[1mGenerating zip file...\033[0m"
ls -lh ../..
find -iregex ".+[.]\(xml\|png\|jpg\|tmx\|ogg\|txt\|po\|tsx\)" -exec touch --date=2015-01-01 {} \;
find -iregex ".+[.]\(xml\|png\|jpg\)" -printf "%P\n" | zip -X -@ $dir/files/TMW2.zip
find -iregex ".+[.]\(ogg\|txt\)" -printf "%P\n" | zip -X -@ $dir/files/Audio.zip
find -iregex ".+[.]\(tmx\|tsx\|po\)" -printf "%P\n" | zip -X -@ $dir/files/Maps.zip
git log --pretty=oneline -n 1 | awk '{print $1}' > $dir/commit.txt

echo "\033[1mcd $dir/files\033[0m"
cd $dir/files

echo "\033[1mGenerating XMLs\033[0m"
echo '<?xml version="1.0"?>
<updates>' >xml_header.txt
touch xml_footer.txt
touch xml_mods.txt

sum=`adler32 TMW2.zip | awk '{print $2}'`
echo "TMW2.zip ${sum}" >resources2.txt
echo "    <update type=\"data\" file=\"TMW2.zip\" hash=\"${sum}\" />" >> xml_header.txt

sum=`adler32 Maps.zip | awk '{print $2}'`
echo "Maps.zip ${sum}" >resources2.txt
echo "    <update type=\"data\" file=\"Maps.zip\" hash=\"${sum}\" />" >> xml_header.txt

sum=`adler32 Audio.zip | awk '{print $2}'`
echo "Audio.zip ${sum}" >resources2.txt
echo "    <update type=\"data\" file=\"Audio.zip\" hash=\"${sum}\" />" >> xml_header.txt

cp xml_header.txt resources.xml
cat xml_footer.txt >>resources.xml
cat xml_mods.txt >>resources.xml
echo '</updates>' >>resources.xml

echo "\033[1mPublishing changes...\033[0m"
cp TMW2.zip ../upload/
cp Maps.zip ../upload/
cp Audio.zip ../upload/
cp resources2.txt ../upload/
cp resources.xml ../upload/
cp ../news.txt ../upload/