Colin Gilgenbach
Colin Gilgenbach
It looks like the base problem is with serde's `ContentDeserializer`. This is used for a few things, including `#[serde(flatten)]` and untagged enums. Basically, it uses `deserialize_any` on the original deserializer...
Looking through the commit history, it's possible this may cause a regression on issue #122. I'll try do some testing and check that that use-case is still supported. I think...
Note also [section 5.2](https://yaml.org/spec/1.2/spec.html#id2771184). >On input, a YAML processor must support the UTF-8 and UTF-16 character encodings. > | | Byte 0 | Byte 1 | Byte 2 | Byte...
I'm running into this too. I believe this is related to this change in the [CGAL 5.5 changelog](https://www.cgal.org/2022/07/15/cgal55/): > Added more functions in the [visitor of the corefinement based methods](https://doc.cgal.org/5.5/Polygon_mesh_processing/classPMPCorefinementVisitor.html)...
Indeed, adding those stubs to [CutSurface.cpp:1174](https://github.com/prusa3d/PrusaSlicer/blob/master/src/libslic3r/CutSurface.cpp#L1173) fixes the problem. To prevent stuff like this, `Visitor` should probably inherit [`Default_visitor`](https://doc.cgal.org/5.5/Polygon_mesh_processing/structCGAL_1_1Polygon__mesh__processing_1_1Corefinement_1_1Default__visitor.html) to get these stubs for free.
If it makes any difference, I opened a PR with a draft implementation of this feature. I'm not sure I understand your comment re. RFC-4180. This feature doesn't concern what...
`!self.pauseX` (/Y/Z/E/Relative) isn't defined for me after I pause: `AttributeError: 'PronterWindow' object has no attribute 'pauseX'` Has this hook changed? In the meantime, I'm just using `!print self.current_pos` to give...
I could give it a shot, but it would take a couple days to get around to. With sphinx, it's either a really simple fix or a PITA...