{"id":15141029,"url":"https://github.com/random-geek/mapeditr","last_synced_at":"2025-10-23T18:30:33.648Z","repository":{"id":40678840,"uuid":"369099481","full_name":"random-geek/MapEditr","owner":"random-geek","description":"A fast, command-line world editor for Minetest.","archived":false,"fork":false,"pushed_at":"2022-11-02T20:33:24.000Z","size":143,"stargazers_count":12,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-30T20:06:15.504Z","etag":null,"topics":["command-line","editor","minetest","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/random-geek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-20T06:12:39.000Z","updated_at":"2024-06-10T22:22:07.000Z","dependencies_parsed_at":"2022-09-14T13:40:54.162Z","dependency_job_id":null,"html_url":"https://github.com/random-geek/MapEditr","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/random-geek%2FMapEditr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/random-geek%2FMapEditr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/random-geek%2FMapEditr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/random-geek%2FMapEditr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/random-geek","download_url":"https://codeload.github.com/random-geek/MapEditr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237869178,"owners_count":19379282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","editor","minetest","rust"],"created_at":"2024-09-26T08:43:35.899Z","updated_at":"2025-10-23T18:30:28.329Z","avatar_url":"https://github.com/random-geek.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MapEditr\n\n[![](https://img.shields.io/badge/Minetest%20Forums-MapEditr-4E9A06)](https://forum.minetest.net/viewtopic.php?f=14\u0026t=26803)\n![](https://img.shields.io/github/v/release/random-geek/MapEditr)\n\nMapEditr is a command-line tool for fast manipulation of Minetest worlds. It\ncan replace nodes and items, fill areas, combine parts of different worlds, and\nmuch more.\n\nThis tool is functionally similar to [WorldEdit][1], but designed for large\noperations that would be impractical to do within Minetest. Since it is mainly\noptimized for speed, MapEditr lacks some of the more specialty features of\nWorldEdit.\n\nMapEditr was originally based on [MapEdit][2], except written in Rust rather\nthan Python (hence the added \"r\"). Switching to a compiled language will make\nMapEditr more robust and easier to maintain in the future.\n\n## Compilation/Installation\n\n### Option 1: Pre-built releases\n\nIf you are using Windows and don't have Rust installed, you can download a\nbuild of the latest release of MapEditr from the [Releases page][3]. Only\n64-bit Windows builds are currently available.\n\nTo run the `mapeditr` command from anywhere, the path to the executable file\nmust be included in your system's Path variable. [Here is one article][4]\nexplaining how to edit the Path variable on Windows.\n\n### Option 2: Install using Cargo\n\nThis method works on any operating system. To use Cargo, you must have Rust\ninstalled first, which can be downloaded from [the Rust website][5]. Then,\nsimply run:\n\n`cargo install --git https://github.com/random-geek/MapEditr.git`\n\nThis will download MapEditr and install it to `$HOME/.cargo/bin`. After\ninstalling, you should be able to run MapEditr from anywhere with the\n`mapeditr` command.\n\n### Option 3: Build normally\n\nIf you don't wish to install MapEditr, you can build it normally using Cargo.\nIn the MapEditr directory, run:\n\n`cargo build --release`\n\nThe `--release` flag is important, as it produces an optimized executable which\nruns much faster than the default, unoptimized version. The compiled executable\nwill be in the `target/release` directory.\n\n## Usage\n\nFor an overview of how MapEditr works and a listing of commands and their\nusages, see [Manual.md](Manual.md).\n\nThese are just a few of the useful things you can do with MapEditr:\n\n- Remove unknown nodes left by old mods with `replacenodes`.\n- Build extremely long walls and roads in seconds using `fill`.\n- Selectively delete entities and/or dropped items using `deleteobjects`.\n- Combine multiple worlds or map saves with `overlay`.\n\n## License\n\nMapEditr is under the terms of the MIT license as defined in `LICENSE.txt`.\n\nAdditionally, if you use code from MapEditr in another project, I would\ngreatly appreciate a reasonable acknowledgement/attribution of MapEditr in your\nproject's readme or documentation.\n\n## Acknowledgments\n\nThe [Minetest][6] project has been rather important for the making of\nMapEdit/MapEditr, for obvious reasons.\n\nSome parts of the original MapEdit code were adapted from AndrejIT's\n[map_unexplore][7] project. All due credit goes to the author(s) of that\nproject.\n\nThank you also to ExeterDad and the moderators of the late Hometown server, for\npartially inspiring MapEdit/MapEditr.\n\n[1]: https://github.com/Uberi/Minetest-WorldEdit\n[2]: https://github.com/random-geek/MapEdit\n[3]: https://github.com/random-geek/MapEditr/releases\n[4]: https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/\n[5]: https://www.rust-lang.org\n[6]: https://github.com/minetest/minetest\n[7]: https://github.com/AndrejIT/map_unexplore\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frandom-geek%2Fmapeditr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frandom-geek%2Fmapeditr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frandom-geek%2Fmapeditr/lists"}