Skip to content

Commit 6340f39

Browse files
committed
Updated readme, changelog, doxyfile (to 1.8.8), and assembly versions.
1 parent 3533c21 commit 6340f39

File tree

5 files changed

+53
-24
lines changed

5 files changed

+53
-24
lines changed

README.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Named Binary Tag (NBT) is a structured binary file format used by Minecraft.
22
fNbt is a small library, written in C# for .NET 3.5+. It provides functionality
33
to create, load, traverse, modify, and save NBT files and streams.
44

5-
Current released version is 0.6.1 (19 July 2014).
5+
Current released version is 0.6.2 (17 November 2014).
66

77
fNbt is based in part on Erik Davidson's (aphistic's) original LibNbt library,
88
now completely rewritten by Matvei Stefarov (fragmer).
@@ -28,11 +28,11 @@ applications that use fNbt; they are only used for testing.
2828
==== DOWNLOAD =================================================================
2929
Latest version of fNbt requires .NET Framework 3.5+ (client or full profile).
3030

31-
Compiled binary: http://fcraft.net/fnbt/fNbt_v0.6.1.zip
31+
Compiled binary: http://fcraft.net/fnbt/fNbt_v0.6.2.zip
3232

3333
Amalgamation (single source file):
34-
Non-annotated: http://fcraft.net/fnbt/fNbt_v0.6.1.cs
35-
Annotated: http://fcraft.net/fnbt/fNbt_v0.6.1_Annotated.cs
34+
Non-annotated: http://fcraft.net/fnbt/fNbt_v0.6.2.cs
35+
Annotated: http://fcraft.net/fnbt/fNbt_v0.6.2_Annotated.cs
3636
(using JetBrains.Annotations, for ReSharper)
3737

3838

@@ -97,7 +97,7 @@ Latest version of fNbt requires .NET Framework 3.5+ (client or full profile).
9797

9898

9999
==== API REFERENCE ============================================================
100-
Online reference can be found at http://www.fcraft.net/fnbt/v0.6.1/
100+
Online reference can be found at http://www.fcraft.net/fnbt/v0.6.2/
101101

102102

103103
==== LICENSING ================================================================

docs/Changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.6.2 (fNbt)
2+
- NbtTags now implement ICloneable and provide copy constructors.
3+
- fNbt is now compatible with /checked compiler option.
4+
- Fixed an OverflowException in .NET 4.0+ when writing arrays of size 1 GiB
5+
(or larger) to a BufferedStream.
6+
- Fixed a few edge cases in NbtReader when reading corrupt files.
7+
- Minor optimizations and documentation fixes.
8+
19
0.6.1 (fNbt)
210
- NbtReader now supports non-seekable streams.
311
- Fixed issues loading from/saving to non-seekable steams in NbtFile.

docs/Doxyfile

Lines changed: 36 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Doxyfile 1.8.7
1+
# Doxyfile 1.8.8
22

33
# This file describes the settings to be used by the documentation system
44
# doxygen (www.doxygen.org) for a project.
@@ -38,7 +38,7 @@ PROJECT_NAME = fNbt
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.6.1
41+
PROJECT_NUMBER = 0.6.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -690,8 +690,7 @@ LAYOUT_FILE =
690690
# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.
691691
# For LaTeX the style of the bibliography can be controlled using
692692
# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
693-
# search path. Do not use file names with spaces, bibtex cannot handle them. See
694-
# also \cite for info how to create references.
693+
# search path. See also \cite for info how to create references.
695694

696695
CITE_BIB_FILES =
697696

@@ -1102,13 +1101,15 @@ HTML_FOOTER =
11021101

11031102
HTML_STYLESHEET =
11041103

1105-
# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user-
1106-
# defined cascading style sheet that is included after the standard style sheets
1104+
# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
1105+
# cascading style sheets that are included after the standard style sheets
11071106
# created by doxygen. Using this option one can overrule certain style aspects.
11081107
# This is preferred over using HTML_STYLESHEET since it does not replace the
11091108
# standard style sheet and is therefor more robust against future updates.
1110-
# Doxygen will copy the style sheet file to the output directory. For an example
1111-
# see the documentation.
1109+
# Doxygen will copy the style sheet files to the output directory.
1110+
# Note: The order of the extra stylesheet files is of importance (e.g. the last
1111+
# stylesheet in the list overrules the setting of the previous ones in the
1112+
# list). For an example see the documentation.
11121113
# This tag requires that the tag GENERATE_HTML is set to YES.
11131114

11141115
HTML_EXTRA_STYLESHEET =
@@ -1646,17 +1647,19 @@ EXTRA_PACKAGES =
16461647
#
16471648
# Note: Only use a user-defined header if you know what you are doing! The
16481649
# following commands have a special meaning inside the header: $title,
1649-
# $datetime, $date, $doxygenversion, $projectname, $projectnumber. Doxygen will
1650-
# replace them by respectively the title of the page, the current date and time,
1651-
# only the current date, the version number of doxygen, the project name (see
1652-
# PROJECT_NAME), or the project number (see PROJECT_NUMBER).
1650+
# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
1651+
# $projectbrief, $projectlogo. Doxygen will replace $title with the empy string,
1652+
# for the replacement values of the other commands the user is refered to
1653+
# HTML_HEADER.
16531654
# This tag requires that the tag GENERATE_LATEX is set to YES.
16541655

16551656
LATEX_HEADER =
16561657

16571658
# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
16581659
# generated LaTeX document. The footer should contain everything after the last
1659-
# chapter. If it is left blank doxygen will generate a standard footer.
1660+
# chapter. If it is left blank doxygen will generate a standard footer. See
1661+
# LATEX_HEADER for more information on how to generate a default footer and what
1662+
# special commands can be used inside the footer.
16601663
#
16611664
# Note: Only use a user-defined footer if you know what you are doing!
16621665
# This tag requires that the tag GENERATE_LATEX is set to YES.
@@ -1680,7 +1683,7 @@ LATEX_EXTRA_FILES =
16801683

16811684
PDF_HYPERLINKS = YES
16821685

1683-
# If the LATEX_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
1686+
# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
16841687
# the PDF file directly from the LaTeX files. Set this option to YES to get a
16851688
# higher quality PDF documentation.
16861689
# The default value is: YES.
@@ -1867,6 +1870,15 @@ GENERATE_DOCBOOK = NO
18671870

18681871
DOCBOOK_OUTPUT = docbook
18691872

1873+
# If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the
1874+
# program listings (including syntax highlighting and cross-referencing
1875+
# information) to the DOCBOOK output. Note that enabling this will significantly
1876+
# increase the size of the DOCBOOK output.
1877+
# The default value is: NO.
1878+
# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
1879+
1880+
DOCBOOK_PROGRAMLISTING = NO
1881+
18701882
#---------------------------------------------------------------------------
18711883
# Configuration options for the AutoGen Definitions output
18721884
#---------------------------------------------------------------------------
@@ -2100,7 +2112,7 @@ HAVE_DOT = YES
21002112

21012113
DOT_NUM_THREADS = 0
21022114

2103-
# When you want a differently looking font n the dot files that doxygen
2115+
# When you want a differently looking font in the dot files that doxygen
21042116
# generates you can specify the font name using DOT_FONTNAME. You need to make
21052117
# sure dot is able to find the font, which can be done by putting it in a
21062118
# standard location or by setting the DOTFONTPATH environment variable or by
@@ -2281,6 +2293,15 @@ MSCFILE_DIRS =
22812293

22822294
DIAFILE_DIRS =
22832295

2296+
# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
2297+
# path where java can find the plantuml.jar file. If left blank, it is assumed
2298+
# PlantUML is not used or called during a preprocessing step. Doxygen will
2299+
# generate a warning when it encounters a \startuml command in this case and
2300+
# will not generate output for the diagram.
2301+
# This tag requires that the tag HAVE_DOT is set to YES.
2302+
2303+
PLANTUML_JAR_PATH =
2304+
22842305
# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
22852306
# that will be shown in the graph. If the number of nodes in a graph becomes
22862307
# larger than this value, doxygen will truncate the graph, which is visualized

fNbt.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

38-
[assembly: AssemblyVersion("0.6.1.0")]
39-
[assembly: AssemblyFileVersion("0.6.1.0")]
38+
[assembly: AssemblyVersion("0.6.2.0")]
39+
[assembly: AssemblyFileVersion("0.6.2.0")]

fNbt/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
3838

39-
[assembly: AssemblyVersion("0.6.1.0")]
40-
[assembly: AssemblyFileVersion("0.6.1.0")]
39+
[assembly: AssemblyVersion("0.6.2.0")]
40+
[assembly: AssemblyFileVersion("0.6.2.0")]
4141

4242
// Potentially speed up resource probes
4343

0 commit comments

Comments
 (0)