Minetest-WorldEditAdditions/CHANGELOG.md

115 lines
6.5 KiB
Markdown
Raw Normal View History

# WorldEditAdditions Changelog
2020-10-10 21:33:41 +00:00
It's about time I started a changelog! This will serve from now on as the main changelog for WorldEditAdditions.
2021-03-02 00:24:27 +00:00
Note to self: See the bottom of this file for the release template text.
2021-06-27 22:33:24 +00:00
## v1.13: Untitled update (unreleased)
- Add `//sfactor` (_selection factor_) - Selection Tools by @VorTechnix are finished for now.
2021-07-14 02:44:18 +00:00
- Add `mface` (_measure facing_), `midpos` (_measure middle position_), `msize` (_measure size_), `mtrig` (_measure trigonometry_) - Measuring Tools implemented by @VorTechnix.
2021-07-17 20:36:55 +00:00
- Add `//airapply` for applying commands only to air nodes in the defined region
2021-07-31 15:06:37 +00:00
- Use [luacheck](https://github.com/mpeterv/luacheck) to find and fix a large number of bugs and other issues
- Multiple commands: Allow using quotes (`"thing"`, `'thing'`) to quote values when splitting
- `//layers`: Add optional slope constraint (inspired by [WorldPainter](https://worldpainter.net/))
- `//bonemeal`: Add optional node list contraint
2021-06-27 22:33:24 +00:00
2021-07-17 23:00:22 +00:00
2021-06-26 11:26:15 +00:00
## v1.12: The selection tools update (26th June 2021)
2021-03-01 22:23:36 +00:00
- Add `//spush`, `//spop`, and `//sstack`
2021-05-11 21:32:09 +00:00
- Add `//srect` (_select rectangle_), `//scol` (_select column_), `//scube` (_select cube_) - thanks, @VorTechnix!
- Add `//scloud` (_select point cloud_), `//scentre` (_select centre node(s)_), `//srel` (_select relative_) - thanks, @VorTechnix!
2021-06-25 20:29:27 +00:00
- Add `//smake` (_selection make_) - thanks, @VorTechnix!
2021-05-11 21:32:09 +00:00
- Significantly refactored backend utility functions (more to come in future updates)
- Add new universal chance parsing
- Any `<chance>` can now either be a 1-in-N number (e.g. `4`, `10`), or a percentage chance (e.g. `50%`, `10%`).
- Caveat: Percentages are converted to a 1-in-N chance, but additionally that number is rounded down in some places
2021-05-18 13:46:27 +00:00
- `//torus`, `//hollowtorus`: Add optional new axes
2021-06-26 01:18:48 +00:00
- `//torus`, `//ellipsoid`: Add optional hollow keyword - @VorTechnix
2021-05-29 01:31:29 +00:00
- `//multi`: Add curly brace syntax for nesting command calls ([more information](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#multi-command_a-command_b-command_c-))
- `//erode`: Add new `river` erosion algorithm for filling in potholes and removing pillars
### Bugfixes
2021-06-26 11:13:33 +00:00
- `//bonemeal`: Try bonemealing everything that isn't an air block (#49)
- `//overlay`: Don't place nodes above water
- `//multi`: Improve resilience by handling some edge cases
- `//layers`: Fix crash due to outdated debug code
- `//erode`/snowballs: Fix assignment to undeclared variable
2021-05-30 23:38:01 +00:00
- `//floodfill`: Fix error handling
2021-03-01 22:23:36 +00:00
2021-03-01 21:17:18 +00:00
2021-02-26 02:35:52 +00:00
## v1.11: The big data update (25th January 2021)
2021-02-18 02:21:19 +00:00
- Add `//scale` (currently **experimental**)
- Scale operations that scale up and down at the same time are split into 2 separate operations automatically (scaling up is always performed first)
2021-01-31 17:45:08 +00:00
- `//count`: Make numbers human-readable
- Tip: Use a monospace font for the chat window, and the columns will be aligned!
2021-01-31 20:08:09 +00:00
- Add `//hollow` for hollowing out areas (a step towards parity with Minecraft WorldEdit)
- `//subdivide`: Improve performance of initial chunk counting algorithm - it should get started on the job _much_ quicker now (especially on large regions)
2021-02-06 00:48:10 +00:00
- `//subdivide`: Fix a bug where the entire defined region was emerged all at once instead of in chunks
2021-02-07 02:02:02 +00:00
- `//subdivide`: Fix performance & memory usage issues
- Fix passing arguments to the command being executed
2021-02-07 02:02:02 +00:00
- If you encounter any other issues with it over large areas (particularly 2000x150x2000 and larger), please let me know
- Bugfix: Fix obscure crash in calls to `human_size` ("unknown" will now be returned if passed junk)
- `//many` can now be used with commands with no arguments.
2021-02-23 00:20:57 +00:00
- `//conv`, `//erode`, `//fillcaves`: Treat liquids as air
2021-05-29 01:31:29 +00:00
- Add new [cloud wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#cloud-wand)
2021-03-01 21:17:18 +00:00
- `//conv`, `//erode`: Minor refactoring to improve code clarity
2021-02-23 00:20:57 +00:00
2021-01-31 17:45:08 +00:00
2021-02-26 02:35:52 +00:00
## v1.10: The tidyup update (16th January 2021)
2020-09-28 00:32:42 +00:00
- `//maze`: Fix some parts of generated mazes staying solid
- `//maze`, `//maze3d`: Allow non-number seeds (existing seeds aren't affected - they will still produce identical output)
- `//many`: Improve format of progress messages, add ETA
2020-10-10 21:25:56 +00:00
- `//subdivide`: Make asynchronous, and use `minetest.emerge_area()` to ensure areas are loaded before executing on a subdivision chunk
- This will ensure that `//subdivide`ing enormous regions should now function as expected. Want to level an entire rainforest with `//subdivide` and `//clearcut`? Now you can! :D
2021-01-16 18:36:17 +00:00
- Add `//line` for drawing simple lines
2020-09-28 00:32:42 +00:00
2020-09-20 22:50:29 +00:00
## v1.9: The Nature Update (20th September 2020)
2020-08-11 20:39:28 +00:00
- Add `//many` for executing a command many times in a row
- Add **experimental** `//erode` command
- Add `//fillcaves` command - fills in all air nodes beneath non air-nodes
2020-09-20 23:06:31 +00:00
- Add `//forest` command for quickly generating forests, and `//saplingaliases` to compliment it
2020-09-20 20:25:18 +00:00
- Add `//ellipsoidapply`: Like `//cubeapply`, but clips the result to an ellipsoid that is the size of the defined region.
2020-09-15 01:00:45 +00:00
- Fix some minor bugs and edge cases
- `//subdivide`: Print status update when completing the last chunk
2020-09-20 16:53:55 +00:00
- `//count`: Optimise by removing nested `for` loops
2020-08-11 20:39:28 +00:00
2020-07-17 16:28:00 +00:00
## v1.8: The Quality of Life Update (17th July 2020)
- Update `//multi` to display human readable times (e.g. `2.11mins` instead of `126600ms`)
- Far wand: Notify player when setting pos1 and pos2
- Make timings more accurate (use `minetest.get_us_time()` instead of `os.clock()`)
2020-07-17 16:06:53 +00:00
- Add _experimental_ `//subdivide` command
2020-07-17 16:15:11 +00:00
- Attempt to fix a crash on startup due to a dependency issue (#21)
2020-07-17 16:13:06 +00:00
2020-07-17 16:28:00 +00:00
## v1.7: The Terrain Update! (21st June 2020)
- Added `//layers` (like WorldEdit for Minecraft's `//naturalize`)
- Added `//convolve` (advanced terrain smoothing inspired by image editors)
- Added far wand (like the regular WorldEdit wand, but with a configurable range that can extend to 100s of blocks)
[/list]
2020-07-17 16:13:06 +00:00
## Release text template
The text below is used as a template when making releases.
--------
INTRO
See below for instructions on how to update.
CHANGELOG HERE
## Updating
Updating depends on how you installed WorldEditAdditions.
- UI in Minetest: There should be an update button for you to click in the mod menu
- ContentDB: Download the latest update from [here](https://content.minetest.net/packages/Starbeamrainbowlabs/worldeditadditions/)
- Git: `cd` to the WorldEditAdditions directory and run `git pull` (**Important:** Recently, WorldEditAdditions changed the default branch from `master` to `main`. If you're updating from before then, you'll need to re-clone the mod or else do some git-fu)
2020-07-17 16:13:06 +00:00
After installing the update, don't forget to restart your client and / or server.
--------