summaryrefslogtreecommitdiff
path: root/documentation.json
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2015-11-20 20:14:50 +0100
committerJeija <norrepli@gmail.com>2015-11-20 20:14:50 +0100
commit0ec771bf7d8d95f24b46d2f608cccc109ec2de4f (patch)
tree646ef2a1e6d7750fa6e12d648986ef2ff7e78fee /documentation.json
parent75bd081a67a2ac52b8a0eea1e051a456d288c71d (diff)
downloadmesecons-0ec771bf7d8d95f24b46d2f608cccc109ec2de4f.tar
mesecons-0ec771bf7d8d95f24b46d2f608cccc109ec2de4f.tar.gz
mesecons-0ec771bf7d8d95f24b46d2f608cccc109ec2de4f.tar.bz2
mesecons-0ec771bf7d8d95f24b46d2f608cccc109ec2de4f.tar.xz
mesecons-0ec771bf7d8d95f24b46d2f608cccc109ec2de4f.zip
Major change: Documentation is now included with mesecons, the website just extracts the documentation in a more readable format
This makes development of new features easier, as documentation can automatically be updated on the website without modifying the website's code! Every mod that has nodes in the mesecons modpack has a "doc" folder that contains subfolders with recipe, description and preview of the block. The website will discover which documentation is available by reading the documentation.json file.
Diffstat (limited to 'documentation.json')
-rw-r--r--documentation.json62
1 files changed, 62 insertions, 0 deletions
diff --git a/documentation.json b/documentation.json
new file mode 100644
index 0000000..8cc0254
--- /dev/null
+++ b/documentation.json
@@ -0,0 +1,62 @@
+{
+ "Conductors" : {
+ "Mesecon" : "mesecons/doc/mesecon",
+ "Insulated Wire" : "mesecons_insulated/doc/insulated",
+ "T-Junction" : "mesecons_extrawires/doc/tjunction",
+ "Crossing" : "mesecons_extrawires/doc/crossing",
+ "Corner" : "mesecons_extrawires/doc/corner",
+ "Vertical Wire" : "mesecons_extrawires/doc/vertical",
+ "Mese" : "mesecons_extrawires/doc/mese"
+ },
+ "Receptors" : {
+ "Power Plant" : "mesecons_powerplant/doc/powerplant",
+ "Blinky Plant" : "mesecons_blinkyplant/doc/blinkyplant",
+ "Switch" : "mesecons_switch/doc/switch",
+ "Object Detector" : "mesecons_detector/doc/objectdetector",
+ "Node Detector" : "mesecons_detector/doc/nodedetector",
+ "Wall Lever" : "mesecons_walllever/doc/walllever",
+ "Pressure Plate" : "mesecons_pressureplates/doc/pressureplate_wood",
+ "Pressure Plate" : "mesecons_pressureplates/doc/pressureplate_stone",
+ "Water Turbine" : "mesecons_hydroturbine/doc/waterturbine",
+ "Solar Panel" : "mesecons_solarpanel/doc/solarpanel",
+ "Wall Button" : "mesecons_button/doc/button"
+ },
+ "Effectors" : {
+ "Noteblock" : "mesecons_noteblock/doc/noteblock",
+ "Lamp" : "mesecons_lamp/doc/lamp",
+ "Piston" : "mesecons_pistons/doc/piston",
+ "Sticky Piston" : "mesecons_pistons/doc/piston_sticky",
+ "Movestone" : "mesecons_movestones/doc/movestone",
+ "Sticky Movestone" : "mesecons_movestones/doc/movestone_sticky",
+ "Removestone" : "mesecons_random/doc/removestone",
+ "Ghoststone" : "mesecons_random/doc/ghoststone",
+ "Command Block" : "mesecons_commandblock/doc/commandblock",
+ "Lightstones" : {
+ "Dark Grey" : "mesecons_lightstone/doc/lightstone_darkgrey",
+ "Light Grey" : "mesecons_lightstone/doc/lightstone_lightgrey",
+ "Green" : "mesecons_lightstone/doc/lightstone_green",
+ "Red" : "mesecons_lightstone/doc/lightstone_red",
+ "Blue" : "mesecons_lightstone/doc/lightstone_blue",
+ "Yellow" : "mesecons_lightstone/doc/lightstone_yellow"
+ }
+ },
+ "Logic" : {
+ "Luacontroller" : "mesecons_luacontroller/doc/luacontroller",
+ "Torch" : "mesecons_torch/doc/torch",
+ "Delayer" : "mesecons_delayer/doc/delayer",
+ "Gates" : {
+ "Diode" : "mesecons_gates/doc/diode",
+ "NOT Gate" : "mesecons_gates/doc/not",
+ "AND Gate" : "mesecons_gates/doc/and",
+ "NAND Gate" : "mesecons_gates/doc/nand",
+ "OR Gate" : "mesecons_gates/doc/or",
+ "NOR Gate" : "mesecons_gates/doc/nor",
+ "XOR Gate" : "mesecons_gates/doc/xor"
+ }
+ },
+ "Crafts" : {
+ "Silicon" : "mesecons_materials/doc/silicon",
+ "Glue" : "mesecons_materials/doc/glue",
+ "Fiber" : "mesecons_materials/doc/fiber"
+ }
+}