From dba0bbcbae696e3ac7986cf214c98358ac84f6da Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 27 Jan 2019 20:30:31 +0100 Subject: [PATCH] switch to MIT licence --- LICENCE | 13 ------------- LICENSE | 21 +++++++++++++++++++++ README.md | 2 +- sonic-radiance.love/main.lua | 34 +++++++++++++++++++++------------- 4 files changed, 43 insertions(+), 27 deletions(-) delete mode 100644 LICENCE create mode 100644 LICENSE diff --git a/LICENCE b/LICENCE deleted file mode 100644 index 24a7c9e..0000000 --- a/LICENCE +++ /dev/null @@ -1,13 +0,0 @@ -DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - -Copyright (C) 2004 Sam Hocevar - -Everyone is permitted to copy and distribute verbatim or modified -copies of this license document, and changing it is allowed as long -as the name is changed. - -DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b19b051 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Kazhnuz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 44a69b8..17ad9d7 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ Seront-ils seuls dans cet aventure ? Quel est le plan d’Eggman ? Quels secre ## Licence -Le code du jeu est sous licence WTF, vous pouvez en faire ce que vous voulez. Les assets originaux sont © SEGA, et les assets et histoire sont propriété de leurs créateurs respectifs +Le code du jeu est sous licence MIT. Les assets originaux sont © SEGA, et les assets et histoire sont propriété de leurs créateurs respectifs. diff --git a/sonic-radiance.love/main.lua b/sonic-radiance.love/main.lua index f55d6f8..d83cc80 100644 --- a/sonic-radiance.love/main.lua +++ b/sonic-radiance.love/main.lua @@ -1,17 +1,25 @@ -- main.lua :: the core file of the game, will load main libs and core system --- --- Copyright (C) 2019 Kazhnuz --- --- This file is published under the WTF Public Licence 2.0. Basically, everybody --- can use, publish, modify this code and do what they want with them. (Don't --- destroy the world using my code plz) --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- --- You should have received a copy of the WTF Public License --- along with this program. If not, see + +--[[ + Copyright © 2019 Kazhnuz + + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +]] utils = require "libs.loveutils"