split signs_lib from homedecor, put them into their own separate mods

package the two together as a modpack so that regular homedecor users don't
see a functional change, but others can take signs_lib and use it as a
standalone mod.

also get rid of some *~ files
This commit is contained in:
Vanessa Ezekowitz
2014-01-25 12:57:05 -05:00
parent 6295e2699d
commit e057d357c8
897 changed files with 231 additions and 155 deletions

View File

@ -1,13 +0,0 @@
#!/bin/bash
echo "Node listing as of "`date` > nodes.txt
for i in *.lua; do
echo -e "\nIn $i:\n" >> nodes.txt
cat $i | grep "minetest.register_node(" | \
sed "s/minetest.register_node(.homedecor:/homedecor:/; s/., {//" | \
sort >> nodes.txt
done
less nodes.txt
rm -f nodes.txt