]> git.lizzy.rs Git - worldedit.git/commit
Cleanup and fixup
authorShadowNinja <shadowninja@minetest.net>
Thu, 30 Oct 2014 02:47:08 +0000 (22:47 -0400)
committerShadowNinja <shadowninja@minetest.net>
Sun, 1 Feb 2015 20:56:16 +0000 (15:56 -0500)
commitbb8456b71119ca6303b9e9706829a84dc7f81ab3
tree919026712fb25b847ef8d09626400bbf0fd556eb
parent1f277147ca03788b784ee13fb1dd4e07889b4b59
Cleanup and fixup

Non-stylistic changes:
  * Add LuaDoc/LDoc support.
  * Fix `clear_objects` area size calculation.
  * Fix `clear_objects` removing player objects.
  * Fix shadowing of marker entity name with player name.
  * Make visualization functions use `swap_node`.
  * Make hidden nodes unwalkable.
  * Prevent `hide` from hiding air.
  * Make deprecated functions log to deprecated stream when called.
  * Fixed `replaceinverse` not using normalized node names.
  * Added .gitignore.
  * Bump version to 1.1.

Stylistic changes:
  * Change `x = function` to `function x`.
  * Change comment format.
  * Make  missing VoxelManip error less obnoxious.
  * Move `sort_pos` into `common.lua`, which is a required module.
  * Remove local copies of `minetest`.
  * Remove `worldedit = worldedit or {}` from modules.
  * Replace replaceinverse with an inverse argument to `replace`.
  * Added `error()`s on on invalid axes.
  * Change `wip` to `TODO`.
  * Rename `clearobjects` to `clear_objects`.
  * Remove `hollow_{sphere,dome,cylinder}` and replace them with a hollow parameter to each function.
  * Add helpers to reduce code duplication.
  * Renamed `Chat Commands.md` to `ChatCommands.md`.
17 files changed:
.gitignore [new file with mode: 0644]
Chat Commands.md [deleted file]
ChatCommands.md [new file with mode: 0644]
README.md
Tutorial.md
WorldEdit API.md
config.ld [new file with mode: 0644]
worldedit/code.lua
worldedit/common.lua [new file with mode: 0644]
worldedit/compatibility.lua
worldedit/init.lua
worldedit/manipulations.lua
worldedit/primitives.lua
worldedit/serialization.lua
worldedit/visualization.lua
worldedit_commands/init.lua
worldedit_commands/mark.lua