[Pharo-users] [ANN] Buoy v6.1.0 [v6.1.0] released!

2021-07-23 Thread Buenos Aires Smalltalk
Buoy, a complement to Pharo reached it's v6.1.0 version. Changelog General Added Pharo 9 to the build matrix Added GitHub action to check the proper loading of each group in the baseline Fixed markdown linter warnings Collections Added OrderedSet to the available collections Fixed SequenceableCo

[Pharo-users] How do I remove old classes?

2021-07-23 Thread Clacton Server
I have been having an enduring problem with Pharo "disappearing" on any machine I try it on. In an effort to resolve that it isn't my code, I want to remove the Package that contains all my Seaside code so that I can install a minimal home page under Seaside. This will, at least exonerate my cod

[Pharo-users] Re: How do I remove old classes?

2021-07-23 Thread Kasper Osterbye
Not knowing your specific usage, this tends to happen if you have an instance of class X, and then remove the class. To save the instance from going stale, Smalltalk has always made an Obsolete class. You can find the offending X instance by inspecting this: ReferenceFinder findAllPathsTo: X all

[Pharo-users] Re: How do I remove old classes?

2021-07-23 Thread Richard Sargent
On Fri, Jul 23, 2021, 06:57 Clacton Server wrote: > I have been having an enduring problem with Pharo "disappearing" on any > machine I try it on. In an effort to resolve that it isn't my code, I want > to remove the Package that contains all my Seaside code so that I can > install a minimal home

[Pharo-users] Re: How do I remove old classes?

2021-07-23 Thread Clacton Server
Good thinking. I will check that out. Thank you. David > On 23 Jul 2021, at 16:34, Richard Sargent > wrote: > > > > On Fri, Jul 23, 2021, 06:57 Clacton Server > wrote: > I have been having an enduring problem with Pharo "disappearing" on any > machine I try