Ellipses in Artifact

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Ellipses in Artifact

Stephan Eggermont-3
Milton Mamani wants to export Roassal visualizations as PDF.
He needs to be able to draw ellipses.

I've added a PDFEllipseElement to a newer version of stable
with an example. Would it be better to add it to development?

Stephan


Reply | Threaded
Open this post in threaded view
|

Re: Ellipses in Artifact

abergel
Thanks Stephan!

Cheers,
Alexandre


> On Aug 13, 2015, at 5:29 PM, Stephan Eggermont <[hidden email]> wrote:
>
> Milton Mamani wants to export Roassal visualizations as PDF.
> He needs to be able to draw ellipses.
>
> I've added a PDFEllipseElement to a newer version of stable
> with an example. Would it be better to add it to development?
>
> Stephan
>
>

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




Reply | Threaded
Open this post in threaded view
|

Re: Ellipses in Artifact

stepharo
In reply to this post by Stephan Eggermont-3


Le 13/8/15 22:29, Stephan Eggermont a écrit :
> Milton Mamani wants to export Roassal visualizations as PDF.
> He needs to be able to draw ellipses.
>
> I've added a PDFEllipseElement to a newer version of stable
> with an example.

Excellent

> Would it be better to add it to development?

Why that?
Do you break something? No so then this is good.
>
> Stephan
>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: Ellipses in Artifact

Guillaume Larcheveque
In reply to this post by Stephan Eggermont-3
In my opinion you can add it to development because it provides new functionality without introducing changes to current implementation.

Thanks for your contribution!! :-)

2015-08-13 22:29 GMT+02:00 Stephan Eggermont <[hidden email]>:
Milton Mamani wants to export Roassal visualizations as PDF.
He needs to be able to draw ellipses.

I've added a PDFEllipseElement to a newer version of stable
with an example. Would it be better to add it to development?

Stephan





--
Guillaume Larcheveque

Reply | Threaded
Open this post in threaded view
|

Re: Ellipses in Artifact

Sean P. DeNigris
Administrator
Guillaume Larcheveque wrote
In my opinion you can add it to development because it provides new
functionality without introducing changes to current implementation.

> I've added a PDFEllipseElement to a newer version of stable
> with an example. Would it be better to add it to development?
Backward compatibility is orthogonal to #stable and #development. For the distinction you're describing, you would use semantic versioning (http://semver.org/) to bump the minor (e.g. 1.0.1 -> 1.1.0).

Conversely, in the Metacello world, we use those labels to denote expectations/guarantee of code quality. My understanding of their meanings is:
#stable - you can use this code freely in your apps; it is functioning well
#development - probably works, but since it's still under development, we can't promise anything
#bleedingEdge - you want the absolute latest version of all packages; you're on your own - good luck! (this one is by definition, not opinion)
Cheers,
Sean