diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index 26c1bbe6..3287009f 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -8,19 +8,22 @@
-
| 2.2 (?/?/?,Rev.579) |
+ |
| 2.2 (?/?/?,Rev.585) |
Core
- Simplified iterators and made them integrate better with the STL. Specifically, value_type has changed from {Vertex,Edge,...} to {Vertex,Edge,...}Handle so that dereferenced iterators can actually be put to use, now.
- Consolidated iterator code. Functionally equivalent but way cleaner than before.
- Improved block in update_normals(), if there are no face normals (could cause a crash)
+- Fixed usage of operator | instead of dot
+- Added a check to is_collapse_ok in TriConnectivity if the edge is already deleted or not (Could cause crashes and non-manifold configs before).
IO
- Made Binary IO readers multi-thread safe. (Thanks to Dominic Genest for the patch)
- Fixed debug build crash on mac, reading from stringstream into emtpy string crashed when compiling with clang
+- Fixed stl reader by porting it to std string. It had serious problems in utf8 environments
Geometry
@@ -31,6 +34,7 @@
Unittests
- Added unittest for calling the normal computations.
+- Added unittests for ascii and binary stl files.
|