Not sure what can be combined

Wrapper act only on a Gcode and after the shape has been unrolled there is MOP creation that remain to do and job to do with boundaries to avoid that the tool down at the ends.
currently, on the wrapper side, I just set the base Z to the same value as unroll radius, and the diameter to 2x the radius.
With the integrated wrap option in the post pro, there is no way to set the wrap diameter,
it is the stock surface value of each mop that is used as wrap radius.
If you want to use the PP to wrap, you must change some setting on a copy of you preferred PP.
1) in the
Rotary section, set the right value for
Axis of spin and
Rotary axis. (in my case, Y and A)
Axis of spin define the axis of alignment of the 4th axis,
Rotary axis define the letter used for the 4th axis
2) set
rotary wrap to True to enable GCode wrapping
3) you must also edit the macro in the
Moves and
Canned Cycles sections to remove the axis that is wrapped.
In my case my 4th axis is aligned on Y, so it is the X that is wrapped.
In all macros, I remove the {$_x} macro, so for feedmove the build-in macro is {$g1} {$_f}
{$_x} {$_y} {$_z} {$_a} {$_b} {$_c} and become {$g1} {$_f} {$_y} {$_z} {$_a} {$_b} {$_c}
It is not needed to set the
Arc Output to
convert to line, it is done automatically when
Rotary wrap is used.
---
I attach a CB model that has been done with the following settings.
The unroll settings

The Wrapper settings

The result on NCplot

With CB V1.0, the wrapper plugin is no longer needed for this king of job where rotation is always 360° and the Wrap with the PP is really simpler to use than the plugin.
++
David