built on 04/06/2020 22:50:04
This commit is contained in:
parent
740036638b
commit
15d227f61c
17
README.md
17
README.md
@ -28,10 +28,27 @@ or use the manual on [GitHub](https://github.com/joe7575/techage/wiki).
|
||||
|
||||
|
||||
### Licenses
|
||||
|
||||
All mods have their own licenses. See the license files in the subfoldes.
|
||||
|
||||
|
||||
### Further Dependencies
|
||||
|
||||
Required: Minetest Game
|
||||
|
||||
|
||||
### History
|
||||
|
||||
#### 2020-06-04
|
||||
|
||||
- techage v0.10
|
||||
- minor changes and bugfixes
|
||||
- stone hammer added
|
||||
- quarry 'depth' command added
|
||||
- manuals adapted
|
||||
- QSG added
|
||||
|
||||
#### 2020-05-31
|
||||
|
||||
- first commit
|
||||
|
||||
|
45
check.sh
45
check.sh
@ -1,45 +0,0 @@
|
||||
cd ~/minetest5/mods/autobahn/
|
||||
echo autobahn
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/compost/
|
||||
echo compost
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/hyperloop/
|
||||
echo hyperloop
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/tubelib2/
|
||||
echo tubelib2
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/signs_bot/
|
||||
echo signs_bot
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/minecart/
|
||||
echo minecart
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/safer_lua/
|
||||
echo safer_lua
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/techpack_stairway/
|
||||
echo techpack_stairway
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/lcdlib/
|
||||
echo lcdlib
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/techage/
|
||||
echo techage
|
||||
git status
|
||||
|
||||
cd ~/minetest5/mods/towercrane/
|
||||
echo towercrane
|
||||
git status
|
||||
|
||||
|
27
update.sh
27
update.sh
@ -1,27 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
declare -A mods
|
||||
|
||||
mods[autobahn]=https://github.com/joe7575/autobahn.git
|
||||
mods[basic_materials]=https://gitlab.com/VanessaE/basic_materials.git
|
||||
mods[compost]=https://github.com/joe7575/compost.git
|
||||
mods[hyperloop]=https://github.com/joe7575/Minetest-Hyperloop.git
|
||||
mods[tubelib2]=https://github.com/joe7575/tubelib2.git
|
||||
mods[signs_bot]=https://github.com/joe7575/signs_bot.git
|
||||
mods[minecart]=https://github.com/joe7575/minecart.git
|
||||
mods[safer_lua]=https://github.com/joe7575/safer_lua.git
|
||||
mods[techpack_stairway]=https://github.com/joe7575/techpack_stairway.git
|
||||
mods[lcdlib]=https://github.com/joe7575/lcdlib.git
|
||||
mods[techage]=https://github.com/joe7575/techage.git
|
||||
mods[towercrane]=https://github.com/minetest-mods/towercrane.git
|
||||
mods[unified_inventory]=https://github.com/minetest-mods/unified_inventory.git
|
||||
mods[datastorage]=https://github.com/minetest-technic/datastorage.git
|
||||
|
||||
for mod in "${!mods[@]}"; do
|
||||
rm -rf ./$mod
|
||||
git clone --single-branch --depth=1 "${mods[$mod]}" $mod
|
||||
rm -rf ./$mod/.git
|
||||
done
|
||||
|
||||
git add *
|
||||
git commit -a -m "built on $(date '+%d/%m/%Y %H:%M:%S')"
|
Loading…
Reference in New Issue
Block a user