hi dan
Thanks. We have some troubles with the Squeak port since lukas only
worked on VW.
For SW2 it is developed in Squeak and has a lot more tests and I will
help doing the port with roel on VW so keep doing. We hope to have
something to show soon, but I can tell you that SW2 is sexy.
Stef
On 7 mai 05, at 18:11, dan wrote:
Hi all,
Ive already sent this to the map owner, but from browsing the mailing
list archives today for other isses I am having, it looks like the
mailing list could do with it too.
Im running smallwiki on windows. I couldn't get the image to snapshot
until I put this fix in. It makes sure that the change file gets
closed before it is copied. I don't know if this is just Windows
weirdness or not, but it would be sensible to close the change file in
other OS's as well.
Dan
!SWImageStorage methodsFor: 'snapshot' stamp: 'dp 5/2/2005 21:14'!
privatePreSnapshot
super privatePreSnapshot.
Smalltalk closeSourceFiles.
self backup.! !