Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itrooz/nbteditor
NBTEditor - Fork of https://github.com/Howaner/NBTEditor
https://github.com/itrooz/nbteditor
cmake emscripten minecraft nbt qt qt6 wasm
Last synced: about 20 hours ago
JSON representation
NBTEditor - Fork of https://github.com/Howaner/NBTEditor
- Host: GitHub
- URL: https://github.com/itrooz/nbteditor
- Owner: iTrooz
- License: bsd-3-clause
- Created: 2023-12-27T11:45:46.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-06-13T14:03:24.000Z (5 months ago)
- Last Synced: 2024-10-31T05:51:07.503Z (8 days ago)
- Topics: cmake, emscripten, minecraft, nbt, qt, qt6, wasm
- Language: C++
- Homepage: https://itrooz.github.io/NBTEditor/
- Size: 208 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fork notice
This is a fork of https://github.com/Howaner/NBTEditor, with:
- some fixes/improvements
- Web version
- CI that uploads binaries on every commit# NBTEditor
A nbt editor software to edit minecraft binary files. Currently it can be used to edit .dat and .schematic files.
![NBTEditor](Image.png)## Download
See [Releases page](https://github.com/iTrooz/NBTEditor/releases) or CI artifacts## Used frameworks
The software is written in C++ with the Qt6 framework and Zlib.## How to compile it on linux
```
apt-get install build-essential Qt6-default qttools5-dev-tools cmake zlib1g-dev
mkdir build && cd build
cmake ..
make
./nbteditor
```## How to compile it on windows
1. Install Qt6 developer framework with mingw-32 compiler
2. Install cmake
3. Compile static zlib library
4. Follow linux introductions