forked from Morlok8k/JNBT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.TXT
56 lines (35 loc) · 1.37 KB
/
README.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
JNBT 1.4 Beta
Cleaned-up repo by Pylo.
The original JNBT project seems to have been abandoned.
This fork of JNBT has mainly added support for Tag_Int_Array
Thanks to:
Ancient (a.k.a. grahamedgecombe) - JNBT 1.0 and 1.1
osici - for the TAG_Lists bug
Jocopa3 - Initial Int-Array support
Morlok8k - Maintaining the project
--------------
For more information about the license, see LICENSE.TXT.
For more information about the project, see http://jnbt.sf.net/.
--------------
JNBT: The Java NBT Library
What is NBT?
NBT, or Named Binary Tag, is a file format created by Markus Persson for use with Minecraft levels. Although originally designed for Minecraft levels, it is appropriate for the vast majority of use cases.
What is JNBT?
JNBT is a library that can read and write NBT files, written in Java by Graham Edgecombe and available open-source under the BSD license.
--------------
Version History:
1.4
- (pruby) InputStream gzip/not-gziped support
- (ensirius) Raw DataInputStream support
1.3 (Morlok8k)
- Changed encoding of .java files to UTF-8
- added "[JNBT]" to error output
- added .equals and .hashcode to tags
- cleaned source and formatting, etc...
1.2 (Morlok8k)
- Tag_Int_Array Support
1.1 (grahamedgecombe)
- fix for writing TAG_Lists
- toString() methods on each tag type
1.0 (grahamedgecombe)
- Initial Release