diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index ab98791a..f2937c01 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -6,12 +6,16 @@
-
| 3.4 (?/?/?,Rev.1222) |
+ |
| 3.4 (?/?/?,Rev.1228) |
Core
- Fixed crash when writing with multiple threads to mostream. closes #2293 (Note: This fix is only active with C++11 support)
- fix "relink failed" condition closes #1244. This patch fixes a rare condition in add_face, where a non-manifold configuration could be created.
+- Fixed the problem that the end iterator could become valid again if it was incremented.
+- Decrementing the start iterator will return an invalid iterator now (Maybe we can implement reverse iterators)
+- Removed one check from the circulator iterations, which should result in faster execution of is_valid().
+- Added CW and CCW Circulators
IO
@@ -32,6 +36,7 @@
Documentation
+- Example for locking vertices in decimater
- Added extra hint about status flags when collapsing edges
- updated tutorial on reading and writing meshes with python bindings
diff --git a/Doc/mesh.docu b/Doc/mesh.docu
index 0b7fca37..9a199b68 100644
--- a/Doc/mesh.docu
+++ b/Doc/mesh.docu
@@ -903,10 +903,6 @@ this will lead to unpredictable behaviour. Using skipping iterators for iteratin
the elements and creating circulators from them is safe as they don't contain
deleted elements.
-\code
-
-\endcode
-
\section it_circs_h How to use circulators in OpenMesh
The following code example now shows how to enumerate the 1-ring of each vertex:
|