lib_mount_change
This commit is contained in:
parent
f54c45abcd
commit
668f31f020
5 changed files with 19 additions and 6 deletions
|
@ -11,7 +11,7 @@ git clone --depth 1 --branch master https://github.com/minetest-mods/moreores.gi
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/mywalls.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/mywalls.git
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/xdecor.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/xdecor.git
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/vehicle_mash.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/vehicle_mash.git
|
||||||
git clone --depth 1 --branch master https://github.com/Panquesito7/lib_mount.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/lib_mount
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/workbench.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/workbench.git
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/ts_furniture.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/ts_furniture.git
|
||||||
git clone --depth 1 --branch master https://github.com/minetest-mods/playeranim.git
|
git clone --depth 1 --branch master https://github.com/minetest-mods/playeranim.git
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
Copyright (C) 2016 blert2112 and contributors\
|
||||||
|
Copyright (C) 2019-2021 Panquesito7 (halfpacho@gmail.com) and contributors
|
||||||
|
|
||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
Version 2.1, February 1999
|
Version 2.1, February 1999
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Library Mount [![Build status](https://github.com/Panquesito7/lib_mount/workflows/build/badge.svg)](https://github.com/Panquesito7/lib_mount/actions) [![License](https://img.shields.io/badge/license-LGPLv2.1%2B-blue.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) [![ContentDB](https://content.minetest.net/packages/Panquesito7/lib_mount/shields/downloads/)](https://content.minetest.net/packages/Panquesito7/lib_mount/)
|
# Library Mount [![Build status](https://github.com/Panquesito7/lib_mount/workflows/build/badge.svg)](https://github.com/Panquesito7/lib_mount/actions) [![License](https://img.shields.io/badge/license-LGPLv2.1%2B-blue.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) [![ContentDB](https://content.minetest.net/packages/Panquesito7/lib_mount/shields/downloads/)](https://content.minetest.net/packages/Panquesito7/lib_mount/)
|
||||||
|
|
||||||
Made by [blert2112](https://github.com/blert2112).\
|
Made by [blert2112](https://github.com/blert2112).\
|
||||||
Improved by [Panquesito7](https://github.com/Panquesito7).
|
Handed over to [Panquesito7](https://github.com/Panquesito7).
|
||||||
|
|
||||||
Current version: 1.2
|
Current version: 1.2
|
||||||
|
|
||||||
|
@ -21,6 +21,9 @@ Current version: 1.2
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
Copyright (C) 2016 blert2112 and contributors\
|
||||||
|
Copyright (C) 2019-2021 Panquesito7 (halfpacho@gmail.com) and contributors
|
||||||
|
|
||||||
Based on the Boats mod by [PilzAdam](https://github.com/PilzAdam).\
|
Based on the Boats mod by [PilzAdam](https://github.com/PilzAdam).\
|
||||||
See [`LICENSE.md`](LICENSE.md) for information.
|
See [`LICENSE.md`](LICENSE.md) for information.
|
||||||
|
|
||||||
|
@ -37,5 +40,5 @@ For further information or help, see:\
|
||||||
|
|
||||||
## Bugs, suggestions, features & bugfixes
|
## Bugs, suggestions, features & bugfixes
|
||||||
|
|
||||||
Report bugs or suggest ideas by [creating an issue](https://github.com/Panquesito7/lib_mount/issues/new).\
|
Report bugs or suggest ideas by [creating an issue](https://github.com/minetest-mods/lib_mount/issues/new).\
|
||||||
If you know how to fix an issue, consider opening a [pull request](https://github.com/Panquesito7/lib_mount/compare).
|
If you know how to fix an issue, consider opening a [pull request](https://github.com/minetest-mods/lib_mount/compare).
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
--[[
|
--[[
|
||||||
An API framework for mounting objects.
|
An API framework for mounting objects.
|
||||||
Copyright (C) 2016-2020 blert2112 and David Leal (halfpacho@gmail.com)
|
|
||||||
|
Copyright (C) 2016 blert2112 and contributors
|
||||||
|
Copyright (C) 2019-2021 David Leal (halfpacho@gmail.com) and contributors
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
name = lib_mount
|
name = lib_mount
|
||||||
depends = default, player_api
|
depends = default, player_api
|
||||||
optional_depends = mobs
|
optional_depends = mobs
|
||||||
|
description = API framework for mounting objects.
|
||||||
|
license = LGPLv2.1
|
||||||
|
author = Panquesito7
|
||||||
|
min_minetest_version = 5.0.0
|
||||||
|
version = 1.2
|
||||||
|
|
Loading…
Reference in a new issue