Page 1 of 1

Some changes for core/info.json and base/info.json

Posted: Fri Jan 16, 2015 12:25 pm
by ssilk
Current of core/info.json:

Code: Select all

{
  "name": "core",
  "title": "Core Factorio data",
  "author": "Factorio team",
  "contact": "dev@factorio.com",
  "homepage": "http://www.factorio.com",
  "dependencies": []
}
should:

Code: Select all

{
  "name": "core",
  "version": "0.11.11",
  "title": "Core Factorio data",
  "author": "Factorio team",
  "contact": "dev@factorio.com",
  "homepage": "http://www.factorio.com",
  "dependencies": []
  "description": "Core module; foo ...",
}
Current of base/info.json:

Code: Select all


{
  "name": "base",
  "version": "0.11.11",
  "title": "Base Mod",
  "author": "Factorio team",
  "contact": "dev@factorio.com",
  "homepage": "http://www.factorio.com",
  "description": "Basic mod with all the default game data and standard campaign.",
  "dependencies": []
}
should:

Code: Select all

{
  "name": "base",
  "version": "0.11.11",
  "title": "Base Mod",
  "author": "Factorio team",
  "contact": "dev@factorio.com",
  "homepage": "http://www.factorio.com",
  "description": "Basic mod with all the default game data and standard campaign.",
  "dependencies": [core]
}
Cause I've need to fix that in https://github.com/alexaulbach/Factorio ... r.lua#L137

Re: Some changes for core/info.json and base/info.json

Posted: Fri Jan 16, 2015 12:47 pm
by kovarex
The core/base package is always distributed together, so only the version of the base package matters, and the dependency is not specified, as the core is always present, it can't be disabled.