mirror of
https://github.com/etlegacy/wolfadmin.git
synced 2024-11-10 06:41:53 +00:00
Updated license for lua-toml and dependency list
This commit is contained in:
parent
39caf003a7
commit
730bbbeb17
2 changed files with 37 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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, it’s 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,
|
||||
|
|
Loading…
Reference in a new issue