Add support for videos to Buildcraft
This commit is contained in:
@@ -6,3 +6,11 @@ description: Extending Minecraft with pipes, auto-crafting, quarries, engines an
|
|||||||
homePageUrl: http://www.mod-buildcraft.com/
|
homePageUrl: http://www.mod-buildcraft.com/
|
||||||
|
|
||||||
version: 7.1.18
|
version: 7.1.18
|
||||||
|
|
||||||
|
video: vCtoPsfct0g, Transport Pipes
|
||||||
|
video: VKy-WoYRym4, Fluid Pipes
|
||||||
|
video: 4Z-4-49fsGk, Power
|
||||||
|
video: 1P4l8xHvLcI, Gates
|
||||||
|
video: GBlbL5i5Xt0, Mining Machines
|
||||||
|
video: kPcxPLsjlR4, Crafting Machines
|
||||||
|
video: Tbr69hhqtA8, Robots
|
||||||
|
|||||||
+1
-1
@@ -29,7 +29,7 @@
|
|||||||
"backbone": "1.3.3",
|
"backbone": "1.3.3",
|
||||||
"chai": "3.5.0",
|
"chai": "3.5.0",
|
||||||
"coffee-script": "1.12.5",
|
"coffee-script": "1.12.5",
|
||||||
"crafting-guide-common": ">=3.1.0",
|
"crafting-guide-common": ">=3.0.0 <4.0.0",
|
||||||
"fs-extra": "2.1.2",
|
"fs-extra": "2.1.2",
|
||||||
"grunt": "1.0.1",
|
"grunt": "1.0.1",
|
||||||
"grunt-contrib-clean": "1.1.0",
|
"grunt-contrib-clean": "1.1.0",
|
||||||
|
|||||||
@@ -6,11 +6,13 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
CraftingGuideCommon = require "crafting-guide-common"
|
CraftingGuideCommon = require "crafting-guide-common"
|
||||||
|
fs = require 'fs'
|
||||||
|
|
||||||
|
_ = CraftingGuideCommon._
|
||||||
Mod = CraftingGuideCommon.deprecated.game.Mod
|
Mod = CraftingGuideCommon.deprecated.game.Mod
|
||||||
ModParser = CraftingGuideCommon.deprecated.parsing.ModParser
|
ModParser = CraftingGuideCommon.deprecated.parsing.ModParser
|
||||||
ModVersion = CraftingGuideCommon.deprecated.game.ModVersion
|
ModVersion = CraftingGuideCommon.deprecated.game.ModVersion
|
||||||
ModVersionParser = CraftingGuideCommon.deprecated.parsing.ModVersionParser
|
ModVersionParser = CraftingGuideCommon.deprecated.parsing.ModVersionParser
|
||||||
fs = require 'fs'
|
|
||||||
|
|
||||||
########################################################################################################################
|
########################################################################################################################
|
||||||
|
|
||||||
@@ -32,7 +34,7 @@ describe 'data files for', ->
|
|||||||
return
|
return
|
||||||
|
|
||||||
it 'loads mod.cg without errors', ->
|
it 'loads mod.cg without errors', ->
|
||||||
modParser.errors.should.eql []
|
(e.stack for e in modParser.errors).should.eql []
|
||||||
mod.name.should.not.equal ''
|
mod.name.should.not.equal ''
|
||||||
mod.activeModVersion.should.exist
|
mod.activeModVersion.should.exist
|
||||||
|
|
||||||
|
|||||||
@@ -21,4 +21,4 @@ global.w = require 'when'
|
|||||||
global.window = {}
|
global.window = {}
|
||||||
|
|
||||||
Logger = require('crafting-guide-common').util.Logger
|
Logger = require('crafting-guide-common').util.Logger
|
||||||
global.logger = new Logger level:Logger.FATAL
|
global.logger = new Logger level:Logger.ERROR
|
||||||
|
|||||||
Reference in New Issue
Block a user