Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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