[squeak-dev] [ANN] Squeak4.3alpha-11476.zip on his place

Edgar J. De Cleene edgardec2005 at gmail.com
Mon Jun 13 12:05:32 UTC 2011




On 6/13/11 8:54 AM, "Levente Uzonyi" <leves at elte.hu> wrote:

> Did you do anything else than updating the image, running Smalltalk
> cleanUp, then saving the image?

I do Smalltalk condenseChanges, a common practice
 
> Another minor issue is that it contains two (mac related?) files besides
> the changes and the image files: ._Squeak4.3alpha-11476.changes and
> ._Squeak4.3alpha-11476.image .


As I said, works on Mac.
Having all OS here, this is a fact I must live with.
I attach some which could be useful to some people.

> Monthly updates is fine for now. Hopefully it'll soon be automated by a
> jenkins (hudson) server.

Ok

Edgar

-------------- next part --------------
'From MinimalMorphic of 8 December 2006 [latest update: #7271] on 2 June 2011 at 7:11:53 am'!

!Utilities class methodsFor: 'miscellaneous' stamp: 'edc 6/16/2010 09:25'!
deletingMacInvisiblesinOtherOS
"Utilities deletingMacInvisiblesinOtherOS "
	| todo rootDir thisDir path thisName |
	
	rootDir := FileList2 modalFolderSelector.
	path := rootDir pathName.
	todo := rootDir directoryNames asOrderedCollection.
	[todo isEmpty]
		whileFalse: [thisName := todo removeFirst.
			Transcript show: thisName;
				 cr.
			Transcript show: '======>'.
			thisDir := FileDirectory on: path , FileDirectory slash , thisName.
			thisDir
		withAllSubdirectoriesCollect: [:k | 
			self deletingThisFileOn: k]].
	
	self deletingThisFileOn: rootDir! !


More information about the Squeak-dev mailing list