Updated license for lua-toml and dependency list

This commit is contained in:
Timo Smit 2017-03-15 14:14:56 +01:00
parent 39caf003a7
commit 730bbbeb17
2 changed files with 37 additions and 0 deletions

View file

@ -8,6 +8,11 @@ WolfAdmin is a Lua module for Wolfenstein: Enemy Territory servers.
* Issues [http://dev.timosmit.com/bugtracker/?project_id=1](http://dev.timosmit.com/bugtracker/?project_id=1)
* Repository [https://github.com/timosmit/wolfadmin](https://github.com/timosmit/wolfadmin)
DEPENDENCIES
============
* **luasql.sqlite3** and/or **luasql.mysql**
* **lua-toml**
LICENSE
============
[http://www.gnu.org/licenses/gpl-3.0.html](GNU General Public License 3)

View file

@ -1,3 +1,35 @@
-- TOML in Lua by Jonathan Stoler
-- https://github.com/jonstoler/lua-toml
-- SUMMARY (IN PLAIN-ENGLISH)
-- Congratulations, you've got something with the best licence ever.
-- Basically, you're free to do what you want with it; as long as you do something
-- good (help someone out, smile; just be nice), you can use this on anything you
-- fancy.
-- Of course, if it all breaks, its totally not the author's fault.
-- Enjoy!
-- THE FULL LICENSE AGREEMENT
-- By attaching this document to the given files (the "work"), you, the licensee,
-- are hereby granted free usage in both personal and commercial environments,
-- without any obligation of attribution or payment (monetary or otherwise). The
-- licensee is free to use, copy, modify, publish, distribute, sublicence, and/or
-- merchandise the work, subject to the licensee inflecting a positive message
-- unto someone. This includes (but is not limited to): smiling, being nice,
-- saying "thank you", assisting other persons, or any similar actions percolating
-- the given concept.
-- The above copyright notice serves as a permissions notice also, and may
-- optionally be included in copies or portions of the work.
-- The work is provided "as is", without warranty or support, express or implied.
-- The author(s) are not liable for any damages, misuse, or other claim, whether
-- from or as a consequence of usage of the given work.
local TOML = {
-- denotes the current supported TOML version
version = 0.31,