The Trunk: Tools-mt.644.mcz

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

The Trunk: Tools-mt.644.mcz

commits-2
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)!