[squeak-dev] The Trunk: Tools-mt.644.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 22 08:53:13 UTC 2015


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.644.mcz

==================== Summary ====================

Name: Tools-mt.644
Author: mt
Time: 22 October 2015, 10:52:56.745 am
UUID: 6b7546e7-363c-4382-8907-97fb0d98fddc
Ancestors: Tools-mt.643

Adds support for dropping directories into the image and opening file lists on those.

=============== Diff against Tools-mt.643 ===============

Item was added:
+ ----- Method: FileDirectory class>>serviceBrowseDirectory (in category '*Tools-FileList') -----
+ serviceBrowseDirectory
+ 
+ 	^ (SimpleServiceEntry
+ 		provider: FileList
+ 		label: 'browse directory'
+ 		selector: #openOn:
+ 		description: 'browse directory'
+ 		buttonLabel: 'browse')
+ 			argumentGetter:  [:directory | directory];
+ 			yourself!

Item was changed:
  ----- Method: FileList class>>newOn: (in category 'instance creation') -----
  newOn: aDirectory
+ 
  	^super new directory: aDirectory!

Item was added:
+ ----- Method: FileList class>>openOn: (in category 'instance creation') -----
+ openOn: directory
+ 
+ 	^ToolBuilder open: (self newOn: directory)!



More information about the Squeak-dev mailing list